There are a few different ways to go. One is to move the decisions about information/non-information comments up into the G1 layer, which is a lot better at resolving ambiguities. The lexer is faster, but it is commited to a "greedy" approach, which is not convenient if your "last resort" is longer than your preferred alternatives.

A second strategy is to use events to deal with all comments using Perl processing. If the issue of comment formats is essentially open-ended (which it might be if you are dealing with real-life data that does not necessarily obey rules), this may be the best way.

It seems you can assume any comment that does not contain an '=' or a second '#' can be tossed, so you could catch these in the lexer, and discard them there. That will save the Perl processing overhead for those cases, which I am guessing will be the majority.

There are some other tricks that may work, depending on what properties you can rely on. Do all these comments always run to the end of the line? If so, you can use lexeme priorities -- that works so long as you are sure you are comparing longest matches. So for example, matching something like "#HOT#", you look for

  TagStr          ::= '#' TagList '#' comment_chars [\n]

where TagList gets moved down into the lexer -- but this means TagList must go down into the lexer and you lose the ability to pull the tags apart using the Marpa grammar, and will have to do it in callback or post-processing.

If these comments do not suggest a "right" answer to you, you could add to the test set, which will make it easier to experiment and know if a solution actually does what you need,

-- jeffrey

On 05/09/2014 12:09 PM, [email protected] wrote:
You have the right idea. Unfortunately, I do not get to dictate the syntax of this file I get to parse and there is considerable ambiguity in comments. There are essentially three forms of a comment. Two forms of this comment include information I need to parse. One form (non-information comment) does not contain useful information.

1) embedded base number --> Matches OptEmbeddedBase --> Actual information I need. Discernable from a non-information comment by it's location immediately after the opening of a pattern list brace and that if must contain '#base=<list>', where <list> is a comma delimited list of integers.

2) tag string --> Matches TagStr --> Again, information I need. Discernable from a non-information comment by location after a pattern declaration and by the fact that it is bookended by '#' symbols can can only contain a comma delimited list of word (\w) characters. Technically, whitespace is not allowed inside these strings either. I figured I'd sort that out once I had it matching as is.

3) Non information comment -> Matches COMMENT --> Can be discarded. This is any comment that does not match one of the first two forms.

Hopefully that's helpful. When you say that you'd 'simply say that in the grammar', I'm confused. Is this not what I'm saying in the grammar in the TagStr rule by setting '#' characters before and after the TagList rule? Is there a better way to resolve this ambiguity?

On Friday, May 9, 2014 11:46:16 AM UTC-7, Jeffrey Kegler wrote:

    Trying to get the idea, is it that tags use '#' as a delimiter,
    much in
    the same way that strings use quotes?  And that's it's a comment if
    there's a '#' that is not matched before the newline?  That is,
    that in

         Pat n2000000g0000002; #HOT# # Not so hot

    "#HOT#" is a tag, and "# Not so hot" is a comment?

    If that's the case, I'd simply say that in the grammar.  I'd give
    more
    detail, but I'm not 100% clear on the intent at this point.

    -- jeffrey

--
You received this message because you are subscribed to the Google Groups "marpa parser" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected] <mailto:[email protected]>.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "marpa 
parser" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to