active questions tagged dsl - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:47:31Z http://stackoverflow.com/feeds/tag/dsl http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/845265/tools-to-build-a-dsl-in-net -1 Tools to build a DSL in .NET emaster70 2009-05-10T12:40:59Z 2009-11-28T11:49:51Z <p>I'm getting teased more and more into developing DSLs. I've developed a tiny one with F# using fslex and fsyacc but the error messages are inaccurate (I also can't find a way to generate better ones, there seems to be little documentation on how to handle error cases) and the fact that they won't parse UNICODE strings adequately is not acceptable to me. Long story short, I'm looking for tools making it pretty simple to develop a DSL (the Visual Studio tools for that are really nothing like what I'm after) and I'm most interested in the parsing/AST generation part. I've looked at ANTLR and mixing up code and grammar definition meta-language looks bad to me, so please don't mention it or solutions suffering from a similar issue in the answers. Also, I've seen there's some stuff for a language named Boo but I'm really not interested in messing with yet another language (especially if it has little support) right now, so that doesn't fit either. Any other suggestion is appreciated, as long as it's decently documented, works fine with .NET and last but not least doesn't involve the use of a dynamically typed language or use of the DLR.</p> http://stackoverflow.com/questions/1779121/domain-language-what-is-the-best-way-to-express 2 Domain Language: What is the best way to express? Vadi 2009-11-22T16:01:27Z 2009-11-26T04:30:33Z <p>One of my client sent me a requirement document and while reading that document there was a flash came in my mind. I started rewriting that big document similar like below. Do you think, an automated tool can generate a data model and rules by running through this. Say, if any client communicate their requirement in this approach, it will make every one to understand the domain better.</p> <p>I understand that since I know what is blog and comment and post I am able to relate it easily here. However, if one chop down all the technical terms of their business in this manner, will it not be easy to make every one on the same page?</p> <ul> <li>Model: <ul> <li>blog <strong>has a</strong> date </li> <li>blog <strong>has a</strong> content</li> <li>blog <strong>has a</strong> author </li> <li>blog <strong>has many</strong> comments </li> <li>content <strong>may have</strong> images</li> <li>content <strong>may have</strong> links </li> <li>comment <strong>has a</strong> blog </li> <li>comment <strong>has a</strong> name </li> <li>comment <strong>has an</strong> email </li> <li>comment <strong>may have</strong> an url </li> <li>comment <strong>has a</strong> date</li> </ul></li> <li>Rules: <ul> <li>blog <strong>cannot be</strong> empty</li> <li>blog <strong>may be</strong> published <strong>or</strong> drafted</li> <li>blog <strong>should have a</strong> author</li> <li>blog <strong>cannot be</strong> deleted <strong>when</strong> comment is present</li> <li>blog <strong>cannot have</strong> comments <strong>after</strong> 20 days</li> </ul></li> </ul> http://stackoverflow.com/questions/1794848/writing-my-first-dsl-in-c-and-getting-hung-up-on-funct-action 2 Writing my first DSL in C# and getting hung up on func<T> & Action sam 2009-11-25T05:29:33Z 2009-11-25T06:08:19Z <p>I'm taking a crack at writing my first DSL for a simple tool at work. I'm using the builder pattern to setup the complex parent object but am running into brick walls for building out the child collections of the parent object. Here's a sample:</p> <p>Use:</p> <pre><code>var myMorningCoffee = Coffee.Make.WithCream().WithOuncesToServe(16); </code></pre> <p>Sample with closure (I think that's what they're called):</p> <pre><code>var myMorningCoffee = Coffee.Make.WithCream().PourIn( x =&gt; { x.ShotOfExpresso.AtTemperature(100); x.ShotOfExpresso.AtTemperature(100).OfPremiumType(); } ).WithOuncesToServe(16); </code></pre> <p>Sample class (without the child PourIn() method as this is what I'm trying to figure out.)</p> <pre><code> public class Coffee { private bool _cream; public Coffee Make { get new Coffee(); } public Coffee WithCream() { _cream = true; return this; } public Coffee WithOuncesToServe(int ounces) { _ounces = ounces; return this; } } </code></pre> <p>So in my app for work I have the complex object building just fine, but I can't for the life of me figure out how to get the lambda coded for the sub collection on the parent object. (in this example it's the shots (child collection) of expresso).</p> <p>Perhaps I'm confusing concepts here and I don't mind being set straight; however, I really like how this reads and would like to figure out how to get this working.</p> <p>Thanks, Sam</p> http://stackoverflow.com/questions/1783957/what-features-would-you-like-to-see-in-a-game-programming-dsl 3 What features would you like to see in a game programming DSL? Kronikarz 2009-11-23T15:41:50Z 2009-11-24T21:35:03Z <p>Me and my friend are in the first stages of creating a domain-specific language designed for game programming, for his thesis paper.</p> <p>The language will be fairly low-level, it will have a C-like syntax, optional garbage collection, and will be geared towards systems that have little memory or processing power (ie. Nintendo DS), but should be powerful enough to facilitate PC development easily. It won't be a scripting language, but a compiled one, but as we don't want to spend months writing a normal compiler, the first implementation will basically be a LanguageName-to-C translator, with TCC or GCC as the end compiler.</p> <p>Now, I have a question for all you game programmers out there:</p> <p>What would you like to see in such a language? What features, implementation- and syntax-wise, would be best for it? What to avoid?</p> <p>Edit:</p> <p>Some things we already thought up:</p> <ul> <li>state-based objects - an object can exist in one of it's states (or sub-states)</li> <li>events and functions - events don't have to exist to be called, and can bubble up</li> <li>limited dynamic allocation and pointer support - we want it to be as safe as possible</li> <li>support for object compositing (Hero is composed (dynamically) of Actor, Hurtable, Steerable, etc.)</li> <li>"resources" in states, loaded and unloaded automatically at beginning/end of state (for example, an OpenGL texture object is a resource)</li> <li>basic support for localization and serialization</li> <li>a syntax that is quickly parsable</li> <li>we want to make the language as consistent as possible: everything is passed as value, every declaration has predictable syntax (eg. <code>function retType name(type arg) is (qualifier, list) { }</code>; no <code>const</code>, <code>static</code>, <code>public</code> qualifiers anywhere except in the qualifier list), etc.</li> </ul> http://stackoverflow.com/questions/1749340/does-anyone-know-of-a-good-reference-for-dsl-design 5 Does anyone know of a good reference for DSL design? Doug Knesek 2009-11-17T14:41:45Z 2009-11-24T21:01:55Z <p>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.</p> <p>The languages I have in mind are intended to be abstract languages that are readable by domain experts with little or no programming background.</p> <p>Does anyone know of any tutorials, books, or other references that would be helpful?</p> http://stackoverflow.com/questions/1790856/compact-class-dsl-in-python -1 Compact Class DSL in python Yuri Baburov 2009-11-24T15:38:20Z 2009-11-24T16:33:02Z <p>I want to have compact class based python DSLs in the following form:</p> <pre><code>class MyClass(Static): z = 3 def _init_(cls, x=0): cls._x = x def set_x(cls, x): cls._x = x def print_x_plus_z(cls): print cls._x + cls.z @property def x(cls): return cls._x class MyOtherClass(MyClass): z = 6 def _init_(cls): MyClass._init_(cls, x=3) </code></pre> <p>I don't want to write <code>MyClass()</code> and <code>MyOtherClass()</code> afterwards. Just want to get this working with only class definitions.</p> <pre><code>MyClass.print_x_plus_z() c = MyOtherClass c.z = 5 c.print_x_plus_z() assert MyOtherClass.z == 5, "instances don't share the same values!" </code></pre> <p>I used metaclasses and managed to get <code>_init_</code>, <code>print_x</code> and subclassing working properly, but properties don't work. Could anyone suggest better alternative? I'm using Python 2.4+</p> http://stackoverflow.com/questions/1612265/dsl-beta-2-connector-moniker-why-is-it-not-in-the-diagram-file 0 DSL Beta 2 - Connector Moniker - Why is it not in the diagram file? Phill Duffy 2009-10-23T09:12:14Z 2009-11-24T12:36:27Z <p>I am creating a DSL, I want to associate two Entities with a connector but I do not want the EntityMoniker to be in the underlying XML, I need it to be in the Diagram File. I am not sure why it is not in the Diagram file automatically as that seems to be the place where all information 'about' the diagram is held.</p> <p>If I remove the element manually then obviously when I open the diagram up again the connection is gone.</p> <p>I.e</p> <pre><code> &lt;/Methods&gt; &lt;EntityAssociation&gt; &lt;entityMoniker Name="/6fa571fb-93ba-4f6f-a7ae-9fffee5eb901/Product" /&gt; &lt;/EntityAssociation&gt; &lt;/Entity&gt; &lt;/Entities&gt; </code></pre> http://stackoverflow.com/questions/910587/is-there-a-net-based-css-abstraction-library 5 Is there a .NET based CSS abstraction library? Detroitpro 2009-05-26T13:10:05Z 2009-11-22T16:51:24Z <p>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 CSS in a more dynamic fashion.</p> <p>I assume I could get one of the ruby or python CSS DSLs running under ironRuby/Python but this client is very very particular about what software/frameworks are installed.</p> <p>I have not found a CSS DSL where the base programming language is vb or c#. </p> <p>reference: <a href="http://sandbox.pocoo.org/clevercss/" rel="nofollow">http://sandbox.pocoo.org/clevercss/</a> and <a href="http://nubyonrails.com/articles/dynamic-css" rel="nofollow">http://nubyonrails.com/articles/dynamic-css</a></p> http://stackoverflow.com/questions/1752732/how-do-i-build-a-domain-specific-query-language 4 How do I build a domain-specific query language? Dervin Thunk 2009-11-17T23:58:41Z 2009-11-18T01:49:47Z <p>I have a biology database that I would like to query. There is also a given terminology bank I have access to that has formalizable predicates. I would like to build a query language for this DB using the predicates mentioned. How would you go about it? My solution is the following: </p> <ol> <li>formalize the predicates</li> <li>translate into a query language (sql, sparql, depends)</li> <li>Build a specific language with ANTLR or other such tools</li> <li>Translate from 3 to 2.</li> </ol> <p>Is this a valid approach? Are there better ones? Any pointers would be much appreciated.</p> http://stackoverflow.com/questions/1751203/stop-and-continue-while-evaluation-an-expression-tree 1 Stop and continue while evaluation an expression tree Paul-Jan 2009-11-17T19:31:48Z 2009-11-17T21:36:16Z <p>At the office, we've applied simple Domain Specific Languages (DSLs) to several problem domains we encountered. </p> <p>Basically, we parse (lex/yacc) the custom script into an expression tree. Every node in the expression tree has an .evaluate() method that gets called recursively, until the program is done. Nice, and simple as pie. Which is a good thing, because I know next to nothing about parsing techniques, compiler construction and whatnot (good thing my coworkers know a thing or two).</p> <p><strong>Now here is the challenge</strong>: the implementation we are currently working on needs the ability to</p> <ul> <li>stop at any position in the tree <li>persist all state <li>and restore state/positon at any given time in the future. </ul> <p>Persiting the actual state should not be too hard, but the position in the tree (or the "callstack") befuddles me. How would one go about implementing such a system? Storing the position in the tree using some sort of ID's for every node? Or is evaluating the tree itself the wrong approach, and should we somehow transform it into something linear? </p> <p>I'm guessing this is a rather common problem, but I don't know what to look for. Any help on the correct terminology, nudges in the right direction, keywords to search on, design patterns to look at etc... are most welcome!</p> <p><i>(Doing this in Win32/Dephi, but hopefully we can keep this language agnostic)</i></p> http://stackoverflow.com/questions/1738440/language-to-create-flowcharts 1 language to create flowcharts robintw 2009-11-15T18:54:18Z 2009-11-15T19:03:32Z <p>Hi,</p> <p>This seems like something which must have been answered before, but I can't find anything appropriate in the question archives. Basically, I'm looking for a little Domain Specific Language to create flowcharts. I'm terrible at graphic design and making things look nice, and I'd really like a langauge where I could write something in code and it would produce a pretty flowchart. I've come across GraphViz, but it seems more suited to creating things like Finite State Machine diagrams, rather than process flowcharts. It also doesn't have the simple DSL-style front-end that would allow me to easily work it.</p> <p>Any ideas? I'm sure this must have been done before...</p> <p>Robin</p> http://stackoverflow.com/questions/1366627/vs2010-and-dsl-deployment 1 VS2010 and DSL deployment Hrayr 2009-09-02T09:18:20Z 2009-11-12T09:55:26Z <p>Hello,</p> <p>Can anybody help me on this? I want some guide on how to deploy DSL in vs2010, i use the VSIX output that is in DSLPackageProject\Bin\Debug but when then i want to add that item to some project(File->Add New Item) it just adds dsl but without any DSL functionality that is available in experimental hive,</p> <p>Many Thanks, Hrayr</p> http://stackoverflow.com/questions/1716612/literal-structure-for-time-datatype 0 Literal structure for time datatype Kaleb Pederson 2009-11-11T17:02:15Z 2009-11-11T17:14:13Z <p>I'm working on a DSL that should support a time literal and am interested in two different things:</p> <ol> <li>What language(s) or DSL(s) support a time literal?</li> <li>How is the literal structured?</li> </ol> <p>I'm leaning towards using the following regular expression, extracted from the XSD for XML Schema itself, for identifying a time literal:</p> <pre><code>T\d\d:\d\d:\d\d[+\-]\d\d:\d\d </code></pre> <p>But, despite that inclination, I haven't been able to find a common practice.</p> http://stackoverflow.com/questions/1271166/dsl-add-root-element-to-serialization 0 DSL Add Root Element to Serialization Phill Duffy 2009-08-13T10:23:29Z 2009-11-11T02:00:05Z <p>I am looking for help to achieve the following</p> <p>The Diagram represents a car, users can add engine and colour</p> <p>when I view the XML it looks like this:</p> <pre><code>&lt;Car&gt; &lt;Engine&gt;BigEngine&lt;/Engine&gt; &lt;Colour&gt;Pink&lt;/Colour&gt; &lt;/Car&gt; </code></pre> <p>What I would like to do is to wrap the car inside 'vehicle', i.e</p> <pre><code>&lt;Vehicle&gt; &lt;Car&gt; &lt;Engine&gt;BigEngine&lt;/Engine&gt; &lt;Colour&gt;Pink&lt;/Colour&gt; &lt;/Car&gt; &lt;/Vehicle&gt; </code></pre> <p>I am not sure of the best way to achieve this. I want the model explorer and the generated XML to be wrapped in 'vehicle' but for all other intents and purposes the user is working with a car only</p> <p>Info: Visual Studio 2010, C# and DSL SDK for 2010</p> http://stackoverflow.com/questions/1604867/linksys-router-network-challenge 0 linksys router network challenge [closed] Phil 2009-10-22T03:25:44Z 2009-11-09T14:03:17Z <p>I am connected to a DSL connection that if connected directly to my computer I get the IP address of 192.169.1.47 w/ a gateway of 192.168.1.1. I would like to connect my Linksys wireless router to this connection.</p> <p>The problem seems to be that my wireless router uses the same IP sub of 192.168.1 as the network I'm on. I can change the local IP of my router to something other than 192.168.1.1, but I can't set it to give out anything but 192.168.1.* addresses.</p> <p>I'm pretty decent w/ networking, but this is beyond my experience. Does anyone know of a way around this?</p> <p>Please let me know if I need to clarify anything.</p> <p>THANK YOU!!!</p> http://stackoverflow.com/questions/339217/writing-a-compiler-for-a-dsl-in-python 2 Writing a compiler for a DSL in python too much php 2008-12-04T00:17:14Z 2009-11-02T12:00:47Z <p>I am writing a game in python and have decided to create a DSL for the map data files. I know I could write my own parser with regex, but I am wondering if there are existing python tools which can do this more easily, like re2c which is used in the PHP engine.</p> <p>Some extra info:</p> <ul> <li>Yes, I <em>do</em> need a DSL, and even if I didn't I still want the experience of building and using one in a project.</li> <li><p>The DSL contains only data (declarative?), it doesn't get "executed". Most lines look like:</p> <p><code>SOMETHING: !abc @123 #xyz/123</code></p> <p>I just need to read the tree of data.</p></li> </ul> http://stackoverflow.com/questions/1630622/dsl-how-do-you-remove-a-compartmentlistitem-from-the-context-menu 0 DSL: How do you remove a CompartmentListItem from the context menu Mark 2009-10-27T12:57:20Z 2009-10-27T12:57:20Z <p>In my DSL I have four DomainClasses that inherit from an abstract base DomainClass. These DomainClasses can all be items in another DomainClass's CompartmentList. My context menu for the CompartmentList is automatically populated with Add MenuItems for each of the 4 domain classes.</p> <p>My problem is that I do not want a context MenuItem for one of the DomainClasses. I have looked into the GetMenuCommands method of my CommandSet and only appear to be able to remove All the MenuItems which appear to be populated with Microsoft.VisualStudio.Modeling.Shell.AddCompartmentShapeItemMenuCommand. </p> <p>Does anyone know how I can locate and remove the menu item I do not want?</p> http://stackoverflow.com/questions/1583786/looking-for-good-server-side-language-that-will-allow-players-to-upload-code-that 5 Looking for good server-side language that will allow players to upload code that can be executed James Black 2009-10-18T01:59:21Z 2009-10-26T22:46:48Z <p>I had an idea of a program I want to write, but which language would be best is my problem.</p> <p>If I have a car racing game and I want to allow users to submit code for new interactive 3D race tracks (think of tracks such as found in the Speed Racer movie), vehicles and for their autonomous vehicles, so, they would create the AI for their car that will enable the car to determine how to handle hazards.</p> <p>So, I need a language that will run fast, and as part of a world map that the server has of all the possible races available, and their various states.</p> <p>I am curious if this would be a good reason to look at creating a DSL in Scala, for example?</p> <p>I don't want to have to restart an application to load new dlls or jar files so many compiled languages would be a problem.</p> <p>I am open to Linux or Windows, and for the languages, most scripting languages, F#, Scala, Erlang or most OOP I can program in.</p> <p>The user will be able to monitor how their vehicle is doing, and if they have more than one AI uploaded for that car, when it gets to certain obstacles they should be able to swap one AI program for another on demand.</p> <p>Update: So far the solutions are javascript, using V8, and Lua. </p> <p>I am curious if this may be a good use for a DSL, actually 3 separate ones. 1 for creating a racetrack, another for controlling a racecar and the third for creating new cars.</p> <p>If so, would Haskell, F# or Scala be good choices for this?</p> <p><strong>Update:</strong> Would it make sense to have different parts end up in different languages? For example, if Erlang was used for the controlling of the car and Lua for the car itself, and also for the animated racetrack? </p> http://stackoverflow.com/questions/1625608/looking-for-scientific-evidence-of-the-benefits-of-using-a-dsl 3 looking for scientific evidence of the benefits of using a DSL cartoonfox 2009-10-26T15:56:38Z 2009-10-26T19:22:08Z <p>Greg Wilson's talk "bits of evidence" ( <a href="http://www.slideshare.net/gvwilson/bits-of-evidence-2338367" rel="nofollow">http://www.slideshare.net/gvwilson/bits-of-evidence-2338367</a> ) discusses the lack of evidence behind the following claims that Martin Fowler has advanced as benefits of using a DSL:</p> <p>"[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 <em>IEEE Software July/August 2009</em></p> <p><strong>Question: Are there any empirical studies providing evidence of either improved programmer productivity or improved communication with domain experts from using a DSL?</strong></p> <p>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?"</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/1606485/ubiquitous-language-term-for-developers-and-users 2 Ubiquitous language - term for developers and users Fedyashev Nikita 2009-10-22T11:06:08Z 2009-10-26T09:16:10Z <p>Our project's team members are a big fans of <strong>Ubiquitous Language</strong> concept from the Domain-Driven Design Community.</p> <p>And here is the problem we've found:</p> <p>Non-techy users like to use a simplified names of all the concepts, they don't want to know all the details, and that's OK. But we can't do the same in code, because this concepts aren't as easy as we represent them to users.</p> <p>Example: User can setup a project and choose any template for it. But under the hood - it is a concept of the Vendor1's Framework, which is third-party component to our software. </p> <p>So we, as developers can be confused by users' use of the "template" term. Because we already are used to use "template" term in the area of our MVC framework.</p> <p>The temporary solution we have now is:</p> <ul> <li>show simple terms for users</li> <li>use real terms in code</li> <li>explain user terms-to-code terms translation vocabulary in wiki</li> </ul> <p>How should we solve this problem?</p> http://stackoverflow.com/questions/894463/i-need-a-dsl-for-time-calculations 4 I need a DSL for time calculations Jonathan Allen 2009-05-21T18:47:13Z 2009-10-20T15:51:54Z <p>Does anyone know of a DSL for time calculations, something that would be able to understand concepts like "2nd business day after the last business day of the month"?</p> <p>I don't mind writing the parser, but I need help with the language itself.</p> http://stackoverflow.com/questions/1591114/embedded-scripting-engine-for-dsl 1 Embedded scripting engine for DSL I'm Dario 2009-10-19T20:57:38Z 2009-10-19T23:09:48Z <p>I'm working on a project which needs an embedded DSL to fullfill its expected requirements.</p> <p>The DSL would be user defined event based. Here goes a mockup of the desired syntax:</p> <pre><code>user-defined-event-1 { // event body } user-defined-event-2 { // event body } </code></pre> <p>Probably, most similar language I know based on events is <a href="http://wiki.secondlife.com/wiki/A%5FBasic%5FLSL%5FTutorial" rel="nofollow">LSL (from Second Life)</a>.</p> <p>So, after reading other similar questions on SO, I would like to ask for the best embeddable scripting engine (Ruby, Lua, Python, etc) on C++ (I work in Qt) which allows me to create this DSL.</p> <p>In my project, I would test that the script properly uses the DSL syntax (at least one event defined) and give the user all the power of the underlying scripting engine and, if possible, Qt.</p> <p>It is not a requirement for the embedded language to work with Qt. It can be isolated, but it would be nice to have some integration too.</p> http://stackoverflow.com/questions/1557546/what-separates-a-ruby-dsl-from-an-ordinary-api 3 What separates a Ruby DSL from an ordinary API jrhicks 2009-10-12T23:45:49Z 2009-10-19T19:37:20Z <p>What are some defining characteristics of a Ruby DSL that separate it from just a regular API? </p> http://stackoverflow.com/questions/1583624/making-things-available-only-inside-ruby-blocks 1 Making things available only inside Ruby blocks Justin Poliey 2009-10-18T00:47:08Z 2009-10-18T01:12:04Z <p>Is there any way to make methods and functions only available inside blocks? What I'm trying to do:</p> <pre><code>some_block do available_only_in_block is_this_here? okay_cool end </code></pre> <p>But the <code>is_this_here?</code>, <code>okay_cool</code>, etc. only being accessible inside that block, not outside it. Got any ideas?</p> http://stackoverflow.com/questions/1578329/dsls-vs-plain-old-libraries 1 DSLs vs. Plain Old Libraries dsimcha 2009-10-16T14:16:03Z 2009-10-16T14:59:46Z <p>I've been thinking lately about the question of DSLs vs. libraries. In my field, the problem with DSLs (R, SAS and Matlab come to mind) is that they're a PITA to write more general purpose code in and a PITA to integrate into more general-purpose code in other languages. I'm not saying either is impossible, just annoying and frustrating. </p> <p>This contrasts with the approach of, for example, NumPy, which runs on top of a general-purpose language and would probably be as good as Matlab if it had existed for as long and had as much money poured into it. This allows you to work on a project where only a little bit is numerics without needing a whole bunch of crufty glue code to interface between languages, having to remember multiple syntaxes, etc.</p> <p>What are the advantages of a standalone DSL over a plain old library in a general purpose language? It seems like there are such obvious disadvantages in terms of more difficult integration with more general-purpose code and yet another syntax to learn that I just can't understand why these DSLs are so popular.</p> http://stackoverflow.com/questions/603958/domain-specific-language-bloggers 4 Domain Specific Language Bloggers B. Tyndall 2009-03-02T20:55:40Z 2009-10-13T19:27:15Z <p>I have a current need to greatly increase my knowledge around DSLs. Who are the big names in DSLs? What blogs should I be reading?</p> http://stackoverflow.com/questions/1548172/base-a-small-expression-dsl-on-the-dlr-or-keep-it-hand-rolled-in-f 3 Base a small expression DSL on the DLR or keep it hand-rolled in F#? Rickard 2009-10-10T15:00:04Z 2009-10-10T20:43:13Z <p>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 enter them at runtime.</p> <p>My current approach is to write a small "expression DSL" in F#, where I parse the input with FParsec, build a syntax tree based on a discriminated union and then can evaluate the expression. This works pretty well.</p> <p>However, I'm thinking of looking in to basing the language on the DLR instead. Are there any upsides to go down this road (parse the input, generate the AST using the Scripting.AST stuff instead of my own, and let the DLR handle the execution of the calculation)?</p> <p>Each calculation will probably be pretty small. The dependency between the calculations will be taken care of on a higher level.</p> <p>Can I expect better performance since the DLR will generate CIL code for the expression or will the overhead eat that up?</p> <p>(as for using an existing language like IronPython, it will probably be hard since I'm planning to add a lot of slice-and-dice operators and dimensionality-handling stuff to the language syntax)</p> http://stackoverflow.com/questions/1435688/how-to-define-a-dsl-over-c 0 How to define a DSL over C# Dejan 2009-09-16T21:49:51Z 2009-10-07T17:30:23Z <p>For a little night project I would like to write a validation component that could be used in .NET application to do the usual and tedious validation of object, input parameters and post conditions.</p> <p>My first idea was to dump all this validation setup logic into a XML configuation file and provide a liquid interface for the people that would like to have it in code.</p> <p>Because I would like to deliver something that is actually usable I thought about providing a specialized DSL (domain specific language). The question is what tools should I use to do this?</p> <p>I thought about parsing it by hand using regex. But personally I would like to have something more...usable.</p> <p>So what would you suggest?</p> http://stackoverflow.com/questions/1459653/dsl-custom-constructor-only-calling-when-created-not-loading 0 DSL Custom Constructor - only calling when created not loading Phill Duffy 2009-09-22T12:00:00Z 2009-10-07T17:26:37Z <p>Info: VS2010, DSL Toolkit, C#</p> <p>I have a custom constructor on one of my domain classes which adds some child elements. I have an issue as I only want this to run when the domain class element is created , not every time the diagram is opened (which calls the construtors)</p> <pre><code> public Entity(Partition partition, params PropertyAssignment[] propertyAssignments) : base(partition, propertyAssignments) { if (SOMETHING_TO_STOP_IT_RUNNING_EACH_TIME) { using (Transaction tx = Store.TransactionManager.BeginTransaction("Add Property")) { Property property = new Property(partition); property.Name = "Class"; property.Type = "System.String"; this.Properties.Add(property); this.Version = "1.0.0.0"; // TODO: Implement Correctly tx.Commit(); } } } </code></pre> http://stackoverflow.com/questions/1109237/for-what-kind-of-problems-do-you-write-a-dsl 10 For what kind of problems do you write a DSL? Antoine Claval 2009-07-10T12:27:32Z 2009-10-05T09:07:15Z <p>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.</p> <p>So I come to SO to have some concrete input. </p> <p>Did you ever use a DSL? Write one. If yes, what's it feel like?</p> <p>Do you think one of your projects could be better (more productive, more maintainable, ...) with a DSL?</p> <p>Edit : I'm sorry to put this after, but i was meanning a specific DSL that you wrote yourself. It's exclude Tex, HTML, Make , SQL. I fact, the question was more : "writing a DSL"</p>