mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Parser
- Added disqualifier for id sequences in the form of a set of acceptable characters. Prevents strange problems due to the 'split' calls that are used in the implementation.
This commit is contained in:
parent
7c8432d162
commit
cb080e70de
1 changed files with 132 additions and 125 deletions
257
src/Parser.cpp
257
src/Parser.cpp
|
@ -1292,150 +1292,157 @@ void Parser::findIdSequence ()
|
||||||
if (! (*i)->hasTag ("?"))
|
if (! (*i)->hasTag ("?"))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
// Easy disqualifiers.
|
||||||
|
if (raw.find_first_not_of ("0123456789,-") != std::string::npos)
|
||||||
|
break;
|
||||||
|
|
||||||
// Container for min/max ID ranges.
|
// Container for min/max ID ranges.
|
||||||
std::vector <std::pair <int, int> > ranges;
|
std::vector <std::pair <int, int> > ranges;
|
||||||
|
|
||||||
// Split the ID list into elements.
|
// Split the ID list into elements.
|
||||||
std::vector <std::string> elements;
|
std::vector <std::string> elements;
|
||||||
split (elements, raw, ',');
|
split (elements, raw, ',');
|
||||||
if (elements.size ())
|
|
||||||
|
bool not_an_id = false;
|
||||||
|
std::vector <std::string>::iterator e;
|
||||||
|
for (e = elements.begin (); e != elements.end (); ++e)
|
||||||
{
|
{
|
||||||
bool not_an_id = false;
|
// Split the ID range into min/max.
|
||||||
std::vector <std::string>::iterator e;
|
std::vector <std::string> terms;
|
||||||
for (e = elements.begin (); e != elements.end (); ++e)
|
split (terms, *e, '-');
|
||||||
|
|
||||||
|
if (terms.size () == 1)
|
||||||
{
|
{
|
||||||
// Split the ID range into min/max.
|
if (! digitsOnly (terms[0]))
|
||||||
std::vector <std::string> terms;
|
|
||||||
split (terms, *e, '-');
|
|
||||||
|
|
||||||
if (terms.size () == 1)
|
|
||||||
{
|
{
|
||||||
if (! digitsOnly (terms[0]))
|
not_an_id = true;
|
||||||
{
|
break;
|
||||||
not_an_id = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
Nibbler n (terms[0]);
|
|
||||||
int id;
|
|
||||||
if (n.getUnsignedInt (id) &&
|
|
||||||
n.depleted ())
|
|
||||||
{
|
|
||||||
ranges.push_back (std::pair <int, int> (id, id));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
not_an_id = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (terms.size () == 2)
|
|
||||||
{
|
|
||||||
if (! digitsOnly (terms[0]) ||
|
|
||||||
! digitsOnly (terms[1]))
|
|
||||||
{
|
|
||||||
not_an_id = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
Nibbler n_min (terms[0]);
|
|
||||||
Nibbler n_max (terms[1]);
|
|
||||||
int id_min;
|
|
||||||
int id_max;
|
|
||||||
if (n_min.getUnsignedInt (id_min) &&
|
|
||||||
n_min.depleted () &&
|
|
||||||
n_max.getUnsignedInt (id_max) &&
|
|
||||||
n_max.depleted ())
|
|
||||||
{
|
|
||||||
if (id_min > id_max)
|
|
||||||
throw std::string (STRING_PARSER_RANGE_INVERTED);
|
|
||||||
|
|
||||||
ranges.push_back (std::pair <int, int> (id_min, id_max));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
not_an_id = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (not_an_id)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
// Now convert the ranges into an infix expression.
|
|
||||||
(*i)->unTag ("?");
|
|
||||||
(*i)->removeAllBranches ();
|
|
||||||
(*i)->tag ("ID");
|
|
||||||
|
|
||||||
Tree* branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", "(");
|
|
||||||
branch->tag ("OP");
|
|
||||||
|
|
||||||
std::vector <std::pair <int, int> >::iterator r;
|
|
||||||
for (r = ranges.begin (); r != ranges.end (); ++r)
|
|
||||||
{
|
|
||||||
if (r != ranges.begin ())
|
|
||||||
{
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", "or");
|
|
||||||
branch->tag ("OP");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (r->first == r->second)
|
Nibbler n (terms[0]);
|
||||||
|
int id;
|
||||||
|
if (n.getUnsignedInt (id) &&
|
||||||
|
n.depleted ())
|
||||||
{
|
{
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
ranges.push_back (std::pair <int, int> (id, id));
|
||||||
branch->attribute ("raw", "id");
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", "==");
|
|
||||||
branch->tag ("OP");
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", r->first);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
not_an_id = true;
|
||||||
branch->attribute ("raw", "(");
|
break;
|
||||||
branch->tag ("OP");
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", "id");
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", ">=");
|
|
||||||
branch->tag ("OP");
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", r->first);
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", "and");
|
|
||||||
branch->tag ("OP");
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", "id");
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", "<=");
|
|
||||||
branch->tag ("OP");
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", r->second);
|
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
|
||||||
branch->attribute ("raw", ")");
|
|
||||||
branch->tag ("OP");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (terms.size () == 2)
|
||||||
|
{
|
||||||
|
if (! digitsOnly (terms[0]) ||
|
||||||
|
! digitsOnly (terms[1]))
|
||||||
|
{
|
||||||
|
not_an_id = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
branch = (*i)->addBranch (new Tree ("argSeq"));
|
Nibbler n_min (terms[0]);
|
||||||
branch->attribute ("raw", ")");
|
Nibbler n_max (terms[1]);
|
||||||
branch->tag ("OP");
|
int id_min;
|
||||||
action = true;
|
int id_max;
|
||||||
break;
|
if (n_min.getUnsignedInt (id_min) &&
|
||||||
|
n_min.depleted () &&
|
||||||
|
n_max.getUnsignedInt (id_max) &&
|
||||||
|
n_max.depleted ())
|
||||||
|
{
|
||||||
|
if (id_min > id_max)
|
||||||
|
throw std::string (STRING_PARSER_RANGE_INVERTED);
|
||||||
|
|
||||||
|
ranges.push_back (std::pair <int, int> (id_min, id_max));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
not_an_id = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
not_an_id = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (not_an_id)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
// Now convert the ranges into an infix expression.
|
||||||
|
(*i)->unTag ("?");
|
||||||
|
(*i)->removeAllBranches ();
|
||||||
|
(*i)->tag ("ID");
|
||||||
|
|
||||||
|
Tree* branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", "(");
|
||||||
|
branch->tag ("OP");
|
||||||
|
|
||||||
|
std::vector <std::pair <int, int> >::iterator r;
|
||||||
|
for (r = ranges.begin (); r != ranges.end (); ++r)
|
||||||
|
{
|
||||||
|
if (r != ranges.begin ())
|
||||||
|
{
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", "or");
|
||||||
|
branch->tag ("OP");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (r->first == r->second)
|
||||||
|
{
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", "id");
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", "==");
|
||||||
|
branch->tag ("OP");
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", r->first);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", "(");
|
||||||
|
branch->tag ("OP");
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", "id");
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", ">=");
|
||||||
|
branch->tag ("OP");
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", r->first);
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", "and");
|
||||||
|
branch->tag ("OP");
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", "id");
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", "<=");
|
||||||
|
branch->tag ("OP");
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", r->second);
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", ")");
|
||||||
|
branch->tag ("OP");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
branch = (*i)->addBranch (new Tree ("argSeq"));
|
||||||
|
branch->attribute ("raw", ")");
|
||||||
|
branch->tag ("OP");
|
||||||
|
action = true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while (action);
|
while (action);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue