Class: BSON::Code
Overview
Represents a code type, which is a wrapper around javascript code.
Constant Summary collapse
- BSON_TYPE =
A code is type 0x0D in the BSON spec.
13.chr.force_encoding(BINARY).freeze
Constants included from Encodable
Encodable::BSON_ADJUST, Encodable::PLACEHOLDER, Encodable::STRING_ADJUST
Instance Attribute Summary collapse
Class Method Summary collapse
-
.from_bson(bson) ⇒ TrueClass, FalseClass
Deserialize code from BSON.
Instance Method Summary collapse
-
#==(other) ⇒ true, false
Determine if this code object is equal to another object.
-
#as_json(*args) ⇒ Hash
Get the code as JSON hash data.
-
#initialize(javascript = "") ⇒ Code
constructor
Instantiate the new code.
-
#to_bson(encoded = ''.force_encoding(BINARY)) ⇒ String
Encode the javascript code.
Methods included from Encodable
#encode_binary_data_with_placeholder, #encode_with_placeholder_and_null
Methods included from JSON
Constructor Details
#initialize(javascript = "") ⇒ Code
Instantiate the new code.
71 72 73 |
# File 'lib/bson/code.rb', line 71 def initialize(javascript = "") @javascript = javascript end |
Instance Attribute Details
Class Method Details
.from_bson(bson) ⇒ TrueClass, FalseClass
Deserialize code from BSON.
100 101 102 |
# File 'lib/bson/code.rb', line 100 def self.from_bson(bson) new(bson.read(Int32.from_bson(bson)).from_bson_string.chop!) end |
Instance Method Details
#==(other) ⇒ true, false
Determine if this code object is equal to another object.
46 47 48 49 |
# File 'lib/bson/code.rb', line 46 def ==(other) return false unless other.is_a?(Code) javascript == other.javascript end |
#as_json(*args) ⇒ Hash
Get the code as JSON hash data.
59 60 61 |
# File 'lib/bson/code.rb', line 59 def as_json(*args) { "$code" => javascript } end |
#to_bson(encoded = ''.force_encoding(BINARY)) ⇒ String
Encode the javascript code.
85 86 87 88 89 |
# File 'lib/bson/code.rb', line 85 def to_bson(encoded = ''.force_encoding(BINARY)) encode_with_placeholder_and_null(STRING_ADJUST, encoded) do |encoded| javascript.to_bson_string(encoded) end end |