[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Racc error recovery

Aaron Patterson

10/24/2007 10:36:00 PM

Hi everyone,

I'm writing a racc parser, and I need to recover from parse errors.
Basically I'm writing a CSS parser, and I need to handle poorly
formatted CSS.

Unfortunately I can't seem to find any good documentation or examples on
error recovery. I've read the Racc documentation about on_error and
entering "error recovering mode", as well as calling yyerrok to leave
error recovering mode, but I don't know what that actually means.

I've also discovered the "error" rule, but I don't want to explicitly
add that rule to every rule that could possibly have an error.

Any tips would be greatly appreciated. Thanks!

--
Aaron Patterson
http://tenderlovem...

4 Answers

Giles Bowkett

10/25/2007 5:14:00 AM

0

> I'm writing a racc parser, and I need to recover from parse errors.
...
> Unfortunately I can't seem to find any good documentation or examples on
> error recovery. I've read the Racc documentation about on_error and

Wild stab in the dark: is there any equivalent stuff in yacc you could
use as a starting point?

I realize it probably isn't modeled that closely, but that's the first
thought I had.

Wild stab in the dark, part 2: tried using Sass instead? It's a CSS
DSL. Or do you have to work with the CSS you've already got?

--
Giles Bowkett

Blog: http://gilesbowkett.bl...
Portfolio: http://www.gilesg...
Tumblelog: http://giles.t...

Aaron Patterson

10/26/2007 6:30:00 AM

0

On Thu, Oct 25, 2007 at 02:14:20PM +0900, Giles Bowkett wrote:
> > I'm writing a racc parser, and I need to recover from parse errors.
> ...
> > Unfortunately I can't seem to find any good documentation or examples on
> > error recovery. I've read the Racc documentation about on_error and
>
> Wild stab in the dark: is there any equivalent stuff in yacc you could
> use as a starting point?

Yes there is. I was hoping I could get an answer without digging up my
lex & yacc book. ;-) Fortunately I found it and there is an error
recovery section that has definitely helped.

>
> I realize it probably isn't modeled that closely, but that's the first
> thought I had.
>
> Wild stab in the dark, part 2: tried using Sass instead? It's a CSS
> DSL. Or do you have to work with the CSS you've already got?

No. I'm trying to parse CSS, not generate it.

--
Aaron Patterson
http://tenderlovem...

barjunk

10/28/2007 6:35:00 PM

0

On Oct 25, 10:29 pm, Aaron Patterson <aa...@tenderlovemaking.com>
wrote:
> On Thu, Oct 25, 2007 at 02:14:20PM +0900, Giles Bowkett wrote:
> > > I'm writing a racc parser, and I need to recover from parse errors.
> > ...
> > > Unfortunately I can't seem to find any good documentation or examples on
> > > error recovery. I've read the Racc documentation about on_error and
>
> > Wild stab in the dark: is there any equivalent stuff in yacc you could
> > use as a starting point?
>
> Yes there is. I was hoping I could get an answer without digging up my
> lex & yacc book. ;-) Fortunately I found it and there is an error
> recovery section that has definitely helped.
>
>
>
> > I realize it probably isn't modeled that closely, but that's the first
> > thought I had.
>
> > Wild stab in the dark, part 2: tried using Sass instead? It's a CSS
> > DSL. Or do you have to work with the CSS you've already got?
>
> No. I'm trying to parse CSS, not generate it.
>
> --
> Aaron Pattersonhttp://tenderlovem...

Aaron,

Would you mind sharing some of what you found in the book? I'm more
interested in what you were thinking originally and then what the book
had to say to change your mind.

I'm interested in putting together some more documentation for Racc.

Mike B.

Aaron Patterson

10/29/2007 4:06:00 PM

0

On Mon, Oct 29, 2007 at 03:40:02AM +0900, barjunk wrote:
> On Oct 25, 10:29 pm, Aaron Patterson <aa...@tenderlovemaking.com>
> wrote:
> > On Thu, Oct 25, 2007 at 02:14:20PM +0900, Giles Bowkett wrote:
> > > > I'm writing a racc parser, and I need to recover from parse errors.
> > > ...
> > > > Unfortunately I can't seem to find any good documentation or examples on
> > > > error recovery. I've read the Racc documentation about on_error and
> >
> > > Wild stab in the dark: is there any equivalent stuff in yacc you could
> > > use as a starting point?
> >
> > Yes there is. I was hoping I could get an answer without digging up my
> > lex & yacc book. ;-) Fortunately I found it and there is an error
> > recovery section that has definitely helped.
> >
> >
> >
> > > I realize it probably isn't modeled that closely, but that's the first
> > > thought I had.
> >
> > > Wild stab in the dark, part 2: tried using Sass instead? It's a CSS
> > > DSL. Or do you have to work with the CSS you've already got?
> >
> > No. I'm trying to parse CSS, not generate it.
> >
> > --
> > Aaron Pattersonhttp://tenderlovem...
>
> Aaron,
>
> Would you mind sharing some of what you found in the book? I'm more
> interested in what you were thinking originally and then what the book
> had to say to change your mind.

What I was thinking originally was that on_error could eat up tokens
until the grammar could be recovered. Then, after reading the lex/yacc
book I found out that that is exactly what the "error" token does.

Take this grammar/script for example:

class Tester

token A LBRACE

rule
a_a_lbrace
: A A LBRACE { puts val }
| A error LBRACE { puts "got error"; puts val }
;

end

require 'tester.tab'

class Foo < Tester
def initialize
@tokens = [
[ :A, 'a' ],
[ :B, 'b' ],
[ :LBRACE, '{' ],
]
end

def parse
do_parse
end

def next_token
@tokens.shift
end
end

Foo.new.parse

The second rule gets called, and Racc uses LBRACE as a "pivot point"
(IIRC, that is what the yacc book called it). The error rule will eat
up tokens until an LBRACE is found. Then parsing can continue as usual.

Unfortunately, I'm not sure when on_error is supposed to be called. I'm
also having a hard time figuring out where to place the error token in
some of my rules. But I am going to start a new thread about that.

--
Aaron Patterson
http://tenderlovem...