a Domain-Specific Language is a programming language designed for a specific problem domain
0
votes
1answer
17 views
XText: How to create parser for multiple target langauage
I defined my DSL in XText and it automatically have Java version of language parser and code generation skeleton generated, which is really cool.
The problem is that my DSL is intended to be consumed ...
0
votes
1answer
40 views
How to create a web editor for a new language?
I have developed a new domain-specific language (DSL) using Javacc parser generator. Now, I want to create a rich web editor for this language (using Play framework and Twitter bootstrap), so that it ...
5
votes
1answer
174 views
F# and modeling of the inheritance
my question relates to a way how to deal with the inheritance in functional way in F#. To describe it a little, I give a simple example. Suppose we want to model a world consisting of various kinds of ...
-5
votes
0answers
31 views
How to make Android dictionary? [closed]
I want to create personal dictionary viewer (with search). I have 2 dictionary by DSL-format (Lingvo), but i can convert to another formats.
How to make simple viewer?
P.S. I'm newbie, but i know ...
-1
votes
1answer
10 views
Unable to ping from both interfaces at a time
I have a bit of a problem. I have two interfaces attached to my server: eth0 and eth1. Each of them is DHCP. eth0 is in the local LAN, and eth1 is directly connected to a DSL modem. The problem is ...
0
votes
0answers
11 views
DSL for API composition?
What are some domain specific languages made for quickly compositing REST APIs?
This is obviously pretty easy to do using a REST library in most languages, but are there any designed for just this ...
1
vote
1answer
31 views
Ruby: retrieve local_variables from a block or append code within a block
I want access to local variables declared by the user of my DSL in a block.
E.g.
class Scraper
def scrape!(&block)
a = block.binding
instance_eval &block
b = block.binding
...
0
votes
0answers
18 views
Visual Dataflow Language Program Model
I am working on a Visual Dataflow Programming Language Model - the language can be thought of as a simplified Yahoo Pipes dialect.
I am looking for a way to implement the model of representing the ...
0
votes
1answer
46 views
bash spaces in whiptail/dialog menu items
I want to create a simple dialog with bash-dialog. I work with (X)DSL and bash-3.2. The latest (X)DSL is based on Linux 2.4.31 and comes with bash-2.05, however, bash-3.2 is downloadable from ...
5
votes
1answer
84 views
Starting points to morph regular Servlets coding to my DSL
Clojure offers a good Java interop. However, I really want to have this:
(servlet IndexServlet
(service[parmas] ....)
(do-post[params] ....)
(do-get [params] ....))
(servlet-filter ...
0
votes
0answers
22 views
Any DSL for e-commerce applications?
I am working on a pet project to come up with a domain-specific language (DSL) for entity matching. Specifically, I want to allow product matching on product data scraped from various e-commerce sites ...
0
votes
1answer
32 views
Xtext - multiple files language
I'm pretty new to Xtext, so I don't understand very well all of the associated concepts. There's one question in particular I couldn't find an answer to: how can I manage a grammar for a language ...
2
votes
2answers
101 views
Is there any book or online tutorial for Scala DSL?
I read this one for DSL scala http://camel.apache.org/scala-dsl-getting-started.html. It doesn't help much for me. I want more details. Can any one help me out?
0
votes
0answers
57 views
Algorithm for string replacement based on conditional char replacement
Usage case: I'm writing a domain specific language (DSL) for a regex-like but way more powerful Lispy string processing system focused on conditional replacements (like simulation of language ...
0
votes
1answer
125 views
why does Puppet and Chef use Ruby? [closed]
We all know that Puppet and Chef are the superstars of the IT automation area, and they are developed in Ruby (though Chef 11 server was rewriten in Erlang).
In my working environment, a very large ...
0
votes
1answer
63 views
Scala external DSL - infinite loop caused by alternative repetitions
I am trying to build a simple external DSL in Scala that would be able to parse strings like:
value = "john${tom}peter${greg}${sue}meg"
In general, a substring within quotation marks contains ...
1
vote
1answer
99 views
Bind monadic variables over several functions
I'm interested in getting as close as possible to the following syntax. TH is just fine by me.
bootapplication :: IO ()
bootapplication = do
clientA <- newChan :: IO (Chan AMsg)
clientB <- ...
0
votes
1answer
16 views
Xtext - how to extend XtextDocument class
I need to extend XtextDocument class so i can add some properties to my dsl document.
how can it be done?
I tried to add bind to Ui Module but there is no bind for XtextDocument.
thanks in advance
-1
votes
0answers
29 views
How do you check internet upload speed using wget? [closed]
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 ...
0
votes
0answers
27 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 ...
6
votes
1answer
155 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) []
...
1
vote
3answers
75 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 ...
0
votes
1answer
61 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" >
...
0
votes
0answers
119 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:
...
4
votes
1answer
162 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
21 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 ...
0
votes
1answer
25 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 ...
0
votes
0answers
10 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 ...
0
votes
0answers
20 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
...
0
votes
1answer
32 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 ...
1
vote
1answer
38 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 ...
2
votes
1answer
61 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
49 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
24 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 ...
0
votes
1answer
39 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 ...
4
votes
1answer
80 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
0answers
41 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 ...
8
votes
1answer
482 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
1answer
103 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:
...
0
votes
1answer
36 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
44 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
41 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, ...
0
votes
2answers
37 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" ...
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.
2
votes
1answer
226 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
1answer
286 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
139 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
761 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
24 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 ...
0
votes
0answers
40 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:
...


