JSON Stream is a efficient universal serialization framework for JSON and BSON.
- Serializes in-memory dynamical-typed objects to JSON texts or BSON binary streams, and vice versa.
- Serializes in-memory schematic statically-typed class instances to JSON texts or BSON binary streams, and vice versa.
- Converts JSON texts to BSON binaries, and vice versa.
- Creates incoming and outgoing proxy for RPC interfaces.
- Generates code to achieve the above goals in any of these programming languages:
- Haxe
- Java
- C++
- C#
- PHP
- JavaScript
- ActionScript3 / Flash
- Python
- Neko
JSON Stream is written in Haxe, which is able to compile to many other programming language. To use JSON Stream in the target languages, you need these steps:
- Define your statical entity classes in Haxe.
- Define deserializer and serializer for your entity classes in Haxe.
- Compile your Haxe definitions and JSON Stream library to your target language.
- Use JSON Stream API in your target language.
jsonStream.JsonStream
is the universal intermedia type for most of conversions. It is a hierarchical iterator created from an object, an input stream or a string. And then, the JsonStream
is able to produce another object, output stream, or string.
jsonStream.RawJson
is the in-memory type that represents dynamically-typed JSON/BSON objects.
// Example.hx
var data = new RawJson(
{
message: "Hello, World!",
myArray: [ 1, 3, 5 ],
});
// Creates a JsonStream from an in-memory object.
var jsonStream = JsonSerializer.serializeRaw(data);
// Produces a string from a JsonStream
var jsonString = PrettyTextPrinter.toString(jsonStream);
trace(jsonString);
// Creates another JsonStream from the in-memory object.
var jsonStream2 = JsonSerializer.serializeRaw(data);
// Produces a another in-memory object from a JsonStream
var duplicatedData = JsonDeserializer.deserializeRaw(jsonStream2);
trace(duplicatedData.message);
The above example may be written in languages other than Haxe, too.
JsonStream
s are able to convert from / to statically-typed class instances. The conversion functions can be generated from jsonStream.JsonDeserializerGenerator
and jsonStream.JsonSerializerGenerator
.
// MyModule.hx
@:final class MyClass
{
public function new() {}
public var foo:Int;
public var bar:String;
}
// Conversions.hx
using jsonStream.Plugins;
@:build(jsonStream.JsonDeserializer.generateDeserializer([ "MyModule" ]))
class MyDeserializer {}
@:build(jsonStream.JsonSerializer.generateSerializer([ "MyModule" ]))
class MySerializer {}
// Sample.hx
import jsonStream.io.PrettyTextPrinter;
import jsonStream.io.TextParser;
import jsonStream.JsonDeserializer;
import jsonStream.JsonSerializer;
using jsonStream.Plugins;
using Conversions;
class Sample
{
public static function main()
{
var jsonText = "{ \"foo\": 1, \"bar\": \"Hello, World!\" }";
// Creates a JsonStream from text.
var jsonStream = TextParser.parseString(jsonText);
// Deserialize a MyClass from a JsonStream
var myClass:MyModule.MyClass = JsonDeserializer.deserialize(jsonStream);
// Output: Hello, World!
trace(myClass.bar);
// Serialize a MyClass to a JsonStream
var jsonStream2 = JsonSerializer.serialize(myClass);
// Convert a JsonStream to string.
var jsonText2 = PrettyTextPrinter.toString(jsonStream2);
/*
Output:
{
"foo": 1,
"bar": "Hello, World!"
}
*/
trace(jsonText2);
}
}
JSON Stream is available on both haxelib and maven central repository.
You can set-up the dependency to JSON Stream with either sbt-haxe or manually managed build.hxml
.
For sbt-haxe managed projects, add the following settings into your build.sbt
for (c <- AllHaxeConfigurations) yield {
libraryDependencies += "com.thoughtworks.microbuilder" % "json-stream-core" % "3.0.0" % c classifier c.name
}
For manually managed projects, add the following options into your build.hxml
:
-lib json-stream-core