vote up 3 vote down star
4

Greg Wilson's talk "bits of evidence" ( http://www.slideshare.net/gvwilson/bits-of-evidence-2338367 ) discusses the lack of evidence behind the following claims that Martin Fowler has advanced as benefits of using a DSL:

"[using a domain-sepcific language] lead to two primary benefits. The first, and simplest is improved programmer productivity. The second ...is... communication with domain experts." -- Martin Fowler in IEEE Software July/August 2009

Question: Are there any empirical studies providing evidence of either improved programmer productivity or improved communication with domain experts from using a DSL?

Lots of people building DSLs are unable to provide a reasoned answer to "why are you building a DSL?" and "why would a DSL help you more than a well-factored object model?"

I hear a lot of "I'm doing it because it's cool and everybody else is doing it" - which is not a rational answer.

I believe that DSLs are helpful at least some of the time but that they're not likely to be a "silver bullet" that should be used indiscriminately. I would like to see some scientific work that describes when DSLs should and should not be used - based on empirical research.

flag

1  
Why would you have to prove that a DSL is better than a well-factored object model? Shouldn't someone advocating a well-factored object model have to prove that it's better than a DSL? Anyhow, the problem with requiring research is that it's very difficult, and expensive, to compare this sort of thing empirically. You can do studies on a good number of programmers for a few hours or days, but when you're trying to compare over the length of time a real-world codebase is used and extended (many years, with potentially many programmers involved), you would need millions just to fund the study. – Brian Campbell Oct 26 at 19:26
I'm assuming that you're working in an XP project where code is well-factored in a general-purpose OOPL. The general purpose OOPL would be the default way things are done. If I found that somebody implemented a DSL and it had a very high maintenance cost to support all sorts of reuse that isn't needed - that's when I'd say a plain, hard-coded OOPL approach would be cheaper to build and maintain. I don't think you need to go as far as doing massive studies - just observing some recurring patterns between projects that use DSLs might be a start. – cartoonfox Oct 26 at 21:06

6 Answers

vote up 4 vote down check

Just Googling about, I found a couple interesting papers:

Domain-Specific Languages in Practice: A User Study on the Success Factors

Domain-Specific Languages versus Object-Oriented Frameworks: A Financial Engineering Case Study

Post-design Domain-Specific Language Embedding: A Case Study in the Software Engineering Domain

And I imagine you could find some better references starting from Google Scholar...

link|flag
This one is quite relevant: [Domain-Specific Languages in Practice: A User Study on the Success Factors](swerl.tudelft.nl/twiki/pub/…) – cartoonfox Oct 26 at 17:24
vote up 1 vote down

It depends on what you consider a DSL to be.

For example, is css a DSL? I would think so, then it obviously can make it easier to style a page, as, in HTML 3 we used tables for arrangements, and didn't have the flexibility we do now.

If you have a DSL so students can design molecules using just the atomic symbols (H20), then it would be simpler than doing the coding yourself, as you can quickly look at the molecular configuration if you give the symbols and types of bonding, for example.

I don't know of a paper showing one way or another, but, if your target audience is not programmers, then a DSL makes sense, so we can have accountants writing their application, using their terminology, rather than having them give requirements to developers.

DSLs have been around for a long time, but are now becoming more popular, so time will tell when there are more examples of good and bad uses as to when it is best to use it and when it actually is detrimental. I wouldn't write medical monitoring software with any DSL, for example.

link|flag
CSS is indeed useful, however there's no empirical study that tries to compare CSS with an object model to prove it's more or less useful than such a model. – Pop Catalin Oct 26 at 17:58
@Pop Catalin - I think for many dsls it will be up to the market to decide which works best, either to use a DSL or some other method, as, ultimately, it comes down to what works best to help solve a problem. – James Black Oct 26 at 19:03
vote up 0 vote down

The whole premise of "scientific" in this case is dubious. There is simply no way to guarantee the criterions of "reproducible", "control (group)" required for an empirical study.

link|flag
okay - finding a sample group is very, difficult. I'll happily substitute "emprical" for "scientific". I really want to see what results people get from studying groups of people who've used DSLs to see if there's something at least a bit more objective than hype. – cartoonfox Oct 26 at 16:13
Good luck finding a control group of "programmers" who have never used regular expressions, a makefile, a templating language, printf, SQL, TeX... – Jonathan Feinberg Oct 26 at 16:18
vote up 0 vote down

