Class: BSON::BSON_JAVA
- Inherits:
-
Object
- Object
- BSON::BSON_JAVA
- Defined in:
- lib/bson/bson_java.rb
Class Method Summary collapse
- .deserialize(buf) ⇒ Object
- .max_bson_size ⇒ Object
-
.serialize(obj, check_keys = false, move_id = false, max_bson_size = BSON::DEFAULT_MAX_BSON_SIZE) ⇒ Object
TODO: Pool or cache instances of RubyBSONEncoder so that we don’t create a new one on each call to #serialize.
- .update_max_bson_size(connection) ⇒ Object
Class Method Details
.deserialize(buf) ⇒ Object
13 14 15 16 17 18 |
# File 'lib/bson/bson_java.rb', line 13 def self.deserialize(buf) dec = Java::OrgJbson::RubyBSONDecoder.new callback = Java::OrgJbson::RubyBSONCallback.new(JRuby.runtime) dec.decode(buf.to_s.to_java_bytes, callback) callback.get end |
.max_bson_size ⇒ Object
20 21 22 23 |
# File 'lib/bson/bson_java.rb', line 20 def self.max_bson_size warn "BSON::BSON_CODER.max_bson_size is deprecated and will be removed in v2.0." Java::OrgJbson::RubyBSONEncoder.max_bson_size(self) end |
.serialize(obj, check_keys = false, move_id = false, max_bson_size = BSON::DEFAULT_MAX_BSON_SIZE) ⇒ Object
TODO: Pool or cache instances of RubyBSONEncoder so that we don’t create a new one on each call to #serialize.
7 8 9 10 11 |
# File 'lib/bson/bson_java.rb', line 7 def self.serialize(obj, check_keys=false, move_id=false, max_bson_size=BSON::DEFAULT_MAX_BSON_SIZE) raise InvalidDocument, "BSON_JAVA.serialize takes a Hash" unless obj.is_a?(Hash) enc = Java::OrgJbson::RubyBSONEncoder.new(JRuby.runtime, check_keys, move_id, max_bson_size) ByteBuffer.new(enc.encode(obj)) end |
.update_max_bson_size(connection) ⇒ Object
25 26 27 28 |
# File 'lib/bson/bson_java.rb', line 25 def self.update_max_bson_size(connection) warn "BSON::BSON_CODER.update_max_bson_size is deprecated and now a no-op. It will be removed in v2.0." Java::OrgJbson::RubyBSONEncoder.update_max_bson_size(self, connection) end |