http://www.perlmonks.org?node_id=544990


in reply to Object Query Languages and Parsers

Regarding object query langugages, you might look at the CORBA system. As an object request broker, it needs to be fast, so the syntax is pretty simple. Of course, it may be too low level, but will give you ideas.

With regard to parsing, I would first create a grammar. I find Parse::RecDescent too slow when speed is of the essence. Writing your own top-down parser should speed things up and for a small grammar, it should be be easy to maintain as well.

Top-down parsers are constructed from a grammar as follows:

For learning about parsing and translation, I recommend the dragon book: Compilers, by Aho, Sethi, and Ullman.

-Mark