By and large in business programming there are no serious empirical studies on the benefits of something prior to its being used. Whether that is SQL, object oriented languages, functional languages, garbage collection, etc.

These things tend to be decided by the market over time.

Why this is the case is probably a combination of two reasons. One is that it is very expensive to get a good empirical study and it is much cheaper from an economical point of view to just try it. The other is that each situation is different, so an empirical study would have to start with limiting the problem under study very narrowly to have a proper comparison between using a DSL and not using one, and the end result of the study would not be very useful beyond the specific type of problem that was chosen.

I think we can safely say from experience that nothing is a silver bullet, and insisting on a good reason for an approach will make any solution better, because even if a DSL would help a situation, if you don't know why you are doing it, you won't know if you are doing it right and may end up missing the whole benifit.

link|flag
Business programmers aren't the only kind of programmers though: I believe that one group of developers produced a specification language for embedded systems that are used for train signalling. I'd also classify yacc as a "software tool" rather than business software, yet it's an example of a successful DSL. – cartoonfox Oct 26 at 16:18
I think the Fowler argument is more directed to usiness programming and related that might be tempted to just implement the functionality according to a spec. Yacc wouldn't have a purpose without its DSL and many systems that require user instructions are automatic candidates for DSLs, as there isn't an alternative (hence CSS, or plain old rules engines that have been around forever). The Fowler argument is more saying that the right tool (Ruby usually) makes making the DSL easy enough to see great benefits in using it rather than requiring more code from developers to satisfy every behavior. – Yishai Oct 26 at 16:28
vote up 0 vote down

Not so sure anyone has done any studies to the extent that you need. My experience though is that a DSL can be costly to create in the first place (possibly 2X or more effort than a simpler object model to do the same thing). However once created the developers would get immediate benefit by being able to do things quicker with the DSL than with the model.

The problem with the question is it's treating all DSLs as equal. Some would be easier to implement, others harder - whether one is doing Fluent Interfaces/Internal DSLs or external DSLs would lead to different times/cost to implement.

The one main benefit that might not be covered by such studies is the ease that a DSL can lead to expressing and implementing code. It can also help others understand the intent of the code possibly easier - and since maintenance phase of software development lifecycle is such a big component of the SDLC this could lead to far bigger benefits (in the long term) than initially lost in creating the DSL.

link|flag
vote up -1 vote down

Here you go.

Here's a small program for matching a certain regular expression, and extracting elements of it, written in a well-known DSL:

/<a\s+href="(https?:\/\/\w+(?:\.\w+)\/?)">([^<]+)/

Please show me a program or program fragment, which does the same thing, written in some standardized high-level language, that's as easy to understand, modify, and maintain. To make it as brief would be a bonus. Good luck!

link|flag
1  
LOLing at the immediate downvote. – Jonathan Feinberg Oct 26 at 16:05
Only a downvote because there's no answer. Just another question. – Justin Niessner Oct 26 at 16:06
As a Jew, I consider it my prerogative to answer a question with a question. Anyway, the point is that the question is trivially answered by example. He wanted "evidence", I provided it. It's obvious, in this case, that a DSL trumps general-purpose languages. So, proof by existence! – Jonathan Feinberg Oct 26 at 16:08
2  
"Please show me a program or program fragment, which does the same thing ... " I can show you and it's better and shorter : $("a")[0].attr("href") (and it's using an object model the DOM pf the page) – Pop Catalin Oct 26 at 16:42
1  
No I'm sorry but it doesn't answer the question. There are so many assumptions in your example that I can't even guess them all. assumption 1: You seem to be assuming that shorter code = greater productivity assumption 2: the domain describes things at the web developer's level of abstraction. Maybe it shouldn't... I'm looking for observations from real projects on how DSLs do or don't help productivity and communication. You proved it is possible to use a DSL to specify a regex concisely but that doesn't answer my question. The question's answer isn't trivial or obvious to me anyway. – cartoonfox Oct 26 at 16:46
show 3 more comments

Your Answer

Get an OpenID
or

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