a Domain-Specific Language is a programming language designed for a specific problem domain
2
votes
5answers
571 views
Libraries for converting physical units (kilograms, pounds) in Ruby?
I know Rails has some nice helpers for date and time management. Is there an already-working project consisting of, or incorporating a clean DSL for standard units and their conversions? Any project ...
0
votes
0answers
10 views
How do you check internet upload speed using wget?
My service provider frequently drops my upload speed from 1.5Mb/sec to .5Mb/sec. They routinely say there is not problem. One fix that I've discovered is to reboot the cable modem which typically ...
4
votes
1answer
134 views
Implicit conversion not working with type-safe builder pattern
I am using the Scala type-safe builder pattern for a simple rest request. This works great as a fluent api.
sealed abstract class Method(name: String)
case object GET extends Method("GET")
case ...
0
votes
0answers
65 views
XText Chained Dependencies in Type Inference
In my experiments, it appears that XText cannot resolve variable types when there is a chain of dependencies across multiple XExpression blocks.
A minimal example, to illustrate. I have a grammar:
...
0
votes
1answer
18 views
Apache Camel: Nested filters (filter … filter … end …filter … end ..end) in DSL (Groovy or Java)
we have some issues with the DSL for Camel Routes. It seems that it is not possible to translate the following XML Configuration into the Groovy (or JAVA) DSL
<route id="myroute" >
...
5
votes
1answer
129 views
Typeclass for functions with different numbers of arguments
In my simple Haskell DSL, I have the following functions to call other functions:
callF :: forall a. (Typeable a)
=> (V a) -> (V a)
callF fp@(V (FunP name)) =
pack $ FunAppl (prettyV fp) []
...
0
votes
0answers
24 views
Ruby: How to DRY subclassing of DSL-expressed classes?
I'm currently building out a Storm topology using RedStorm. In doing so, I've come across the desire to subclass out Bolts so that I can reduce the complexity of my code base. In RedStorm, Bolts are ...
1
vote
3answers
64 views
Custom method signature in a scala dsl
Is there a way to create a scala dsl which enables me to write code similar to this pseudo-code
edited: changed to scala pseudo code
object AccessProtectedClass extends App{
def ...
3
votes
3answers
449 views
Is there a Harel Statechart DSL tool for Java?
I'm looking for a tool that understands a DSL in which I can define my statechart that generates Java code or where the statechart in the DSL is runnable as is. The tool would ideally be written in ...
0
votes
0answers
16 views
Ruby DSL - object storage and associations
I'm venturing into the world of Ruby DSL's and while I have done this before those languages I've created have been imperative in nature. Do X, then Y, then Z.
I've got a piece of software that has a ...
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.
1
vote
1answer
30 views
Run a raw text file in MPS
I am developing a DSL using the MPS tool. However MPS being a projectional editor does not allow to run programs written in plain text files. The code has to be written in the MPS editor or in ...
1
vote
1answer
108 views
Elasticsearch query too many results
I'm tring to set up a simple search that would return me simple results with a custom ordering, the ordering i get back is fine based on a custom score.
The problem is that for this query
"query": {
...
0
votes
1answer
17 views
init_declarator is a non-unique reference Antlr?
I am starting my symbol table, still new to it but facing some errors given by antlr in reference to my init_declarator rule. Any tips please
declaration
: declaration_specifiers ...
5
votes
4answers
2k views
DSL in Finance
does anyone here have ever worked with DSLs (Domain Specific Languages) in the finance domain ? I am planning to introduce some kind of DSL support in the application i'm working on and would like to ...
3
votes
2answers
415 views
Scala - URL with Query String Parser and Builder DSL
In Scala how do I build up a URL with query string parameters programmatically?
Also how can I parse a String containing a URL with query string parameters into a structure that allows me to edit the ...
0
votes
0answers
8 views
Accessing a siblings value in a property grid for a System.ComponentModel.StringConverter in a DSL
In my DSL I have two dynamic drop down lists, one is straight forward and populated with a StringConverter by overriding the GetStandardValues method.
The second drop down list is filtered based on ...
1
vote
2answers
302 views
Groovy DSL: setting properties in closure
I want to implement an 'active' flag for rules in my DSL. Here's how I wanted it to look like:
Shipping("Standard") {
active: true
description: "some text"
rules {
... define rules ...
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; ...
0
votes
1answer
25 views
generated Xpand code ' editor does not contain a main type'. However I have a main method
I am trying to understand dsl code generation with xText and xPand.
I have opened the statemachine xText example in eclipse and ran as a new eclipse application. I then made a java contaning a ...
0
votes
0answers
11 views
Use an integer from xText in xPand
I'm trying to understand the process of making a dsl using xText and xPand and have the following xText file
grammar org.eclipse.xtext.example.game.Game with org.eclipse.xtext.common.Terminals
...
2
votes
8answers
2k views
Embedded scripting engine for DSL
I'm working on a project which needs an embedded DSL to fullfill its expected requirements.
The DSL would be user defined event based. Here goes a mockup of the desired syntax:
user-defined-event-1 ...
0
votes
1answer
88 views
Getting started with DSL design [closed]
for an upcoming project I have the following requirements (vastly simplified):
Create a software program that the end user can use to configure a product from a given set of choices that may be ...
0
votes
3answers
118 views
Audio Domain Specific Language vs Python
I want to write some code to do acoustic analysis and I'm trying to determine the proper tool(s) for the job. I would normally write something like this in Python using numpy and scipy and possibly ...
3
votes
2answers
100 views
DSL for date manipulation [closed]
I have an existing asp.net (c#) application. I need to provide users with a way to create flexibles rules to calculate an effective date given a hiredate and an enrollmentdate.
Some examples of rules ...
2
votes
1answer
57 views
Ruby DSL: Can you pass a block to an object
I'm quite new to Ruby and just exploring around with DSL. I'm wondering if this is possible in Ruby, and if so, how would one do this?
melissa = Player.new
melissa do
on :turn do
puts "It's my ...
0
votes
0answers
23 views
Using the 'from' KEYWORD in Drools DSL
I am using Drools DSL to map some natural language to actual MVEL code.I have a problem though, I have a scenario where I need to use the 'from' keyword in the when clause.
Here is a snapshot of my ...
1
vote
1answer
20 views
Capturing the spec filename in a ruby DSL implementation?
I am writing a ruby DSL that will be used to code-generate a number of Objective-C++ functions. I would like the name of each function to be derived from the name of its ruby DSL source file.
For ...
4
votes
1answer
74 views
Haskell LLVM — Duplicate Functions Created
The problem I am having with the LLVM-Haskell bindings is that I am getting "duplicated" names. I think the best way to explain my problem is with a small concrete example (note the example is ...
0
votes
1answer
22 views
Javascript Query Selectors DSL as an Independent Library
I really like mongodb's json dsl for querying the database.
I was wondering if there is any stand alone library for node.js/browser that can convert that kind of json expressions into, maybe, js ...
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 ...
0
votes
0answers
33 views
Can I use Xtext for a DSL containing javascript?
I am looking at using Xtext to create an eclipse plugin for a custom language. This language is xml-like for the most part, however javascript can also be using within script tags- see below for ...
6
votes
1answer
374 views
How Pony (ORM) does its tricks?
Pony ORM does the nice trick of converting a generator expression into SQL. Example:
>>> select(p for p in Person if p.name.startswith('Paul')).order_by(Person.name)[:2]
SELECT "p"."id", ...
3
votes
2answers
99 views
How can I get rid of the brackets in a scala DSL expression?
I'd like to be able to get rid of the brackets/parentheses in the following expression in my DSL:
substitute ("hello {0}" using "world")
The rest of the code looks like this:
class Rule(format: ...
-2
votes
0answers
45 views
What's is wrong with this Apache Camel Java DSL route definition?
I want to do the below, but otherwise() is flagged as compilation problem. How DSL should be written to correct it?
from("mq:....blah....")
.log("Message arrived ... ${body}")
...
3
votes
1answer
92 views
Scala macros: constructing an anonymous class
I am fairly new to Scala macros, and am trying to write a very basic DSL.
I have the following Scala class:
abstract class SpecialFunction {
def apply(): Unit
}
and the following Scala macro:
...
3
votes
1answer
206 views
Eclipse Xtext Run as application - Java error
I have an xtext project, which I can generate the xtext artifacts for, and work with mwe2 generators, but it will not run as an xtext application - giving the error:
#
# A fatal error has been ...
0
votes
2answers
36 views
Is it possible to redefine “describe”?
Is there any way I can redefine describe so that I can, for example, write
new_describe MyModule::MyClass do
it "does this" do
end
it "does that" do
end
end
instead of
describe "something" ...
0
votes
1answer
27 views
ElasticSearch Query search message and restrict to node id
I have the following mapping in ElasticSearch:
{
"xenforo" : {
"post" : {
"_source" : {
"enabled" : false
},
"properties" : {
"date" : {
"type" : ...
0
votes
1answer
35 views
How to get a detailed results output from ElasticSearch
When I do a query like this:
curl 'http://localhost:9200/xenforo/_search?q=message:test'
I get the following result:
{
"took": 3,
"timed_out": false,
"_shards": {
"total": 5,
...
0
votes
0answers
37 views
Problems with the R DSL package
I'm trying to use R with an distributed File system (HDFS) and when I launch a MapReduce job with DSL package, I've got this message :
"Streaming Command Failed!
Error in !unlist(lapply(chunks, ...
3
votes
1answer
25 views
Helvetia LBChange
What is the LBChange used for in Helvetia? I see that in every language box there is one #change: which returns a new LBChange.
4
votes
3answers
414 views
Would my DSL for Lua work…? (this seems too simply to be true)
I really love Lua as a programming language BUT, it bugs me unbelievably to have to constantly type "local" for all my local variables.
It just makes my code look more cluttered.
So I am wondering, ...
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 ...
0
votes
0answers
179 views
Chef Recipes - Setting node attributes in ruby_block
I have a Chef recipe for a multi-node web service, each node of which needs to get the hostname and IP of the other nodes, to put it into its own local configuration.
The code is shown below. The ...
2
votes
2answers
120 views
Scala operator overloading with multiple parameters
In short: I try to write something like A <N B for a DSL in Scala, for an integer N and A,B of Type T. Is there a nice possibility to do so?
Longer: I try to write a DSL for TGrep2 in Scala. I'm ...
8
votes
2answers
706 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 ...
0
votes
0answers
16 views
Couldn't resolve reference to Xbase annotation… but only sometimes
I have a DSL (annotation.xtext) for mapping JvmAnnotations:
Annotation :
'@' name=ID "maps" jvmAnnotation = XAnnotation '{'
...some irrelevant attributes
'}'
;
and another DSL ...
1
vote
2answers
128 views
'Spread' parameters in Scala?
Is there any way to call a Scala function that takes individual parameters, given an array (similar to JavaScript
Spreads in ECMAScript 6)?
ys = [10.0, 2.72, -3.14]
f(x, ...ys);
The cleanest ...
0
votes
0answers
32 views
How to read a user defined file in xtext?
I have a file that contains a list of config files. Files from the list need to have the same grammar file.
As an example, I have a file "myfile.txt" that has these contents:
...


