deaktator / pops   0.0.1

MIT License GitHub

Makes working generically with protocol buffers a simpler (and faster) experience.

Scala versions: 2.11 2.10

Pops (Protocol Buffer Ops) makes working generically with protocol buffers a simpler (and faster) experience.

Protocol buffers (PB) make use of code generation to provide, among other things, static methods. These methods can't adhere to an interface in Java. Pops eases this burden by providing type classes and a way to easily create typed accessor functions to extract data from com.google.protobuf.GeneratedMessages.

The code is designed to use compile-time reflection (macros) and more specifically implicit materialization to avoid the cost of runtime reflection present in most solutions. There are runtime variant available for those cases when absolutely necessary, for instance when creating a Class object from a Class.forName call. However, if you know the types at compile-time, the macro-based versions are considerably faster.

Classes of interest