Tagged Questions

Ragel finite-state-machine compiler

learn more… | top users | synonyms

5
votes
8answers
3k views

Which Java oriented lexer parser for simple project (ANTLR, DIY, etc)

I am working on a small text editor project and want to add basic syntax highlighting for a couple of languages (Java, XML..just to name a few). As a learning experience I wanted to add one of the ...
3
votes
3answers
492 views

Parser Generators and Ragel… Making my own D Parser

I'm new to the world of compilers, and I recently heard about something called a parser generator. From what I (think) I've understood, parser generators take in a syntax file and output a source code ...
3
votes
1answer
512 views

How to parse template languages in Ragel?

I've been working on a parser for simple template language. I'm using Ragel. The requirements are modest. I'm trying to find [[tags]] that can be embedded anywhere in the input string. I'm trying ...
2
votes
3answers
1k views

Is ANTLR an appropriate tool to serialize/deserialize a binary data format?

I need to read and write octet streams to send over various networks to communicate with smart electric meters. There is an ANSI standard, ANSI C12.19, that describes the binary data format. While ...
1
vote
0answers
41 views

Failed to convert URL parser regular expression to Ragel

I found an URL parser regular expression at RFC 2396 and RFC 3986. ^(([^:\/?#]+):)?(\/\/([^\/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))? I converted it to Ragel: %%{ # RFC 3986 URI Generic Syntax ...
1
vote
2answers
237 views

How do I write a simple Ragel tokenizer (no backtracking)?

UPDATE 2 Original question: Can I avoid using Ragel's |**| if I don't need backtracking? Updated answer: Yes, you can write a simple tokenizer with ()* if you don't need backtracking. UPDATE 1 I ...
1
vote
1answer
288 views

How to properly scan for identifiers using Ragel

I'm trying to write a scanner for my C/C++/C#/Java/D-like programming language that I'm designing for personal reasons. For this task I'm using Ragel to generate my scanner. I'm having trouble ...
1
vote
1answer
197 views

abusing ragel, possibly need new approach / tool

I'm trying to use Ragel to implement a simple yes/no fsm. Unfortunately the language specification consists of the union of about a thousand regular expressions, with * operators appearing once or ...
1
vote
2answers
679 views

Encapsulating a (pure Ruby) Ragel parser for infinite streams?

I want to parse a continuous stream of bytes (from a socket) with a state machine using Ragel However, all the Examples I have found are either parsing a complete file in one pass (like the Gherkin ...
1
vote
2answers
984 views

Ragel - validate a String while Input

Assume we want to validate user input, while user is typing in a JTextField. For validating the user input, I wonder if I could use Ragel. Assume the input should follow this example regex: ...
0
votes
1answer
30 views

How to get Ragel to parse two names separated by (space* “:” space*)?

I'd like to parse the following: name:name where the names start and end with an alnum, and can contain any combination of alnum and spaces inside. They could also be blank. My rules for this are: ...
0
votes
3answers
170 views

What does this piece of Ragel Code do?

%%{ machine microscript; action ClearNumber { currentNumber = 0; } action RecordDigit { uint8_t digit = (*p) - '0'; currentNumber = (currentNumber * 10) + digit; } ...
0
votes
2answers
200 views

How to create a parser which tokenizes a list of words taken from a file?

I am trying to do a sintax text corrector for my compilers' class. The idea is: I have some rules, which are inherent to the language (in my case, Portuguese), like "A valid phrase is SUBJECT VERB ...