0
votes
1answer
46 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
3answers
72 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 ...
4
votes
1answer
146 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 ...
3
votes
1answer
95 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: ...
2
votes
2answers
122 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 ...
3
votes
2answers
102 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: ...
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
1answer
76 views

is there any DSL for streams/iterators?

I wonder (and nearly become desperate) if there is any worked out DSL for streams/iterators on ordered series of objects? The sources are ordered streams of id,time,key,value instances and the ...
0
votes
2answers
154 views

Getting partial constructors for case classes “for free”

Consider an abstract class defining two properties abstract class A { def a: Int def b: Int // real A has additional members } which is the base class for various case classes such as case ...
3
votes
2answers
112 views

Scala DSL - Nested block referencing parent

Playing about with a DSL in Scala, so lets say I have something like this: house { floor { bedroom("kids) bedroom("master") } floor { kitchen() } } Now what I want is at each ...
2
votes
2answers
282 views

Internal DSL in Scala: Lists without “,”

I'm trying to build an internal DSL in Scala to represent algebraic definitions. Let's consider this simplified data model: case class Var(name:String) case class Eq(head:Var, body:Var*) case class ...
0
votes
2answers
67 views

Internal DSL in Scala tuple to a class conversion

I'm trying to build an internal DSL in Scala. I have the following types: case class A(name:String) case class Group(list:A*) // it can also be list:List[A] Creating a group of A's using the normal ...
2
votes
1answer
304 views

Can I use Scala Macros to internalise an external DSL?

I would like to implement an external DSL such as SQL in Scala using Macros. I have already seen papers on how to implement internal DSLs with Scala. Also, I've recently written an article about how ...
2
votes
2answers
149 views

Scala - the `apply()` without arguments method and curved braces on a call

I am building a DSL with Scala and I have such an object: object block { def apply(content: String): String = "{\n" + content + "}\n" def apply(): String = block("empty block") } so that later ...
0
votes
0answers
89 views

Scala: dsl internal and constraints on the fields

I want to implement a Internal DSL in Scala. I'm not an expert programmer. I will put in a package the domain of my problem. In another package I will put classes of DSL. For the domain I want to ...
3
votes
2answers
430 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 ...
1
vote
1answer
64 views

How make operator call this inside a class

I'm writing a small DSL. It may be used as a custom control structure from other point of view. Here comes little example case class Reference(var value : Double) { def apply() = value def ...
1
vote
2answers
92 views

Scala DSL - implicit methods of a function object

In my DSL I want to be able to do like this: val a = 5 Parse("TYPE") { a match { case 3 => info("almost") case s: String => error("wrong type") case 5 => info("you won!") ...
1
vote
2answers
119 views

Scala - DSL: overloaded prefix function ambiguity

In my DSL I want this functionality: class Test { val compA = dependant(true, true)(Component("parameters")) //and this shortcut: val compB = dependant Component("parameters") } where: ...
7
votes
2answers
200 views

Embedding XML (and other languages?) in Scala

I'm wondering how the scala.xml library is implemented, to get an Elem-instance out of XML. So I can write: val xml = { <myxml> Some wired text withoud "'s or code like import x ...
3
votes
1answer
307 views

Scala External DSL — Multi line string literal

I am trying to define an external DSL using the scala parser combinators. I see that the 'stringLit' token parser does not accomodate multi line strings using the triple quotes. Is there something ...
1
vote
1answer
127 views

What are the open source scala-based DSL projects out there? [closed]

I am currently looking for open source scala projects to work on. Can anyone provide a list of open source scala-based DSL projects out there?
0
votes
2answers
172 views

How implement a DSL for a matrix-lib in scala?

I want to write a matrix library for my computer graphics projects. I want to use scalas dsl feature, to make it look and feel more naturaly. Can anybody give me a hint, where to find a simple ...
1
vote
1answer
81 views

In the Scala^Z3 DSL, how is an uninterpreted function declared?

I have a small Scala program that transforms a Scala^Z3 DSL expression into latex for easy reading. But I don't see how to declare an uninterpreted function using the DSL. There are many ways to hack ...
4
votes
6answers
296 views

How to create DSL in Scala for command lines with minimum extra boilerplate

I need to develop an API for users not familiar with scala (neither Java) but familiar with Shell. They will, basically write shell scripts inside a scala class (I know I could just call external ...
3
votes
5answers
231 views

Mix Scala Option and regular variable in a statement

I would like to write conditional statements mixing transparently Scala Options and regular variables. For example: var o1 = Some(1) var o2: Option[Int] = None var x = 2 val test1 = x < 3 ...
2
votes
1answer
129 views

Is it possible to create a “restricted scope” in Scala?

I will explain what I mean by restricted scope first: restrictedScope (allowedNamespace) { /* THE CLIENT CODE GOES HERE */ /* the namespace in this closure is limited only to the idioms I ...
2
votes
1answer
152 views

Designing a Scala DSL for maven-poms

I am thinking about a DSL / domain design to analyse a big bunch of maven dependencies. Input is a list of poms (effectively a map between poms and physical location), which I think will be parsed as ...
0
votes
1answer
162 views

Scala sentences parsing using parser-combinators

How to effectively parse (without too much of code cluttering) statements like below? Keywords/separators are placed within []. Manager, Delhi [for] The Company Pvt Ltd. [from] Jan, 2009 [to] Jan, ...
6
votes
3answers
197 views

Construct a List from a series of expressions in Scala

When I try to build internal DSLs in Scala, I run into a common problem and I haven't been able to craft a solution. To make things look a bit more like a typical language, I'd like the syntax to ...
1
vote
1answer
150 views

Simple implicit conversions in Scala

I'm pretty new to scala and I really love it so far but I'm stuck with a really weird problem. I wanted to try implicit conversions by implementing D&D-style dice expressions. i.e. 2d12 "throw two ...
6
votes
3answers
446 views

Scala DSL: method chaining with parameterless methods

i am creating a small scala DSL and running into the following problem to which i dont really have a solution. A small conceptual example of what i want to achieve: (Compute write "hello" read ...
5
votes
2answers
353 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 ...
1
vote
1answer
214 views

scalaquery : Dynamic BatchInsert

The FirstExample in scalaquery-examples project provides an example of batch insert with the following Syntax: Coffees.insertAll( ("Colombian", 101, 7.99, 0, 0), ("French_Roast",49, 8.99, ...
5
votes
1answer
109 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: ...
1
vote
1answer
157 views

Can I execute a scala code file as a part of my code?

I woud like my application to execute external scripts written in a Scala-based DSL i've developed. That's why I need something like this to work: ... val a = evaluate("~/myextcode.scala") ... ...
-2
votes
1answer
199 views

Something like Ruby and Scala for a PHP developer? [closed]

First a brief story: once upon a time there was a Joe who was very happy with C, then came the OOP and C++ then the inevitable web-fuzz and, for him, PHP; been there for another quite a while and ...
3
votes
2answers
266 views

Could APL be implemented in Scala as a DSL?

There is a old computer language called APL. Could this be implemented in Scala as a DSL? http://en.wikipedia.org/wiki/APL_%28programming_language%29
6
votes
1answer
221 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 ...
9
votes
2answers
1k views

Compile and execute Scala code at runtime

Is is possible to compile and execute scala code as a string at runtime either in Scala or in Java? My idea is to build a DSL using Scala then let Java programmers use the DSL inside Java. I heard ...
3
votes
2answers
173 views

Scala compiler fails to infer type parameters

In order to create a DSL for my new Scala project I've written the following code: trait DocDB[O] { def searchFor[I] (docs: Iterable[I], queryStrategy: QueryStrategy[I, DocDB[_]]): ...
2
votes
2answers
379 views

Scala - omit parentheses from apply method for a DSL

I'm trying to create a DSL and running into a problem. I have these definitions: case class Var(name: String) case class Lam(v: Var, t: Var) val (a, b) = (Var("a"), Var("b")) I want to be able to ...
10
votes
3answers
428 views

method with angle brackets (<>)

Is it possible to have angle brackets in method names , e.g. : class Foo(ind1:Int,ind2:Int){...} var v = new Foo(1,2) v(1) = 3 //updates ind1 v<1> = 4 //updates ind2 The real situation is ...
1
vote
1answer
523 views

DSL to implement business rules for REST service routing and processing

I am hoping that Combinator parsers, (http://debasishg.blogspot.com/2008/04/external-dsls-made-easy-with-scala.html), will work for a design to process the routing rules for a REST service that is ...
2
votes
3answers
125 views

Can I create a tuple from a non-comma separated set of tokens in Scala?

I'm continuing my Stack-Overflow-Driven Programming of a testing DSL - thanks to all who have contributed so far! At the moment my DSL reads like this scenario("Incorrect password") { given("user ...
1
vote
2answers
206 views

How can I overload a Scala method by block type?

I'm still working on my ScalaTest FeatureSpec DSL. I'd like 3 variants of my given function. All take tokens: Any, and then either A. A block block: => Unit that is executed later given("user ...
7
votes
2answers
302 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", ...
2
votes
1answer
171 views

Auto-delegation to a val in a Scala method

I'm writing ScalaTest FeatureSpec's for a Wicket app. I have a wicketTester value, that I keep on having to call methods on, viz: scenario("No username and password") { val wicketTester = new ...
1
vote
1answer
308 views

Scala Interpreter for custom DSL leads to memory leaks?

At my current project we are planing to implement special DSL to allow end-user to do workflow customizations. We are considering several ways to do it and one of the them is to use Scala Interpreter ...
7
votes
3answers
1k views

Groovy vs Scala for internal DSL

I am going to create an internal DSL for JVM. And I see that Scala and Groovy are the best candidates for this task. I found that Groovy script is less verbose, uses BigDecimal by default, while Scala ...

1 2