mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
e30f3d76d2
This commit does a bulk fix of incorrect annotations (comments) at the end of namespaces. The commit was generated by initially running clang-format, and then from the diff of the result extracting the hunks corresponding to fixes of namespace comments. The changes being applied and all the results have been manually reviewed. The source code successfully builds on macOS. Further details on the steps below, in case they're of interest to someone else in the future. 1. Checkout a fresh and up to date version of src/ git pull && git checkout -- src && git status src 2. Ensure there's a suitable .clang-format in place, i.e. with options to fix the comment at the end of namespaces, including: FixNamespaceComments: true SpacesBeforeTrailingComments: 1 and that clang-format is >= 5.0.0, by doing e.g.: clang-format -dump-config | grep Comments: clang-format --version 3. Apply clang-format to the source: clang-format -i $(find src -name "*.cpp" -or -name "*.h") 4. Create and filter out hunks related to fixing the namespace git diff -U0 src > tmp.patch grepdiff '^} // namespace' --output-matching=hunk tmp.patch > fix_namespace.patch 5. Filter out hunks corresponding to simple fixes into to a separate patch: pcregrep -M -e '^diff[^\n]+\nindex[^\n]+\n--- [^\n]+\n\+\+\+ [^\n]+\n' \ -e '^@@ -[0-9]+ \+[0-9]+ @@[^\n]*\n-\}[^\n]*\n\+\}[^\n]*\n' \ fix_namespace.patch > fix_namespace_simple.patch 6. Manually review the simple patch and then apply it, after first restoring the source. git checkout -- src patch -p1 < fix_namespace_simple.path 7. Manually review the (simple) changes and then stage the changes git diff src git add src 8. Again apply clang-format and filter out hunks related to any remaining fixes to the namespace, this time filter with more context. There will be fewer hunks as all the simple cases have already been handled: clang-format -i $(find src -name "*.cpp" -or -name "*.h") git diff src > tmp.patch grepdiff '^} // namespace' --output-matching=hunk tmp.patch > fix_namespace2.patch 9. Manually review/edit the resulting patch file to remove hunks for files which need to be dealt with manually, noting the file names and line numbers. Then restore files to as before applying clang-format and apply the patch: git checkout src patch -p1 < fix_namespace2.patch 10. Manually fix the files noted in the previous step. Stage files, review changes and commit.
147 lines
3.2 KiB
C++
147 lines
3.2 KiB
C++
/**
|
|
* \file FuncRequest.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "FuncRequest.h"
|
|
#include "LyXAction.h"
|
|
|
|
#include "support/debug.h"
|
|
#include "support/lstrings.h"
|
|
|
|
#include <climits>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
using namespace lyx::support;
|
|
|
|
namespace lyx {
|
|
|
|
FuncRequest const FuncRequest::unknown(LFUN_UNKNOWN_ACTION);
|
|
FuncRequest const FuncRequest::noaction(LFUN_NOACTION);
|
|
|
|
FuncRequest::FuncRequest(Origin o)
|
|
: action_(LFUN_NOACTION), origin_(o), x_(0), y_(0),
|
|
button_(mouse_button::none), modifier_(NoModifier)
|
|
{}
|
|
|
|
|
|
FuncRequest::FuncRequest(FuncCode act, Origin o)
|
|
: action_(act), origin_(o), x_(0), y_(0),
|
|
button_(mouse_button::none), modifier_(NoModifier)
|
|
{}
|
|
|
|
|
|
FuncRequest::FuncRequest(FuncCode act, docstring const & arg, Origin o)
|
|
: action_(act), argument_(arg), origin_(o), x_(0), y_(0),
|
|
button_(mouse_button::none), modifier_(NoModifier)
|
|
{}
|
|
|
|
|
|
FuncRequest::FuncRequest(FuncCode act, string const & arg, Origin o)
|
|
: action_(act), argument_(from_utf8(arg)), origin_(o), x_(0), y_(0),
|
|
button_(mouse_button::none), modifier_(NoModifier)
|
|
{}
|
|
|
|
|
|
FuncRequest::FuncRequest(FuncCode act, int ax, int ay,
|
|
mouse_button::state but, KeyModifier modifier, Origin o)
|
|
: action_(act), origin_(o), x_(ax), y_(ay), button_(but),
|
|
modifier_(modifier)
|
|
{}
|
|
|
|
|
|
FuncRequest::FuncRequest(FuncRequest const & cmd, docstring const & arg, Origin o)
|
|
: action_(cmd.action()), argument_(arg), origin_(o),
|
|
x_(cmd.x_), y_(cmd.y_), button_(cmd.button_), modifier_(NoModifier)
|
|
{}
|
|
|
|
|
|
namespace {
|
|
|
|
// Extracts arguments from str into args. Arguments are delimited by
|
|
// whitespace or by double quotes.
|
|
// We extract at most max + 1 arguments, treating args[max] as
|
|
// continuing to eol.
|
|
void splitArg(vector<string> & args, string const & str,
|
|
unsigned int max = UINT_MAX)
|
|
{
|
|
istringstream is(str);
|
|
while (is) {
|
|
if (args.size() == max) {
|
|
string s;
|
|
getline(is, s);
|
|
args.push_back(trim(s));
|
|
return;
|
|
}
|
|
|
|
char c;
|
|
string s;
|
|
is >> c;
|
|
if (is) {
|
|
if (c == '"')
|
|
// get quote delimited argument
|
|
getline(is, s, '"');
|
|
else {
|
|
// get whitespace delimited argument
|
|
is.putback(c);
|
|
is >> s;
|
|
}
|
|
args.push_back(s);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace
|
|
|
|
string FuncRequest::getArg(unsigned int i) const
|
|
{
|
|
vector<string> args;
|
|
splitArg(args, to_utf8(argument_));
|
|
return i < args.size() ? args[i] : string();
|
|
}
|
|
|
|
|
|
string FuncRequest::getLongArg(unsigned int i) const
|
|
{
|
|
vector<string> args;
|
|
splitArg(args, to_utf8(argument_), i);
|
|
return i < args.size() ? args[i] : string();
|
|
}
|
|
|
|
|
|
bool operator==(FuncRequest const & lhs, FuncRequest const & rhs)
|
|
{
|
|
return lhs.action() == rhs.action() && lhs.argument() == rhs.argument();
|
|
}
|
|
|
|
|
|
ostream & operator<<(ostream & os, FuncRequest const & cmd)
|
|
{
|
|
return os
|
|
<< " action: " << cmd.action()
|
|
<< " [" << lyxaction.getActionName(cmd.action()) << "] "
|
|
<< " arg: '" << to_utf8(cmd.argument()) << "'"
|
|
<< " x: " << cmd.x()
|
|
<< " y: " << cmd.y();
|
|
}
|
|
|
|
|
|
LyXErr & operator<<(LyXErr &l, FuncRequest const &fr)
|
|
{
|
|
ostringstream oss;
|
|
oss << fr;
|
|
return l << oss.str();
|
|
}
|
|
|
|
} // namespace lyx
|