Tagged Questions
0
votes
1answer
33 views
How to prevent debugger from stepping into Object class code in Eclipse when developing with Scala?
In my file file.scala, I have the following line:
`file.scala`
> shapes.foreach({ shape =>
...
When I start to debug it using Eclipse 3.7, scala plug-in version 2.1.0mp3, I press ...
0
votes
1answer
82 views
Scala Compiler crash: What's wrong here?
I was starting to write a unit test for an X500PrincipalBuilder class in Scala. Here's my test code:
import org.junit.runner.RunWith
import org.scalatest.WordSpec
import ...
1
vote
2answers
80 views
Scala 2.10 - Octal escape is deprecated - how to do octal idiomatically now?
See
https://issues.scala-lang.org/browse/SI-5205
and
https://github.com/scala/scala-dist/pull/20
Octal escape value leading 0 has been deprecated from scala and I don't see an idiomatic alternative.
...
2
votes
4answers
69 views
How can I use library which is built using 2.9.2 in project which is built using 2.10.1?
How can I use library build against 2.9.2 in project which is built using 2.10.1 ?
In particular I'm trying to use salat and get following exception
sbt.ResolveException: unresolved dependency: ...
1
vote
1answer
58 views
Did Scala case class annotations change in 2.10?
In Scala 2.9 I would annotate a case class using the import scala.annotation.target.field:
case class UserAuth(
@(JsonProperty@field)("email")
val email: String,
...
0
votes
1answer
26 views
Field 'age2' can only be read from 'application/x-www-form-urlencoded' form content
Could you guys tell me why following form of extraction works for both multipart/form-data and x-www-form-urlencoded requests
formFields("firstName"?, "age2"?, "sex", "vip"?) {
(firstName : ...
0
votes
1answer
38 views
How do you deserialize immutable collection using Kryo?
How do you deserialize immutable collection using Kryo ? Do I need to register something in addition to what I've done ?
Here is my sample code
import com.esotericsoftware.kryo.Kryo
import ...
0
votes
1answer
89 views
Scala deserialization: class not found
I'm trying to understand the following issue that occurs when trying to serialize/deserialize a very simple data structure:
case class SimpleClass(i: Int)
object SerializationDebug {
def ...
0
votes
1answer
70 views
Splitting string using Regex and pattern matching throws an exception
Could you guys please tell me what I'm doing incorrectly trying to extract using regex pattern-matching? I have following code
val Pattern = "=".r
val Pattern(key, value) = "key=value"
And I get ...
2
votes
2answers
115 views
How do you write shortened version of function literal?
Could you please explain to me how to write shortened version of function literal ?
I'm going through this Spray tutorial in which following code
val route: Route = { ctx => ctx.complete("yeah") ...
1
vote
0answers
47 views
ScalaMock 3. Mocking methods with function parameter
I would like to mock methods with a function parameter and a function parameter in combination with curried paramters like:
trait Secured {
def IsAuthenticated(f: AuthenticatedData => ...
1
vote
1answer
71 views
traits with immutable paramiters in scala
I want to make the following example so that Collar is immutable
trait Collar{
var text:String="";
}
class dog(val name:String){
def bark()= ...
}
val snoopy = new ...
0
votes
1answer
41 views
extending scala collections for a specific member type
I want to do something like
class Pack extends collection.immutable.List[Dog]{
def pullSled() = //...
}
But the Scala compiler tells me
illegal inheritance from sealed class List
This would be ...
1
vote
1answer
45 views
How to fix broken unit testing after upgrading Typesafe Stack?
I just upgraded to Typesafe IDE for Scala 2.10.1 (I had been using 2.9.something). Scala works, but unit testing with org.scalatest no longer works. I get
java.lang.NoClassDefFoundError: ...
2
votes
1answer
71 views
Working with collections of mixed complex Java generics in Scala 2.10
In the company I work for we get many benefits from a (Java) pattern that can be summarized as follows:
There are "things" that we can get by their special/smart "ids". Each "thing" knows its id, and ...
3
votes
1answer
80 views
Scala 2.10, Double.isNaN, and boxing
In Scala 2.10, is someDouble.isNaN expected to box? Running my code calling .isNaN through a decompiler, I still see telltale calls to double2Double in my code. Given the new AnyVal work in 2.10, I'd ...
2
votes
1answer
133 views
Scala and Java interop. of Future
In this problem I have to call a third-party Java library that expects a java.util.concurrent.Future with a result from a Scala routine returning a scala.concurrent.Future as for example.
def ...
3
votes
2answers
106 views
Scala 2.10 reflection, how do I extract the field values from a case class
How can I extract the field values from a case class in scala using the new reflection model in scala 2.10?
For example, using the below doesn't pull out the field methods
def ...
0
votes
1answer
81 views
How can I use Scala2.10+Play2.1+Jerkson?
It seems Jerkson is no more available within Play2.1 (Scala 2.10) and I cannot find a solution on the Internet.
3
votes
0answers
98 views
Strange behavior of toolbox compilation when referencing an inner static java class
Supposed I have the following java class:
package com.test;
public class Outer {
public static class Inner { public static final String VAL = "Inner"; }
}
I can reference the VAL constant from ...
1
vote
1answer
106 views
How do I throttle messages in Akka (2.1.2)?
Could you guys please show example of throttling messages in Akka ?
Here is my code
object Program {
def main(args: Array[String]) {
val system = ActorSystem()
val actor: ActorRef = ...
3
votes
1answer
117 views
How to get Option[T] field type on Android in 2.10.1?
Code like this:
import scala.reflect.runtime.{universe => ru, currentMirror => cm}
import ru._
def test[T:TypeTag](obj: T) {
for (c <- typeOf[T].declarations; if ...
3
votes
2answers
118 views
Does Scala have a 'unique list' type?
I'm looking for something like the immutable SortedSet, except I want elements to be ordered in the sequence they were passed into the constructor.
UniqueList(4,2,3,1,1) // Throws exception
...
1
vote
1answer
169 views
Json serialization in Scala 2.10
Before Play 2.1 and Scala 2.10 I used Jerkson.
Unfortunatly there is no officially released Jerkson version compatible with Scala 2.10 (yet).
I'm since using Jackson with Scala module but I don't ...
1
vote
0answers
56 views
Importing members in scala 2.10
In Scala 2.9.x I was used to the following syntax:
class B(currencies: Seq[Currency])(implicit c:C) extends
CSomething(c){
import c._
// def mystuff = call() // in fact this is c.call()
}
This ...
1
vote
3answers
80 views
Can't get inherited vals with Scala reflection
I'm using Scala 2.10.1 and I'm trying the define a method which will retrieve all the vals (including the inherited ones) from an object.
I have the following:
import scala.reflect.runtime.{universe ...
3
votes
1answer
84 views
Why must type parameter must be defined in Scala 2.10
I have the following case class:
case class Alert[T <: Transport](destination: Destination[T], message: Message[T])
In Scala 2.9.2, the following method signature would compile fine:
def ...
1
vote
0answers
66 views
Compiler bug? java.lang.ClassCastException: scala.collection.mutable.WrappedArray$ofRef cannot be cast to java.lang.Integer
Scratching my head over a weird runtime error:
// File: build.sbt
scalaVersion := "2.10.1"
// File: src/main/scala/bug/Bug.scala
package bug
class Foo(val args: Any*)
case class Bar(id: Int) ...
0
votes
0answers
42 views
“Bridge generated for member method … clashes with definition of the member itself.”
While working on scala-pipes, I was presented with the following error message, replicated nine times in different places in the code:
[error] ...
4
votes
2answers
176 views
Getting type information inside scala repl via IMain
Intent
I am trying to add support for :kind command to scala repl. Thanks to Eugene Burmako, I was able to get a working prototype. Though it only works with fully qualified names and fails to ...
1
vote
1answer
136 views
Parse a string containing code, return a Type
I want to parse a piece of scala code, contained in a String and get the resulting reflect.runtime.universe.Type of that expression (String => Type). I've tried:
scala> import ...
3
votes
1answer
184 views
How to get more information about 'feature' flag warning?
When compiling an application with Play2, sometimes these kind of message appears on my terminal :
[info] Compiling 1 Scala source to ~/target/scala-2.10/classes...
[warn] there were 1 feature ...
1
vote
1answer
48 views
scalap detection of value classes
I'm using scalap to pick apart information about Scala classes. Works fine for case classes, but I want to see if a class is a value class. So far I haven't found anything that will tell me that. ...
8
votes
2answers
180 views
How to distinguish compiler-inferred implicit conversion from explicitly invoked one?
Let's imagine passing these two equivalent expressions to a Scala macro:
with compiler-inferred implicit conversion: 1+"foo"
with explicitly invoked implicit conversion: any2stringadd(1)+"foo"
Is ...
1
vote
5answers
182 views
Flatten Scala Try
Is there a simple way to flatten a collection of try's to give either a success of the try values, or just the failure?
For example:
def map(l:List[Int]) = l map {
case 4 => Failure(new ...
4
votes
1answer
130 views
Manifest[T].erasure is deprecated in 2.10, what should I use now?
I have the following code:
object Log {
def get[T](implicit manifest : Manifest[T] ) = {
LoggerFactory.getLogger( manifest.erasure.getName )
}
def getByName( name : String ) = {
...
1
vote
1answer
58 views
How to make scaladoc show default parameter values?
I have many methods like
def foo(..., ..., runFinalizer: Boolean = true)
(implicit finalizer: Finalizer): Result = ...
But when I run scaladoc (using sbt), it doesn't document that ...
1
vote
1answer
69 views
Lift JSON LINQ Like Dynamic Extraction Pattern
I am attempting to perform an XPath based extraction using Lift JSON except that the xpath pattern of extraction is determined during runtime
To illustrate, I'd like to convert string "a.b.c.d" to ...
8
votes
2answers
278 views
Scala 2.10 compiler takes 10x longer after first time in SBT
I'm updating some code from 2.9.1 to 2.10.0 (and I tried 2.10.1 with the same results), using SBT 0.12.1 in both cases.
When I run sbt clean compile on the command line, they both complete after ...
10
votes
1answer
112 views
How to disambiguate links to methods in scaladoc?
I'm documenting a Scala class with overloaded methods. How can I distinguish them when referring to them in scaladoc comments? For example, if I have
/**
* The most important method is [[Doc.foo]].
...
3
votes
1answer
97 views
How do I format a string with string interpolation in Scala as a fixed width string?
I'm interfacing with a really old system and the file I need to generate needs a field that is a formed from a string but needs to be exactly 15 in width.
I want something like this:
val companyName ...
4
votes
1answer
177 views
Is it possible to access the symbol table in a macro?
For example, to get all values, and their types, accessible at the macro's call site?
Or at least just the values from the current class? E.g.:
class A {
val v1 = 10
var v2 = "2"
def m {
...
0
votes
1answer
94 views
Scala reflection AST syntax
I'm attempting to manually-generate ASTs using the reflection API, using showRaw to give me some hints on the required syntax. This code:
object myfn extends Function2[ Double, Double, Double ] {
...
1
vote
0answers
73 views
Manual AST generation in Scala 2.10
In a response to:
Generating a class from string and instantiating it in Scala 2.10
@EugeneBurmako states:
"The example uses manual AST assembly, but it's possible to write a function that parses a ...
0
votes
1answer
117 views
Scala 2.10.1 and specialization (can't get it working right)
Sorry for asking second time about specialization, but I haven't good understanding of what the heck is going on yet...
So, I have one project (Gomoku game with AI), and I decided to use my own simple ...
8
votes
1answer
233 views
String interpolation and macro: how to get the StringContext and expression locations
I'm trying to implement a custom string interpolation method with a macro and I need some guidance on using the API.
Here is what I want to do:
/** expected
* LocatedPieces(List(("\nHello ", ...
0
votes
2answers
170 views
Scala Map Transformation
Can someone recommend a functional way to transform the map specified below from
Map("host.config.autoStart.powerInfo[1].startOrder" -> -1,
"host.config.autoStart.powerInfo[1].startAction" ...
2
votes
1answer
105 views
Why doesn't Scala's implicit class work when one of the type parameters should be Nothing?
Update: I modified the example so that can be compiled and tested.
I have an implicit class that defines an enrichment method:
case class Pipe[-I,+O,+R](f: I => (O, R));
object Pipe {
// The ...
6
votes
1answer
93 views
Strange error with higher-kinded types in scala 2.10.0 (works with scala 2.9.2)
This code compiles with Scala 2.9.2:
trait HK {
type Rep[A]
def unzip1[A, B, C[_]](ps: Rep[C[(A, B)]]): (Rep[C[A]], Rep[C[B]])
def doUnzip1[A, B](ps: Rep[List[(A, B)]]) = unzip1(ps)
}
But ...
1
vote
2answers
210 views
Running Scala^Z3 with Scala 2.10
I installed Scala^Z3 on my Mac OSX (Mountain Lion, JDK 7, Scala 2.10, Z3 4.3) successfully (following this: http://lara.epfl.ch/w/ScalaZ3). Everything went fine except that I cannot run any example ...
