Tagged Questions
0
votes
1answer
45 views
Using Scala reflection in Scala macros
I'm trying to use Scala macros in order to generate some code, more specifically I would like the macro to generate a function that instantiates an abstract class. For example, if this is the abstract ...
1
vote
1answer
35 views
Is it possible to get the typeTag of a runtime instance?
Using scala 2.10, I am trying to instantiate a class from a string and I would like to get its typetag.
for example :
scala> def printClassName[Y: TypeTag](x: Y) = { println(typeTag[Y].tpe) }
...
3
votes
2answers
61 views
Get defined parameters for partial function
Say I have a partial function (similar to Akka's receive method for actors)
def receive: PartialFunction[Any, Unit] = {
case SomeCaseClass(params) => println("whatever")
}
Is there any way ...
3
votes
2answers
66 views
Scala : get mixin interfaces at runtime
I need to get all the interfaces at runtime from a given Class (all loaded in a ClassLoader).
For instance, if a class has been declared this way :
trait B
trait C
trait D
class A extends B with ...
1
vote
1answer
47 views
Using the new reflection API, how to find the primary constructor of a class?
You can get all the constructors of a class like this:
import scala.reflect.runtime.universe._
val ctor = typeOf[SomeClass].declaration(nme.CONSTRUCTOR).asTerm.alternatives
Is there a way to know ...
4
votes
1answer
62 views
Scala reflection: what are odd names like $read and $iw doing in the reified expression?
Here are some snippets from my Scala prompt. I import the reflection API and try reifying some expressions, as described in the docs here.
scala> import scala.reflect.runtime.{universe => ru}
...
1
vote
1answer
68 views
Scala reflection - why TypeTag and Type?
These two types/classes in the Scala reflection API seem to represent the same thing. Why are they two separate types?
scala.reflect.api.Universe.Type
scala.reflect.api.Universe.TypeTag
Link to ...
1
vote
1answer
63 views
Scala reflection on function parameter names
I have a class which takes a function
case class FunctionParser1Arg[T, U](func:(T => U))
def testFunc(name1:String):String = name1
val res = FunctionParser1Arg(testFunc)
I would like to know ...
3
votes
1answer
52 views
How Do I Call Snippets From Different Packages In Lift?
I am trying to call one of 2 snippet methods with the same name and same class, but these snippets are located in different packages. Here's the example code:
Snippet 1:
package v1.site.snippet
...
4
votes
1answer
94 views
Get the companion object instance of a inner modul with the Scala reflection API
I implemented the code mentioned in Get companion object instance with new Scala reflection API (code from here https://gist.github.com/xeno-by/4985929).
object Reflection {
def ...
2
votes
1answer
44 views
Get `Symbol`s of method parameters via reflection
I want to call a method on an object via reflection, where each parameter of the method should be set to a value specified its type. More specific: I have a Map[reflect.runtime.universe.Symbol,Any] ...
5
votes
1answer
65 views
How can I evaluate a lazy val using reflection?
Using the experimental Scala 2.10 reflection, when I try to call FieldMirror.get() on a field that is a lazy val, it returns null. Is there a way to evaluate the lazy val using reflection? The get() ...
2
votes
2answers
96 views
Why won't astyanax (java) recognize my @Id annotated values in my scala case class parameter list?
So here's my dilemma: I have a domain model with a bunch of case classes in scala such as User and Organization. Within my data access layer (dao, repository, etc) I am using astyanax(a java library ...
0
votes
1answer
66 views
Scala Generic Parameter Type passed to Java Generic container
Question: How I can pass Generic Type from Scala to Java so the next code in JavaContainer will not fail like this:
I'm instance of SomeClass
Exception in thread "main" java.lang.ClassCastException: ...
2
votes
1answer
112 views
Scala: cross (cartesian) product with multiple sources and heterogeneous types
I'm trying to construct multiple cross products of traversables of different (but each homogeneous) types. The desired return type is a traversable of a tuple with the type matching the types in the ...
2
votes
1answer
71 views
scala reflection can not work at this case
I declared a class:
trait TO {
@BeanProperty var id: String = _
@BeanProperty var age : Int = _
@BeanProperty var createdAt : Long = _
@BeanProperty var disable: Boolean = _
...
0
votes
0answers
74 views
Any way to properly type Scala classes that were generated at runtime with ASM?
Noob here, I'd like to extend the class, get a class literal, use it as a type parameter, or cast to it.
Currently I can instantiate my ASM generated class and invoke it's methods with reflection, ...
3
votes
2answers
112 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 ...
1
vote
1answer
50 views
How can I reify a Symbol in order to pass it into runtime?
Macro contexts in Scala come with two handy methods: reifyType and reifyTree which essentially generate code that, when executed at runtime, will return the Type or Tree being reified.
I wonder if ...
3
votes
0answers
107 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 ...
2
votes
2answers
67 views
How do you check if a runtime instance conforms to some type using the Scala 2.10 reflection API?
The following snippet returns true as expected:
import scala.reflect.runtime.universe._
typeOf[Seq[Int]] <:< typeOf[Traversable[Int]]
This snippet does not however:
val s = Seq[Int](1,2,3)
...
1
vote
1answer
44 views
How to reliably compare Symbols when using reflection or macros?
How can I reliably compare two Symbols for equality in scala macro or when using reflection? Is it guaranteed that when two Symbol objects represent the same symbol (the same class, the same local ...
3
votes
1answer
119 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
1answer
75 views
dynamical creating a new instance of a case class in scala
Given a reference to a case class companion object t and a sequence of parameter seq how can I invoke a new instance of the case class?
I can create a class when I type the number of the parameter by ...
3
votes
1answer
49 views
How to check if WeakTypeTag or Type represents concrete type?
How do I check if WeakTypeTag or Type represents concrete type? This would be especially useful in macros, where I could use it to raise compilation error when type given by the user is not concrete:
...
1
vote
1answer
69 views
How to call the object method (not class method) using reflection in scala
I'd like to call the object main method using reflection in scala. But it did not works, the following 2 lines of code will through exception that I could not create the object using reflection.
val ...
0
votes
1answer
30 views
Matching Type symbols in Scala
I've asked a couple of questions regarding reflection in Scala the last few days, because it still seems new to me.
The new one is actually two questions that are related :
How would you create a ...
0
votes
1answer
41 views
Could I measure an annotation generic type from annotated member in Scala?
Scala experts from StackOverflow.
On the sample code bellow I've reproduced an behavior I'm facing on a project I'm working on. I should be able to infer/measure the annotation "weapon" generic type ...
1
vote
3answers
83 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 ...
1
vote
1answer
68 views
Enumerate the fields of a subclass in Scala
Simple question about reflection in Scala :
How can I write a method fields that returns all the fields of a certain type, even in subclasses?
Is that even the right way to do it? How would you do ...
0
votes
2answers
92 views
Call Java method with alternatives from Scala
I am trying to use the put method of the ContentValues class in the Android API from Scala, but I can't figure out a way to make Scala narrow down the type of list elements. For example :
val a: ...
2
votes
3answers
105 views
How do I obtain ctor argument types via reflection in Scala 2.10.1
What I'm trying to do should be really simple. I think. I want to use reflection to determine the names and types of the arguments to a case class constructor. Below is a REPL interaction. You can ...
0
votes
0answers
51 views
Instantiate class with mixed trait using reflection
I want to create an instance of a class using reflection (the class has protected access and I want to test it, so I am using reflection to create an instance)
this is working fine:
val clazz = ...
7
votes
1answer
265 views
Using Scala reflection with Java reflection
I have a lot of code that has been using Java reflection to invoke arbitrary user-specified methods on Java objects, as part of a DSL.
However, a lot of those Java objects, in practice, are Scala ...
4
votes
2answers
181 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
138 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 ...
0
votes
0answers
64 views
Overloaded method and reflective calls
In the following REPL session:
scala> new Object { def foo = "bar" }
res0: Object{def foo: String} = $anon$1@131a24c
scala> res0.foo
<console>:9: warning: reflective access of structural ...
1
vote
1answer
49 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. ...
0
votes
1answer
105 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
76 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
0answers
67 views
List all case-classes in package in Scala with scala.reflect
Say, I have a next code:
package selap.tests.AbstractLexer
abstract class Token
case class Num(value:String) extends Token
case class BinOp(op:String) extends Token
case class Incr(op:String) ...
0
votes
1answer
63 views
Scala relfection, finding type parameters of subtypes
Now From Finding type parameters via reflection in Scala 2.10? , I can see how to get type arguments, however I would like to get them from a subclassed parameter type. For example I have
trait ...
0
votes
1answer
81 views
Enforcing overriden equals/hashCode of TypeParameters. classTag[T].runtimeClass resolves to Nothing / No ClassTag available
In a mixed Java/Scala environment, I have a parametrized class which requires its type parameters to override equals and hashCode properly. Thanks to this blog i coded up this method to check whether ...
1
vote
1answer
76 views
Primitive object size in java/scala and 'as<SomePrimitive>Buffer() methods invocation
My objective is generalize shapes creation from Android OpenGL ES tutorial here: http://developer.android.com/training/graphics/opengl/shapes.html
It looks like this right now:
val squareCoords = ...
0
votes
1answer
87 views
Get Scala Type for a java.lang.Class[T] in Scala 2.10
I was looking at the scala reflection overview and I'm wondering if it is possible to use a java.lang.Class<T> as a Type in Scala 2.10.
import scala.reflect.runtime.{ universe => ru }
class ...
1
vote
0answers
97 views
Is it possible to instantiate an instance of class, passed as parameter to generic trait in Scala?
I have the following code, written in Scala 2.10.0:
trait A[T <: B] {
self : { def foo() } =>
val action : ()=>Unit = this.foo _
//wanna make default for this
val construction : ...
1
vote
1answer
138 views
Scala 2.10 reflection: constructor of case class inside a class
I've used the accepted answer of this question to build little helper class to construct case classes from arrays of values:
construct case class from collection of parameters
As mentioned in the ...
3
votes
1answer
81 views
How to get a reference to an object by its full name in Scala?
Let's say we have
package MyApp.foo
object Bar {
def apply(x: Int) = x + 1
}
How to increase a value by means of this object using its full name ("MyApp.foo.Bar") string?
This functionality ...
1
vote
1answer
78 views
Convert Class[_] to universe.Type/Symbol
I'm trying to list all classes from a package and extract some metadata information through the new reflection api(2.10).
I may be wrong, but seems that there is no support to list classes from a ...
0
votes
0answers
66 views
reflecting scala field annotations idiomatically
given (simplified) this code in Scala 2.10:
case class Foo(
@Size(min=32, max=32) @NotEmpty @Pattern(regexp="^[a-zA-Z0-9]{1,5}\\.[a-zA-Z0-9]{1,3}$")
tmfItemId: String,
@Size(max=32) @NotEmpty
...