a Domain-Specific Language is a programming language designed for a specific problem domain
52
votes
4answers
16k views
How to convert a String to its equivalent Expression Tree?
This is a simplified version of the original problem.
I have a class called Person:
public class Person {
public string Name { get; set; }
public int Age { get; set; }
public int Weight { get; ...
23
votes
3answers
3k views
20
votes
7answers
2k views
What's the point of DSLs / fluent interfaces
I was recently watching a webcast about how to create a fluent DSL and I have to admit, I don't understand the reasons why one would use such an approach (at least for the given example).
The webcast ...
18
votes
12answers
1k views
For what kind of problems do you write a DSL?
I'm just curious about Domain-Specific Languages. I have seen them several times in articles, and it seems that they can be used outside assurance or bank data definition problems.
So I come to SO to ...
18
votes
7answers
848 views
What is a DSL and where should I use it?
I'm hearing more and more about domain specific languages being thrown about and how they change the way you treat business logic, and I've seen Ayende's blog posts and things, but I've never really ...
17
votes
3answers
2k views
What are the main differences between Jetbrains' MPS and Eclipse Xtext?
I have used Eclipse Xtext in several projects. I loved the ease of defining a grammar over an Ecore (meta)model and letting everything generated for you including awesome Eclipse plugin editor, but I ...
17
votes
2answers
527 views
How can I recover sharing in a GADT?
In Type-Safe Observable Sharing in Haskell Andy Gill shows how to recover sharing that existed on the Haskell level, in a DSL. His solution is implemented in the data-reify package. Can this approach ...
15
votes
5answers
3k views
Mini-languages in Python
I'm after creating a simple mini-language parser in Python, programming close to the problem domain and all that.
Anyway, I was wondering how the people on here would go around doing that - what are ...
14
votes
3answers
675 views
Temporary namespace/context in Haskell
In Io, you can set the execution context using do:
Http := Object clone
Http get := method(uri, ("<GET request to " .. uri .. ">") println)
Http delete := method(uri, ("<DELETE request to " ...
13
votes
6answers
8k views
Noise-free JSON processing with Scala
I'm coming from a dotnet land, but recently have been looking at the possibilities of alternative programming languages. Nothing really serious, just some bits here and there. Recently I've discovered ...
13
votes
6answers
6k views
Ruby DSL (Domain Specific Language) repositories, examples
I am seeking excellent examples of Ruby DSLs (Domain Specific Languages). Which repositories, projects do you know of that are worth a read? Why is it (or: are they) great examples?
I am ...
13
votes
8answers
656 views
Domain-specific languages vs. library of functions
This may be subjective, I don't know: I have this problem, which I'm kind of equating to the "what language for this project?" question, since I can't seem to solve it.
I've been commisioned to ...
12
votes
6answers
2k views
Can I write a DSL in Perl?
We use Perl for GUI test automation. It has been very successful. We have written a very lightweight DSL kind of language for GUI testing. The DSL is very similar to a object model.
For example, we ...
12
votes
7answers
2k views
Interesting DSLs, Implemented in Scala? [closed]
I've seen BASIC and Apache Camel DSLs in Scala, and they're just fantastic. Any more examples of such DSLs?
12
votes
1answer
2k views
What does :except => {:no_release => true} mean in Capistrano DSL
For example in:
task :restart, :roles => :app, :except => { :no_release => true } do
end
11
votes
6answers
2k views
When should I use a Domain Specific Language?
I would like some practical guidance on when I should use a Domain Specific Language. I have found resources about advantages and disadvantages, but what kind of project would warrant its use?
It ...
11
votes
4answers
1k views
Are there technical reasons a Ruby DSL like RSpec couldn't be rewritten in Python?
The section below goes into more detail, but basically someone stated that the Ruby-written DSL RSpec couldn't be rewritten in Python. Is that true? If so, why?
I'm wanting to better understand the ...
11
votes
6answers
393 views
Embed python/dsl for scripting in an PHP web application
I'm developing an web based application written in PHP5, which basically is an UI on top of a database. To give users a more flexible tool I want to embed a scripting language, so they can do more ...
10
votes
3answers
428 views
method with angle brackets (<>)
Is it possible to have angle brackets in method names , e.g. :
class Foo(ind1:Int,ind2:Int){...}
var v = new Foo(1,2)
v(1) = 3 //updates ind1
v<1> = 4 //updates ind2
The real situation is ...
10
votes
12answers
920 views
Domain Specific Language resources [closed]
I was just listening to some older .Net Rocks! episodes, and I found #329 on DSLs to be interesting. My problem is that I can't find any good online resources for people trying to learn this ...
10
votes
1answer
2k views
What are features of ANTLR that XText Does not provide?
I just came across very nice tool Xtext to creat DSL as well as IDE for there editing. I did some search on the web and found people saying it dows not provide all the features of ANTLR. I am using ...
10
votes
3answers
1k views
Pros/cons of different language workbench tools such as Xtext and MPS?
Does anyone have experience working with language workbench tools such as Xtext, Spoofax, and JetBrains' MPS? I'm looking to try one out and am having a hard time finding a good comparison of the ...
10
votes
2answers
241 views
Extended computation expressions without for..in..do
What I mean by extended computation expressions is computation expressions with custom keywords defined via CustomOperation attribute.
When reading about extended computation expressions, I come ...
10
votes
6answers
315 views
Graphical dataflow composition framework
I am interested to embed a MathWorks Simulink like type tool into my application. In this embedded tool units are expressed as blocks with their input and output ports and parameters for each block ...
10
votes
2answers
1k views
Resources for learning how to design good API wrappers in ruby
I'd like to learn how to design good API wrappers in ruby. I'm looking for:
blog articles
tutorials
best code and library to learn from the code directly (well commented and designed)
books
... ...
10
votes
2answers
390 views
Drop-in, portable parsing
I see umpteen posts a day about "how to do X with regexen". And the best response to most of them seems like it would honestly be, "Why are you trying to drive a screw with a hammer?" But regexen are ...
9
votes
6answers
3k views
is metaprogramming possible in Javascript?
Is metaprogramming possible in javascript??
During my routine work, i happened to write the chained javascript function which is something like LINQ expression to query the JSON result.
var Result = ...
9
votes
2answers
1k views
Compile and execute Scala code at runtime
Is is possible to compile and execute scala code as a string at runtime either in Scala or in Java?
My idea is to build a DSL using Scala then let Java programmers use the DSL inside Java.
I heard ...
9
votes
4answers
399 views
Does anyone know of a good reference for DSL design?
I've been looking into designing some Domain Specific Languages which I will probably implement in Clojure, but I really don't have any idea of what's involved.
The languages I have in mind are ...
9
votes
8answers
572 views
Learning More About Parsing
I have been programming since 1999 for work and fun. I want to learn new things, and lately I've been focused on parsing, as a large part of my job is reading, integrating and analyzing data. I also ...
9
votes
2answers
2k views
How to Create an Internal DSL in Scala?
I have been looking at a couple of books and resources on domain specific languages.
I think I want to build an internal DSL in Scala.
def instrument = new FXInstrument {
provider = "EuroBase"
...
9
votes
4answers
2k views
Microsoft Visual Studio SDK DSL Tools - Any serious takers?
We are considering Microsoft DSL toolkit for creating some abstract designers. I already did some POCs, but would like to get some opinions on the same.
Any one here to share their experiences ...
9
votes
4answers
458 views
Strategy for parsing natural language descriptions into structured data
I have a set of requirements and I'm looking for the best Java-based strategy / algorthm / software to use. Basically, I want to take a set of recipe ingredients entered by real people in natural ...
9
votes
4answers
2k views
What is a good parser generator for php?
I need to parse a small 'mini language' which users can type on my site. I was wondering what the counterparts of lex and jacc or antlr are for the world of php.
8
votes
16answers
1k views
Successful Domain-Specific Languages ? Which one do you use? [closed]
I'm interested in Domain Specific Languagess design and implementation.
Much of the DSLs that I know stem from the academic world.
Can you give me some pointers to DSLs that are actually used in the ...
8
votes
2answers
5k views
Tutorials for writing DSL in Ruby
What are the good online tutorials on how to implement DSLs in Ruby? I am looking for hands-on examples that explain the whole process.
I am aware that there is this question on good books about DSLs ...
8
votes
5answers
1k views
Building effective external DSLs
What tools are there for me to build a real, honest to goodness external DSL. And no, I'm not talking about abusing Ruby, Boo, XML or another existing language or syntax, I mean a REAL external DSL -- ...
8
votes
4answers
1k views
Use of Clojure macros for DSLs
I am working on a Clojure project and I often find myself writing Clojure macros for DSLs, but I was watching a Clojure video of how a company uses Clojure in their real work and the speaker said that ...
8
votes
2answers
718 views
Transform a GADT without constraints to another GADT with constraints when such constraints hold
Can we transform a GADT without a given constraint on its constructors to a GADT that does have the said constraint? I want to do this because I want to get a deep-embedding of Arrows and do some ...
8
votes
4answers
1k views
Best design for generating code from an AST?
I'm working on a pretty complex DSL that I want to compile down into a few high level languages. The whole process has been a learning experience. The compiler is written in java.
I was wondering ...
8
votes
2answers
2k views
Dynamically define named classes in Ruby
I am writing an internal DSL in Ruby. For this, I need to programmatically create named classes and nested classes. What is the best way to do so? I recon that there are two ways to do so:
Use ...
8
votes
4answers
3k views
SQL DSL for Scala
I am struggling to create a SQL DSL for Scala. The DSL is an extension to Querydsl, which is a popular Query abstraction layer for Java.
I am struggling now with really simple expressions like the ...
8
votes
1answer
173 views
Avoid name clashes in a Clojure DSL
As a side project I'm creating a Clojure DSL for image synthesis (clisk).
I'm a little unsure on the best approach to function naming where I have functions in the DSL that are analogous to ...
8
votes
1answer
781 views
Clojure “DSL” programming
I am designing a JAX-RS REST Server using Clojure and RESTEasy.
It is my understanding that applications written in Lisp-family languages are, more than those in "traditional" imperative languages, ...
8
votes
2answers
195 views
Syntax Highlighting tool/language that works with multiple editors
Is there any tool that would allow me to specify syntax highlighting for a given language, then generate syntax highlighting files for some of the more common editors?
I ask because I'm developing a ...
7
votes
1answer
3k views
How to assert number of elements using Capybara with proper error message?
I know that in Capybara, you can do something like this:
page.should have_css("ol li", :count => 2)
However, assuming that page has for instance only one matching element, the error is not very ...
7
votes
2answers
302 views
Renaming classOf in Scala
I'm working on a customer-readable DSL for ScalaTest. At the moment I can write
feature("Admin Login") {
scenario("Correct username and password") {
given("user visits", ...
7
votes
3answers
292 views
DSL block without argument in ruby
I'm writing a simple dsl in ruby. Few weeks ago I stumbled upon some blog post, which show how to transform code like:
some_method argument do |book|
book.some_method_on_book
...
7
votes
6answers
2k views
Textual Domain-Specific language (DSL) development with Microsoft Visual Studio
I did some researches on developing a DSL in visual studio. At the beginning, I found out there is a Visualization and Modeling SDK for VS2010. It has a tool called DSL tool. But it seems that it is ...
7
votes
9answers
5k 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 ...