Tagged Questions
0
votes
1answer
28 views
Scala URLClassLoader ClassNotFoundException
I need to load some class at runtime out of a jar file, but every time I try, I get a ClassNotFoundException. I created the jar file using jar command. In addition, person class is generated from the ...
3
votes
1answer
364 views
Protocol Buffer Messages via Akka IO and Sockets
I came across this blog post, which I found awesome and enlightening, showing how to do fixed-length framing of string messages sent to an Akka IO socket server. I have been working with an open ...
2
votes
0answers
141 views
How to create a sbt plugin that reuses includeFilter key?
I am creating a protobuf plugin for Sbt.
I created a new TaskKey named protoc to convert .proto files to .java files.
val protoc = TaskKey[Seq[File]]("protoc", "Convert proto to java.")
I also ...
4
votes
1answer
236 views
How Can I Return Protocol Buffers Directly in Play! 2.0 Framework?
Play lets you return a number of different types directly in your controllers, such as JsValue or XML along with plain text. I would like to extend this to accept protocol buffers, so I can write:
...
5
votes
1answer
1k views
Scala Case Classes vs. Protocol Buffers with Akka over the network
A bit of context first: I am writing a client/server game in Scala (first person shooter-like), where the client needs to send movement intentions to the server a few dozen times per second and the ...
3
votes
1answer
276 views
Is there any community effort towards scala googleprotobuf “bindings”?
Subj. :)
Google Protocol Buffer looks like really convenient serialization facilities. However generated java classes are suck not so good:
no Option[]s
no closures
too much copying
etc.
i.e. it ...
4
votes
1answer
176 views
Java/Scala resource consumption and load
I am developing a web application in Scala. Its a simple application which will take data on a port from clients (JSON or ProtoBufs) and do some computation using a database server and then reply the ...
2
votes
1answer
468 views
Getting a HTTP POST binary payload to a byte array in Scala
I have a socket which will persist for long. Client will keep streaming data requests to my server app through the socket. Request is a POST with a binary payload which needs to be copied to a byte ...
1
vote
3answers
2k views
Problems using protobufs with java and scala
I have a file xxx.proto. I downloaded the protobuf compiler and installed it. Then I issued this command
protoc --java_out=./ xxx.proto
and it generated my xxx.java
Now I want to compile this ...
2
votes
1answer
221 views
Java protobuf in Scala
I need to write an application server in scala which takes Protobufs from HTTP POST payloads and process it.
Is it possible to compile proto files to Java files, compile them into Java bytecode and ...
1
vote
0answers
298 views
How to convert a Java/Scala object to a Protocol Buffers message?
I'm trying to convert a Java/Scala object into a Protocol Buffers message.
My object is called IDSNumber and it has a doubleValue method which returns a java.lang.Double. I'm trying to get it to be ...
1
vote
0answers
156 views
Akka error post.request.getReader
I use akka-mist and protobuf. Language Scala.
Protobuf error
Test Sender:
val (post, writer) = RestPostMock(ProtoBufPack.toByteString)
actor ? post
RestPostMock:
object RestPostMock extends ...
12
votes
4answers
3k views
Scala protocol buffers compiler
I was thinking about writing a code generator to generate scala from google protobuf definitions file. The reason I see it valuable is the java bindings are too Java-ish and one could do much better ...