Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kohanyirobert/ebson
Extensible BSON encoder/decoder library written in Java with pluggable Java-to-BSON type mappings.
https://github.com/kohanyirobert/ebson
Last synced: 11 days ago
JSON representation
Extensible BSON encoder/decoder library written in Java with pluggable Java-to-BSON type mappings.
- Host: GitHub
- URL: https://github.com/kohanyirobert/ebson
- Owner: kohanyirobert
- License: mit
- Created: 2012-01-22T08:43:51.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2023-06-16T07:34:43.000Z (over 1 year ago)
- Last Synced: 2024-08-02T09:29:03.689Z (3 months ago)
- Language: Java
- Homepage:
- Size: 71.3 KB
- Stars: 63
- Watchers: 14
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ebson
*ebson* is an extensible [BSON][] encoder/decoder library written in Java. The
library is extensible in the sense that the mappings between Java and BSON types
are configurable and the logic to serialize custom Java types is pluggable. Its
single dependency is the [Guava libraries][] by Google.## License
Released under the permissive [MIT License][].## Author
[Kohányi Róbert][].## Download
Add the library as a dependency in your project's *pom.xml* like this.```xml
com.github.kohanyirobert
ebson
...```
Releases and snapshots are deployed to [Sonatype's][] [OSS repository][] (and
synced to the [Central Maven Repository][] from there). To download JARs from
Sonatype's repository include the following repository tag inside your Maven
installation's *settings.xml* or your project's *pom.xml*.```xml
sonatype-oss
https://oss.sonatype.org/content/groups/public```
## Build
As the project is managed with [Maven][] you simply clone it and issue *mvn
install* or *mvn package* inside the clone's directory.```
git clone git://github.com/kohanyirobert/ebson.git
cd ebson/
mvn package
# and/or
mvn install
```## Usage
### Serialization
```java
// create documents to serialize
BsonDocument document = BsonDocuments.of("key", new Date());// grab a little-endian byte buffer
ByteBuffer buffer = ByteBuffer.allocate(32).order(ByteOrder.LITTLE_ENDIAN);// use the documents utility class to write the document into the buffer
BsonDocuments.writeTo(buffer, document);// use the serialized data
buffer.flip();
```### Deserialization
```java
// given the previous buffer
BsonDocument newDocument = BsonDocuments.readFrom(buffer);// prints true
System.out.println(document.equals(newDocument));
```### Extensibility
```java
// to use joda-time's date-time instead of java's date supply
// a predicate (to test whether an input class is compatible with
// date-time or not) for the appropriate bson type
BsonObject.UTC_DATE_TIME.predicate(new Predicate>() {
@Override public boolean apply(Class> input) {
return input == null ? false : DateTime.class.isAssignableFrom(input);
}
});// register a writer with the same bson type which is
// able to serialize date-times into byte buffers
BsonObject.UTC_DATE_TIME.writer(new BsonWriter() {
@Override public void writeTo(ByteBuffer buffer, Object reference) {
buffer.putLong(((DateTime) reference).getMillis());
}
});// finally register a reader to do all this ass backwards
BsonObject.UTC_DATE_TIME.reader(new BsonReader() {
@Override public Object readFrom(ByteBuffer buffer) {
return new DateTime(buffer.getLong());
}
});
```[BSON]: http://bsonspec.org
[Guava libraries]: http://code.google.com/p/guava-libraries
[Kohányi Róbert]: http://kohanyirobert.github.com
[MIT License]: https://raw.github.com/kohanyirobert/ebson/master/LICENSE.txt
[Sonatype's]: http://sonatype.com
[OSS repository]: https://oss.sonatype.org
[Central Maven Repository]: http://search.maven.org
[Maven]: http://maven.apache.org