vote up 2 vote down star

I looked into Logix and EasyExtend for Python. Logix hasn't been around for a while and it failed to install on Python 2.6. EasyExtend's tutorial is hopeless, the code in the tutorial doesn't even work.

I am looking for something so I can write my DSL. My DSL will be used as a research tool. And I don't want to spend time learning all that parsing and compiler theory.

flag

50% accept rate

4 Answers

vote up 1 vote down

You don't need to "learn all that parsing and compiler theory". Parsing isn't as hard as you might think, and Python has lots of parsing tools: Python Parsing Tools. And compiler theory won't apply, since you'll likely interpret your DSL.

link|flag
vote up 2 vote down

Ned Batchelders list of parsing tools is very comprehensive. I would recommend out of it pyparsing to do your dsl as I have managed ,with little experience of parsing, to make my own. The learning curve is pretty shallow and the resulting code is readable as it steers away from complex regular expressions. There are plenty of examples and tutorials that can be found from the website.

link|flag
excellent advice, pyparsing is very good. – Francesco Aug 28 at 11:41
vote up 2 vote down

It really depends.

It really depends on what you think of when you speak of a DSL. More specifically, is it essential for you to define new syntax? I think this is quite crucial, because if syntax is not essential, then why not use the syntax of the hosting language (Python in your case, I presume)?!

Is it essential to be able to type

rotate circle 45°

or is it just fine to say

rotate(circle, degree=45)

or even

circle.rotateByDegree(45)

IIRC, it was Paul Graham who said any kind of decent programming is actually inventing a language (the term DSL wasn't popular at that times). You define basic functions (the "verbs") and data structures (the "nouns"), and then try to express your solution in terms of these basic functions and data structures (maybe you have layers of these functions and data structures, with each layer closer to your "domain language"). If it is fine for you to express your solution in something like circle = Circle(); circle.rotate(degree=45), you're all done. I think Python has a nice, convenient syntax so I would probably always choose to stay away from inventing new syntax. Several functional languages like Haskell have a parentheses-less, comma-less way of applying functions to parameters so working code really looks like rotate circle 45.

If that isn't quite good enough for you, and you really depend on new syntax, then you might want to consider Lisp macros or Rebol's dialects, before resorting to general grammar and parsing work. Also, several other languages allow you to specify infix operators on the fly.

The crucial question is: How much syntax do you need?

link|flag
vote up 1 vote down

You can use Rebol embedded DSL engine to create DSL in 5 minutes, see several real-world examples here:

DSL Wrapper for yUML, C#, Java Code Generation http://reboltutorial.com/blog/easy-yuml-dialect-for-mere-mortals/ http://reboltutorial.com/blog/create-your-own-dsl-for-java-or-c-part-4-adding-a-semantic-layer/ http://reboltutorial.com/blog/create-dsl-3/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.