mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
add initial bulk run from pre-commit over all files
This commit is contained in:
parent
665aeeef61
commit
93356b39c3
418 changed files with 21354 additions and 23858 deletions
158
src/CLI2.h
158
src/CLI2.h
|
@ -26,100 +26,98 @@
|
|||
#ifndef INCLUDED_CLI2
|
||||
#define INCLUDED_CLI2
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <unordered_map>
|
||||
#include <Lexer.h>
|
||||
#include <FS.h>
|
||||
#include <Lexer.h>
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
|
||||
// Represents a single argument.
|
||||
class A2
|
||||
{
|
||||
public:
|
||||
A2 (const std::string&, Lexer::Type);
|
||||
A2 (const A2&);
|
||||
A2& operator= (const A2&);
|
||||
bool hasTag (const std::string&) const;
|
||||
void tag (const std::string&);
|
||||
void unTag (const std::string&);
|
||||
void attribute (const std::string&, const std::string&);
|
||||
const std::string attribute (const std::string&) const;
|
||||
const std::string getToken () const;
|
||||
const std::string dump () const;
|
||||
void decompose ();
|
||||
class A2 {
|
||||
public:
|
||||
A2(const std::string&, Lexer::Type);
|
||||
A2(const A2&);
|
||||
A2& operator=(const A2&);
|
||||
bool hasTag(const std::string&) const;
|
||||
void tag(const std::string&);
|
||||
void unTag(const std::string&);
|
||||
void attribute(const std::string&, const std::string&);
|
||||
const std::string attribute(const std::string&) const;
|
||||
const std::string getToken() const;
|
||||
const std::string dump() const;
|
||||
void decompose();
|
||||
|
||||
public:
|
||||
Lexer::Type _lextype {Lexer::Type::word};
|
||||
std::vector <std::string> _tags {};
|
||||
std::map <std::string, std::string> _attributes {};
|
||||
public:
|
||||
Lexer::Type _lextype{Lexer::Type::word};
|
||||
std::vector<std::string> _tags{};
|
||||
std::map<std::string, std::string> _attributes{};
|
||||
};
|
||||
|
||||
// Represents the command line.
|
||||
class CLI2
|
||||
{
|
||||
public:
|
||||
class CLI2 {
|
||||
public:
|
||||
static int minimumMatchLength;
|
||||
|
||||
static bool getOverride (int, const char**, File&);
|
||||
static bool getDataLocation (int, const char**, Path&);
|
||||
static void applyOverrides (int, const char**);
|
||||
static bool getOverride(int, const char**, File&);
|
||||
static bool getDataLocation(int, const char**, Path&);
|
||||
static void applyOverrides(int, const char**);
|
||||
|
||||
public:
|
||||
CLI2 () = default;
|
||||
void alias (const std::string&, const std::string&);
|
||||
void entity (const std::string&, const std::string&);
|
||||
public:
|
||||
CLI2() = default;
|
||||
void alias(const std::string&, const std::string&);
|
||||
void entity(const std::string&, const std::string&);
|
||||
|
||||
void add (const std::string&);
|
||||
void add (const std::vector <std::string>&, int offset = 0);
|
||||
void analyze ();
|
||||
void addFilter (const std::string& arg);
|
||||
void addModifications (const std::string& arg);
|
||||
void addContext (bool readable, bool writeable);
|
||||
void prepareFilter ();
|
||||
const std::vector <std::string> getWords ();
|
||||
const std::vector <A2> getMiscellaneous ();
|
||||
bool canonicalize (std::string&, const std::string&, const std::string&);
|
||||
std::string getBinary () const;
|
||||
std::string getCommand (bool canonical = true) const;
|
||||
const std::string dump (const std::string& title = "CLI2 Parser") const;
|
||||
void add(const std::string&);
|
||||
void add(const std::vector<std::string>&, int offset = 0);
|
||||
void analyze();
|
||||
void addFilter(const std::string& arg);
|
||||
void addModifications(const std::string& arg);
|
||||
void addContext(bool readable, bool writeable);
|
||||
void prepareFilter();
|
||||
const std::vector<std::string> getWords();
|
||||
const std::vector<A2> getMiscellaneous();
|
||||
bool canonicalize(std::string&, const std::string&, const std::string&);
|
||||
std::string getBinary() const;
|
||||
std::string getCommand(bool canonical = true) const;
|
||||
const std::string dump(const std::string& title = "CLI2 Parser") const;
|
||||
|
||||
private:
|
||||
void handleArg0 ();
|
||||
void lexArguments ();
|
||||
void demotion ();
|
||||
void aliasExpansion ();
|
||||
void canonicalizeNames ();
|
||||
void categorizeArgs ();
|
||||
void parenthesizeOriginalFilter ();
|
||||
bool findCommand ();
|
||||
bool exactMatch (const std::string&, const std::string&) const;
|
||||
void desugarFilterTags ();
|
||||
void findStrayModifications ();
|
||||
void desugarFilterAttributes ();
|
||||
void desugarFilterPatterns ();
|
||||
void findIDs ();
|
||||
void findUUIDs ();
|
||||
void insertIDExpr ();
|
||||
void lexFilterArgs ();
|
||||
bool isEmptyParenExpression (std::vector<A2>::iterator it, bool forward = true) const;
|
||||
void desugarFilterPlainArgs ();
|
||||
void insertJunctions ();
|
||||
void defaultCommand ();
|
||||
std::vector <A2> lexExpression (const std::string&);
|
||||
private:
|
||||
void handleArg0();
|
||||
void lexArguments();
|
||||
void demotion();
|
||||
void aliasExpansion();
|
||||
void canonicalizeNames();
|
||||
void categorizeArgs();
|
||||
void parenthesizeOriginalFilter();
|
||||
bool findCommand();
|
||||
bool exactMatch(const std::string&, const std::string&) const;
|
||||
void desugarFilterTags();
|
||||
void findStrayModifications();
|
||||
void desugarFilterAttributes();
|
||||
void desugarFilterPatterns();
|
||||
void findIDs();
|
||||
void findUUIDs();
|
||||
void insertIDExpr();
|
||||
void lexFilterArgs();
|
||||
bool isEmptyParenExpression(std::vector<A2>::iterator it, bool forward = true) const;
|
||||
void desugarFilterPlainArgs();
|
||||
void insertJunctions();
|
||||
void defaultCommand();
|
||||
std::vector<A2> lexExpression(const std::string&);
|
||||
|
||||
public:
|
||||
std::multimap <std::string, std::string> _entities {};
|
||||
std::map <std::string, std::string> _aliases {};
|
||||
std::unordered_map <int, std::string> _canonical_cache {};
|
||||
std::vector <A2> _original_args {};
|
||||
std::vector <A2> _args {};
|
||||
public:
|
||||
std::multimap<std::string, std::string> _entities{};
|
||||
std::map<std::string, std::string> _aliases{};
|
||||
std::unordered_map<int, std::string> _canonical_cache{};
|
||||
std::vector<A2> _original_args{};
|
||||
std::vector<A2> _args{};
|
||||
|
||||
std::vector <std::pair <std::string, std::string>> _id_ranges {};
|
||||
std::vector <std::string> _uuid_list {};
|
||||
std::string _command {""};
|
||||
bool _context_added {false};
|
||||
std::vector<std::pair<std::string, std::string>> _id_ranges{};
|
||||
std::vector<std::string> _uuid_list{};
|
||||
std::string _command{""};
|
||||
bool _context_added{false};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue