# BSON support ![Face](logotype/logo_32x32.png) [![Build Status](https://travis-ci.org/MARTIMM/BSON.svg?branch=master)](https://travis-ci.org/MARTIMM/BSON) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/MARTIMM/bson?branch=master&passingText=Windows%20-%20OK&failingText=Windows%20-%20FAIL&pendingText=Windows%20-%20pending&svg=true)](https://ci.appveyor.com/project/MARTIMM/bson/branch/master) [![License](http://martimm.github.io/label/License-label.svg)](http://www.perlfoundation.org/artistic_license_2_0) Implements [BSON specification][spec]. ## Installing BSON Use zef to install the package like so. ``` $ zef install BSON ``` When installing MongoDB, BSON will be installed automatically as a dependency. ## Version PERL 6 and MoarVM This module is tested using the latest perl6 version on MoarVM ## Synopsis A BSON::Document class has been developed. This structure will keep the order and because of that there is no need for cumbersome operations. At the moment it is much slower than the hashed variant even with the encoding happening in the background and parallel. ``` use BSON::Document; my BSON::Javascript $js .= new(:javascript('function(x){return x;}')); my BSON::Javascript $js-scope .= new( :javascript('function(x){return x;}'), :scope(BSON::Document.new: (nn => 10, a1 => 2)) ); my BSON::Binary $bin .= new(:data(Buf,new(... some binary data ...)); my BSON::Regex $rex .= new( :regex('abc|def'), :options); my BSON::Document $d .= new: ( 'a number' => 10, 'some text' => 'bla die bla'); $d = BSON::ObjectId.new; $d = $js; $d = $js-scope; $d = DateTime.now; $d = $bin; $d = $rex; $d = Any; $d = [ 10, 'abc', 345]; $d = a1 => 10, bb => 11; $d = q => 255; my Buf $enc-doc = $d.encode; my BSON::Document $new-doc .= new; $new-doc.decode($enc-doc); ``` ## Documentation BSON/Document.pod * [BSON::Binary][Binary] * [BSON::Document][Document] * [Release notes][notes] * [Bugs, todo][todo] ## Authors Original creator of the modules is Pawel Pabian (2011-2015, v0.3)(bbkr on github). Current maintainer Marcel Timmerman (2015-present)(MARTIMM on github). ## Contributors Dan Zwell (lefth on github) [spec]: http://bsonspec.org/ [Binary]: https://github.com/MARTIMM/BSON/blob/master/doc/Binary.pdf [Document]: https://github.com/MARTIMM/BSON/blob/master/doc/Document.pdf [notes]: https://github.com/MARTIMM/BSON/blob/master/doc/CHANGES.md [todo]: https://github.com/MARTIMM/BSON/blob/master/doc/TODO.md