Parent

Included Modules

BSON::CodeWithScope

Represents a code with scope, which is a wrapper around javascript code with variable scope provided.

@see bsonspec.org/#/specification

@since 2.0.0

Constants

BSON_TYPE

A code with scope is type 0x0F in the BSON spec.

@since 2.0.0

Attributes

javascript[R]

@!attribute javascript

@return [ String ] The javascript code.
@since 2.0.0

@!attribute scope

@return [ Hash ] The variable scope.
@since 2.0.0
scope[R]

@!attribute javascript

@return [ String ] The javascript code.
@since 2.0.0

@!attribute scope

@return [ Hash ] The variable scope.
@since 2.0.0

Public Class Methods

from_bson(bson) click to toggle source

Deserialize a code with scope from BSON.

@param [ BSON ] bson The encoded code with scope.

@return [ TrueClass, FalseClass ] The decoded code with scope.

@see bsonspec.org/#/specification

@since 2.0.0

# File lib/bson/code_with_scope.rb, line 110
def self.from_bson(bson)
  bson.read(4) # Throw away the total length.
  new(bson.read(Int32.from_bson(bson)).from_bson_string.chop!, ::Hash.from_bson(bson))
end
new(javascript = "", scope = {}) click to toggle source

Instantiate the new code with scope.

@example Instantiate the code with scope.

BSON::CodeWithScope.new("this.value = name", name: "sid")

@param [ String ] javascript The javascript code. @param [ Hash ] scope The variable scope.

@since 2.0.0

# File lib/bson/code_with_scope.rb, line 76
def initialize(javascript = "", scope = {})
  @javascript = javascript
  @scope = scope
end

Public Instance Methods

==(other) click to toggle source

Determine if this code with scope object is equal to another object.

@example Check the code with scope equality.

code_with_scope == other

@param [ Object ] other The object to compare against.

@return [ true, false ] If the objects are equal.

@since 2.0.0

# File lib/bson/code_with_scope.rb, line 50
def ==(other)
  return false unless other.is_a?(CodeWithScope)
  javascript == other.javascript && scope == other.scope
end
as_json(*args) click to toggle source

Get the code with scope as JSON hash data.

@example Get the code with scope as a JSON hash.

code_with_scope.as_json

@return [ Hash ] The code with scope as a JSON hash.

@since 2.0.0

# File lib/bson/code_with_scope.rb, line 63
def as_json(*args)
  { "$code" => javascript, "$scope" => scope }
end
to_bson(encoded = ''.force_encoding(BINARY)) click to toggle source

Encode the javascript code with scope.

@example Encode the code with scope.

code_with_scope.to_bson

@return [ String ] The encoded string.

@see bsonspec.org/#/specification

@since 2.0.0

# File lib/bson/code_with_scope.rb, line 91
def to_bson(encoded = ''.force_encoding(BINARY))
  # -1 because we are removing an extra byte
  out = encode_with_placeholder_and_null(BSON_ADJUST - 1, encoded) do |encoded|
    javascript.to_bson(encoded)
    scope.to_bson(encoded)
  end
  # an extra null byte has been added; we must remove it
  out.chop!
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.