Tagged Questions

a Domain-Specific Language is a programming language designed for a specific problem domain

learn more… | top users | synonyms (1)

26
votes
3answers
7k 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 ...
18
votes
3answers
2k views

Are there any Clojure DSLs?

Is there any DSL (Domain Specific Language) implemented in Clojure ?
16
votes
12answers
927 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 ...
16
votes
6answers
1k 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 ...
15
votes
7answers
715 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 ...
13
votes
8answers
449 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 ...
11
votes
6answers
216 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 ...
11
votes
5answers
741 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 ...
11
votes
4answers
4k 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 ...
10
votes
6answers
1k 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 ...
10
votes
12answers
769 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 ...
9
votes
7answers
975 views

Interesting DSLs, Implemented in Scala?

I've seen BASIC and Apache Camel DSLs in Scala, and they're just fantastic. Any more examples of such DSLs?
9
votes
4answers
331 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 ...
8
votes
2answers
108 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 ...
8
votes
3answers
1k 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 ...
8
votes
8answers
483 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 ...
8
votes
16answers
1k views

Successful Domain-Specific Languages ? Which one do you use?

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 ...
7
votes
2answers
226 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
4answers
492 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 ...
7
votes
6answers
732 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
2answers
465 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" ...
7
votes
7answers
508 views

C++ domain specific embedded language operators

In numerical oriented languages (Matlab, Fortran) range operator and semantics is very handy when working with multidimensional data. For example: A(i:j,k,:n) // represents two-dimensional slice ...
7
votes
6answers
1k 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 = ...
7
votes
3answers
11k views

log4j in grails : how to log into file?

I have this log4j configuration in my grails config.groovy log4j = { error 'org.codehaus.groovy.grails.web.servlet', // controllers 'org.codehaus.groovy.grails.web.pages' // ...
7
votes
6answers
746 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 ...
7
votes
5answers
660 views

Language features to implement relational algebra

I've been trying to encode a relational algebra in Scala (which to my knowlege has one of the most advanced type systems) and just don't seem to find a way to get where I want. As I'm not that ...
7
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 -- ...
6
votes
1answer
128 views

scala.tools.nsc.interpreter memory leak

I need to implement a DSL (Domain Specific Language) using Scala, and this DSL will be interpreted in a Scala interpreter (scala.tools.nsc.interpreter). The problem is that the memory used by the ...
6
votes
4answers
112 views

Implementing a DSL in C# for generating domain specific XML

I have a legacy HTTP/XML service that I need to interact with for various features in my application. I have to create a wide range of request messages for the service, so to avoid a lot of magic ...
6
votes
1answer
250 views

Recommended way to embed JVM in C program with NO library?

What's the recommended way to embed JVM in C program with NO library. This means JVM as a eDSL execution engine. (Not whole Java platform environment) I'm trying to use another JVM based language ...
6
votes
4answers
304 views

Future of the with-statement in Javascript

I know that usage of the with-statement is not recommended in Javascript and is forbidden in ECMAScript 5, but it allows one to create some nice DSLs in Javascript. For example CoffeeKup-templating ...
6
votes
2answers
650 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 ...
6
votes
4answers
2k 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 ...
6
votes
2answers
691 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.
6
votes
3answers
571 views

Does anybody know of a GUI DSL for Scala?

hi all does anybody knows a scala dsl on gui programming. regards. kula
6
votes
4answers
627 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 ...
6
votes
6answers
579 views

What separates a Ruby DSL from an ordinary API

What are some defining characteristics of a Ruby DSL that separate it from just a regular API?
6
votes
1answer
608 views

Base a small expression DSL on the DLR or keep it hand-rolled in F#?

I'm building a spreadsheet-like application, where a lot of small calculations needs to be stitched together in a tree-structure. These calculations are user-defined and I need a way for the user to ...
6
votes
5answers
343 views

Composable Grammars

There are so many programming languages which support the inclusion of mini-languages. PHP is embedded within HTML. XML can be embedded within JavaScript. Linq can be embedded within C#. Regular ...
6
votes
3answers
338 views

Is there a .NET based CSS abstraction library?

I've been working on a really large project for almost 2 years and the client requirements keep changing. These changes, of course, effect everything and I would like to find a way to work with the ...
6
votes
5answers
1k views

Choice of DSL framework

I am working on a project that requires me to define a DSL. Since coming up with the right DSL is critical for my project, I decided to evaluate existing frameworks that help in defining DSLs,parsing ...
6
votes
3answers
601 views

Need help improving a Ruby DSL for controlling an Arduino controlled drink dispenser (bar monkey)

I'm writing a DSL in Ruby to control an Arduino project I'm working on; Bardino. It's a bar monkey that will be software controlled to serve drinks. The Arduino takes commands via the serial port to ...
5
votes
2answers
129 views

Is there any Date/Time DSL utils in Scala?

I need to manipulate and calculate lots of things related to date, such as "is today?", "is before yesterday?", "now plus 3 days" etc. Is there any library or dsl in scala that can help with that? I ...
5
votes
1answer
60 views

Groovy's classX.metaClass.getProperty in scala

Is there anything equivalent to Groovy's remarkable SomeClass.metaClass.getProperty function in scala? This would be very helpful in making domain specific languages. For example, I could then say: ...
5
votes
2answers
125 views

Examples for external technical DSL

We are in the process of evaluating how far we can use external DSL's in the process to describe, model and generate a multi Platform Application. I personally don't see many applications to describe ...
5
votes
0answers
213 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, ...
5
votes
4answers
147 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 ...
5
votes
1answer
62 views

Is there a good DSL for manipulating MySQL scripts independent of any particular web framework?

I have a simple MySQL script that I use in a web application to complete rebuild/reset my DB to a clean initial state. Thus, in this script I define the various tables, stored procs, etc. that I need. ...
5
votes
2answers
278 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 ...
5
votes
1answer
236 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 ... ...

1 2 3 4 5 9