PageRenderTime 44ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/README.md

https://github.com/sijuv/protobuf-codec
Markdown | 51 lines | 30 code | 21 blank | 0 comment | 0 complexity | a9348863bbd25d236085d4f9d2ef6011 MD5 | raw file
Possible License(s): Apache-2.0
  1. # Protobuf Codec
  2. Protobuf-codec provides codec for protobuf and other data formats like xml/json. It is fast and relies on proven frameworks like [jackson](http://jackson.codehaus.org/)
  3. for json and [woodstox]( http://woodstox.codehaus.org/) for xml for parsing.
  4. This library is listed under the protobuf third party addons page ( http://code.google.com/p/protobuf/wiki/ThirdPartyAddOns )
  5. as "Another JSON encoder/decoder for Java"
  6. [Project Wiki](https://github.com/sijuv/protobuf-codec/wiki)
  7. ## UPDATES:
  8. 20/Aug/11 : Disted version 1.2
  9. - Added support for text codec (courtesy aantono)
  10. - Support stripping of underscores and field name replacements for json (courtesy aantono)
  11. 03/Jan/11 : Disted version 1.1
  12. - Base64 encode unknownfields instead of hex
  13. - Added support for byte protobuf type, ByteString is written out as a base64 encoded
  14. string.
  15. 08/Dec : Disted version 1.0
  16. - Added support for xml
  17. - Added support for unknown fields
  18. - Split into a maven multi module project- core,xml and json
  19. - Removed com.google from package declaration.
  20. 06/Dec :
  21. - Mavenized and disted verion 0.0.1
  22. ## BUILDING
  23. - Needs Maven
  24. - Needs [protoc](http://code.google.com/apis/protocolbuffers/docs/proto.html#generating) to run test cases.
  25. ## DEPENDENCIES :
  26. - Jackson for json parsing.
  27. - woodstox for xml parsing
  28. - commons-codec for base64 encode/decode
  29. ## BUGS & ISSUES
  30. Raise bugs/issues on [git] (https://github.com/sijuv/protobuf-codec/issues)