Module: BSON::String

Defined in:
lib/bson/string.rb

Overview

Injects behaviour for encoding and decoding string values to and from raw bytes as specified by the BSON spec.

See Also:

Since:

  • 2.0.0

Defined Under Namespace

Modules: ClassMethods

Constant Summary collapse

BSON_TYPE =

A string is type 0x02 in the BSON spec.

Since:

  • 2.0.0

2.chr.force_encoding(BINARY).freeze

Instance Method Summary collapse

Instance Method Details

#to_bson(buffer = ByteBuffer.new) ⇒ String

Get the string as encoded BSON.

Examples:

Get the string as encoded BSON.

"test".to_bson

Returns:

  • (String)

    The encoded string.

Raises:

  • (EncodingError)

    If the string is not UTF-8.

See Also:

Since:

  • 2.0.0



43
44
45
# File 'lib/bson/string.rb', line 43

def to_bson(buffer = ByteBuffer.new)
  buffer.put_string(self)
end

#to_bson_keyString

Get the string as a BSON key name encoded C string with checking for special characters.

Examples:

Get the string as key name.

"test".to_bson_key

Returns:

  • (String)

    The encoded string.

Raises:

  • (EncodingError)

    If the string is not UTF-8.

See Also:

Since:

  • 2.0.0



59
60
61
# File 'lib/bson/string.rb', line 59

def to_bson_key
  self
end

#to_bson_object_idString

Note:

This is used for repairing legacy bson data.

Convert the string to an object id. This will only work for strings of size 12.

Examples:

Convert the string to an object id.

string.to_bson_object_id

Returns:

  • (String)

    The raw object id bytes.

Raises:

  • (InvalidObjectId)

    If the string is not 12 elements.

Since:

  • 2.0.0



76
77
78
# File 'lib/bson/string.rb', line 76

def to_bson_object_id
  ObjectId.repair(self)
end

#to_hex_stringString

Convert the string to a hexidecimal representation.

Examples:

Convert the string to hex.

"\x01".to_hex_string

Returns:

  • (String)

    The string as hex.

Since:

  • 2.0.0



88
89
90
# File 'lib/bson/string.rb', line 88

def to_hex_string
  unpack("H*")[0]
end