Issue336

Title Planner crashes if too many closing brackets are passed as parameter
Priority bug Status resolved
Superseder Nosy List gabi, malte, salome, silvan
Assigned To Keywords
Optional summary

Created on 2012-05-14.16:10:21 by silvan, last changed by gabi.

Messages
msg2536 (view) Author: gabi Date: 2013-07-02.10:28:55
This is resolved: the planner no longer crashes but terminates with some useful
error message, e.g.

"astar(lmcut()))" yields
Parse Error: 
missing ( at: 
pseudoroot (cannot continue parsing after "astar(lmcut())")

(This fix also improves some other error messages stating where parsing cannot
be continued.)
msg2484 (view) Author: malte Date: 2013-06-02.15:45:21
Having better diagnostics would definitely be nice. It is also important to keep
in mind code maintainability. If we can have nicer error messages without making
the code too hard to understand, that would be great.
msg2481 (view) Author: salome Date: 2013-06-02.15:02:58
The described problem is fixed. However, Gabi was experimenting with some other
wrong planner calls and observed some strange behaviour for "--search
astar()(lmcut)".

With my fix, this yields the error message "misplaced opening bracket ( at:
pseudoroot", which does not really describe the problem too good. 
Before my fix the planner does not complain but runs astar with the lmcut
heuristic. (This happened because the parser only generates a new node when we
have some text in the buffer before a "(" occurs. It will however in any case go
to the last child of the node it currently points at if a "(" occurs. So if we
had already a child at the current it will just go to this child (in the
previous example astar) or if we don't have a child at this point, it will throw
a segmentation fault.)

While fixing the bug I added an additional if statement to catch the case of an
opening bracket without any text in the buffer where the parser throws a
ParseError. ParseError only has a constructor which accepts a string and a Node
of the parse tree, thus I can only output an error message indicating on which
node of the tree the error occurred. As mentioned before this is, depending on
the situation, not very helpful (especially when the node is "pseudoroot").

My idea would be that we also indicate at which position in the text the error
occurs (something like "error occured after 'search astar()'").
msg2213 (view) Author: silvan Date: 2012-05-14.16:10:21
I recently noticed that the planner does not give a warning/error when one types
more closing than opening brackets when specifying the parameters, it just
crashes with a segmentation fault instead.

When one forgets a closing bracket, the planner throws an error and exists. This
would be nice to have for the other case also.
History
Date User Action Args
2013-07-02 10:28:55gabisetstatus: in-progress -> resolved
assignedto: salome ->
messages: + msg2536
2013-06-02 15:45:21maltesetnosy: + gabi
messages: + msg2484
2013-06-02 15:02:58salomesetmessages: + msg2481
2013-05-24 16:58:57gabisetstatus: reviewing -> in-progress
2013-05-20 13:49:55salomesetstatus: unread -> reviewing
2013-04-29 11:48:43gabisetassignedto: salome
nosy: + salome
2012-05-22 17:16:44silvansettitle: Planner crashes if two many closing brackets are passed as parameter -> Planner crashes if too many closing brackets are passed as parameter
2012-05-14 16:10:21silvancreate