Class: BSON
- Inherits:
- 
      Object
      
        - Object
- BSON
 
- Includes:
- XGen::Mongo::Driver
- Defined in:
- lib/mongo/util/bson.rb
Overview
A BSON seralizer/deserializer.
Constant Summary collapse
- MINKEY =
- -1
- EOO =
- 0
- NUMBER =
- 1
- STRING =
- 2
- OBJECT =
- 3
- ARRAY =
- 4
- BINARY =
- 5
- UNDEFINED =
- 6
- OID =
- 7
- BOOLEAN =
- 8
- DATE =
- 9
- NULL =
- 10
- REGEX =
- 11
- REF =
- 12
- CODE =
- 13
- SYMBOL =
- 14
- CODE_W_SCOPE =
- 15
- NUMBER_INT =
- 16
- MAXKEY =
- 127
Constants included from XGen::Mongo::Driver
XGen::Mongo::Driver::OP_DELETE, XGen::Mongo::Driver::OP_GET_MORE, XGen::Mongo::Driver::OP_INSERT, XGen::Mongo::Driver::OP_KILL_CURSORS, XGen::Mongo::Driver::OP_MSG, XGen::Mongo::Driver::OP_QUERY, XGen::Mongo::Driver::OP_REPLY, XGen::Mongo::Driver::OP_UPDATE
Class Method Summary collapse
Instance Method Summary collapse
- #bson_type(o) ⇒ Object
- #deserialize_array_data(buf) ⇒ Object
- #deserialize_binary_data(buf) ⇒ Object
- #deserialize_boolean_data(buf) ⇒ Object
- #deserialize_code_w_scope_data(buf) ⇒ Object
- #deserialize_cstr(buf) ⇒ Object
- #deserialize_date_data(buf) ⇒ Object
- #deserialize_dbref_data(buf) ⇒ Object
- #deserialize_number_data(buf) ⇒ Object
- #deserialize_number_int_data(buf) ⇒ Object
- #deserialize_object_data(buf) ⇒ Object
- #deserialize_oid_data(buf) ⇒ Object
- #deserialize_regex_data(buf) ⇒ Object
- #deserialize_string_data(buf) ⇒ Object
- 
  
    
      #hex_dump  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    For debugging. 
- 
  
    
      #initialize  ⇒ BSON 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BSON. 
- #serialize_array_element(buf, key, val) ⇒ Object
- #serialize_binary_element(buf, key, val) ⇒ Object
- #serialize_boolean_element(buf, key, val) ⇒ Object
- #serialize_code_w_scope(buf, key, val) ⇒ Object
- #serialize_date_element(buf, key, val) ⇒ Object
- #serialize_dbref_element(buf, key, val) ⇒ Object
- #serialize_eoo_element(buf) ⇒ Object
- #serialize_key_value(k, v) ⇒ Object
- #serialize_null_element(buf, key) ⇒ Object
- #serialize_number_element(buf, key, val, type) ⇒ Object
- #serialize_object_element(buf, key, val, opcode = OBJECT) ⇒ Object
- #serialize_oid_element(buf, key, val) ⇒ Object
- #serialize_regex_element(buf, key, val) ⇒ Object
- #serialize_string_element(buf, key, val, type) ⇒ Object
- #serialize_undefined_element(buf, key) ⇒ Object
- #to_a ⇒ Object
Constructor Details
#initialize ⇒ BSON
Returns a new instance of BSON.
| 65 66 67 | # File 'lib/mongo/util/bson.rb', line 65 def initialize() @buf = ByteBuffer.new end | 
Class Method Details
.serialize_cstr(buf, val) ⇒ Object
| 61 62 63 | # File 'lib/mongo/util/bson.rb', line 61 def self.serialize_cstr(buf, val) buf.put_array(to_utf8(val.to_s).unpack("C*") + [0]) end | 
.to_utf8(str) ⇒ Object
| 52 53 54 | # File 'lib/mongo/util/bson.rb', line 52 def self.to_utf8(str) str.encode("utf-8") end | 
Instance Method Details
#bson_type(o) ⇒ Object
| 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 | # File 'lib/mongo/util/bson.rb', line 466 def bson_type(o) case o when nil NULL when Integer NUMBER_INT when Numeric NUMBER when ByteBuffer BINARY when Code CODE_W_SCOPE when String STRING when Array ARRAY when Regexp REGEX when ObjectID OID when DBRef REF when true, false BOOLEAN when Time DATE when Hash OBJECT when Symbol SYMBOL when Undefined UNDEFINED else raise "Unknown type of object: #{o.class.name}" end end | 
#deserialize_array_data(buf) ⇒ Object
| 251 252 253 254 255 256 | # File 'lib/mongo/util/bson.rb', line 251 def deserialize_array_data(buf) h = deserialize_object_data(buf) a = [] h.each { |k, v| a[k.to_i] = v } a end | 
#deserialize_binary_data(buf) ⇒ Object
| 310 311 312 313 314 315 | # File 'lib/mongo/util/bson.rb', line 310 def deserialize_binary_data(buf) len = buf.get_int type = buf.get len = buf.get_int if type == Binary::SUBTYPE_BYTES Binary.new(buf.get(len), type) end | 
#deserialize_boolean_data(buf) ⇒ Object
| 233 234 235 | # File 'lib/mongo/util/bson.rb', line 233 def deserialize_boolean_data(buf) buf.get == 1 end | 
#deserialize_code_w_scope_data(buf) ⇒ Object
| 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | # File 'lib/mongo/util/bson.rb', line 282 def deserialize_code_w_scope_data(buf) buf.get_int len = buf.get_int code = buf.get(len)[0..-2] if code.respond_to? "pack" code = code.pack("C*") end if RUBY_VERSION >= '1.9' code.force_encoding("utf-8") end scope_size = buf.get_int buf.position -= 4 scope = BSON.new().deserialize(buf.get(scope_size)) Code.new(code, scope) end | 
#deserialize_cstr(buf) ⇒ Object
| 453 454 455 456 457 458 459 460 461 462 463 464 | # File 'lib/mongo/util/bson.rb', line 453 def deserialize_cstr(buf) chars = "" while true b = buf.get break if b == 0 chars << b.chr end if RUBY_VERSION >= '1.9' chars.force_encoding("utf-8") # Mongo stores UTF-8 end chars end | 
#deserialize_date_data(buf) ⇒ Object
| 228 229 230 231 | # File 'lib/mongo/util/bson.rb', line 228 def deserialize_date_data(buf) millisecs = buf.get_long() Time.at(millisecs.to_f / 1000.0) # at() takes fractional seconds end | 
#deserialize_dbref_data(buf) ⇒ Object
| 304 305 306 307 308 | # File 'lib/mongo/util/bson.rb', line 304 def deserialize_dbref_data(buf) ns = deserialize_string_data(buf) oid = deserialize_oid_data(buf) DBRef.new(ns, oid) end | 
#deserialize_number_data(buf) ⇒ Object
| 237 238 239 | # File 'lib/mongo/util/bson.rb', line 237 def deserialize_number_data(buf) buf.get_double end | 
#deserialize_number_int_data(buf) ⇒ Object
| 241 242 243 | # File 'lib/mongo/util/bson.rb', line 241 def deserialize_number_int_data(buf) buf.get_int end | 
#deserialize_object_data(buf) ⇒ Object
| 245 246 247 248 249 | # File 'lib/mongo/util/bson.rb', line 245 def deserialize_object_data(buf) size = buf.get_int buf.position -= 4 BSON.new().deserialize(buf.get(size)) end | 
#deserialize_oid_data(buf) ⇒ Object
| 300 301 302 | # File 'lib/mongo/util/bson.rb', line 300 def deserialize_oid_data(buf) ObjectID.new(buf.get(12)) end | 
#deserialize_regex_data(buf) ⇒ Object
| 258 259 260 261 262 263 264 265 266 267 | # File 'lib/mongo/util/bson.rb', line 258 def deserialize_regex_data(buf) str = deserialize_cstr(buf) = deserialize_cstr(buf) = 0 |= Regexp::IGNORECASE if .include?('i') |= Regexp::MULTILINE if .include?('m') |= Regexp::EXTENDED if .include?('x') .gsub!(/[imx]/, '') # Now remove the three we understand RegexpOfHolding.new(str, , ) end | 
#deserialize_string_data(buf) ⇒ Object
| 269 270 271 272 273 274 275 276 277 278 279 280 | # File 'lib/mongo/util/bson.rb', line 269 def deserialize_string_data(buf) len = buf.get_int bytes = buf.get(len) str = bytes[0..-2] if str.respond_to? "pack" str = str.pack("C*") end if RUBY_VERSION >= '1.9' str.force_encoding("utf-8") end str end | 
#hex_dump ⇒ Object
For debugging.
| 214 215 216 217 218 219 220 221 222 223 224 225 226 | # File 'lib/mongo/util/bson.rb', line 214 def hex_dump str = '' @buf.to_a.each_with_index { |b,i| if (i % 8) == 0 str << "\n" if i > 0 str << '%4d: ' % i else str << ' ' end str << '%02X' % b } str end | 
#serialize_array_element(buf, key, val) ⇒ Object
| 384 385 386 387 388 389 390 | # File 'lib/mongo/util/bson.rb', line 384 def serialize_array_element(buf, key, val) # Turn array into hash with integer indices as keys h = OrderedHash.new i = 0 val.each { |v| h[i] = v; i += 1 } serialize_object_element(buf, key, h, ARRAY) end | 
#serialize_binary_element(buf, key, val) ⇒ Object
| 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 | # File 'lib/mongo/util/bson.rb', line 331 def serialize_binary_element(buf, key, val) buf.put(BINARY) self.class.serialize_cstr(buf, key) bytes = val.to_a num_bytes = bytes.length subtype = val.respond_to?(:subtype) ? val.subtype : Binary::SUBTYPE_BYTES if subtype == Binary::SUBTYPE_BYTES buf.put_int(num_bytes + 4) buf.put(subtype) buf.put_int(num_bytes) buf.put_array(bytes) else buf.put_int(num_bytes) buf.put(subtype) buf.put_array(bytes) end end | 
#serialize_boolean_element(buf, key, val) ⇒ Object
| 355 356 357 358 359 | # File 'lib/mongo/util/bson.rb', line 355 def serialize_boolean_element(buf, key, val) buf.put(BOOLEAN) self.class.serialize_cstr(buf, key) buf.put(val ? 1 : 0) end | 
#serialize_code_w_scope(buf, key, val) ⇒ Object
| 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | # File 'lib/mongo/util/bson.rb', line 436 def serialize_code_w_scope(buf, key, val) buf.put(CODE_W_SCOPE) self.class.serialize_cstr(buf, key) # Make a hole for the length len_pos = buf.position buf.put_int(0) buf.put_int(val.length + 1) self.class.serialize_cstr(buf, val) buf.put_array(BSON.new.serialize(val.scope).to_a) end_pos = buf.position buf.put_int(end_pos - len_pos, len_pos) buf.position = end_pos end | 
#serialize_date_element(buf, key, val) ⇒ Object
| 361 362 363 364 365 366 | # File 'lib/mongo/util/bson.rb', line 361 def serialize_date_element(buf, key, val) buf.put(DATE) self.class.serialize_cstr(buf, key) millisecs = (val.to_f * 1000).to_i buf.put_long(millisecs) end | 
#serialize_dbref_element(buf, key, val) ⇒ Object
| 326 327 328 329 | # File 'lib/mongo/util/bson.rb', line 326 def serialize_dbref_element(buf, key, val) serialize_string_element(buf, key, val.namespace, REF) buf.put_array(val.object_id.to_a) end | 
#serialize_eoo_element(buf) ⇒ Object
| 317 318 319 | # File 'lib/mongo/util/bson.rb', line 317 def serialize_eoo_element(buf) buf.put(EOO) end | 
#serialize_key_value(k, v) ⇒ Object
| 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | # File 'lib/mongo/util/bson.rb', line 97 def serialize_key_value(k, v) type = bson_type(v) case type when STRING, SYMBOL serialize_string_element(@buf, k, v, type) when NUMBER, NUMBER_INT serialize_number_element(@buf, k, v, type) when OBJECT serialize_object_element(@buf, k, v) when OID serialize_oid_element(@buf, k, v) when ARRAY serialize_array_element(@buf, k, v) when REGEX serialize_regex_element(@buf, k, v) when BOOLEAN serialize_boolean_element(@buf, k, v) when DATE serialize_date_element(@buf, k, v) when NULL serialize_null_element(@buf, k) when REF serialize_dbref_element(@buf, k, v) when BINARY serialize_binary_element(@buf, k, v) when UNDEFINED serialize_undefined_element(@buf, k) when CODE_W_SCOPE serialize_code_w_scope(@buf, k, v) else raise "unhandled type #{type}" end end | 
#serialize_null_element(buf, key) ⇒ Object
| 321 322 323 324 | # File 'lib/mongo/util/bson.rb', line 321 def serialize_null_element(buf, key) buf.put(NULL) self.class.serialize_cstr(buf, key) end | 
#serialize_number_element(buf, key, val, type) ⇒ Object
| 368 369 370 371 372 373 374 375 376 | # File 'lib/mongo/util/bson.rb', line 368 def serialize_number_element(buf, key, val, type) buf.put(type) self.class.serialize_cstr(buf, key) if type == NUMBER buf.put_double(val) else buf.put_int(val) end end | 
#serialize_object_element(buf, key, val, opcode = OBJECT) ⇒ Object
| 378 379 380 381 382 | # File 'lib/mongo/util/bson.rb', line 378 def serialize_object_element(buf, key, val, opcode=OBJECT) buf.put(opcode) self.class.serialize_cstr(buf, key) buf.put_array(BSON.new.serialize(val).to_a) end | 
#serialize_oid_element(buf, key, val) ⇒ Object
| 409 410 411 412 413 414 | # File 'lib/mongo/util/bson.rb', line 409 def serialize_oid_element(buf, key, val) buf.put(OID) self.class.serialize_cstr(buf, key) buf.put_array(val.to_a) end | 
#serialize_regex_element(buf, key, val) ⇒ Object
| 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | # File 'lib/mongo/util/bson.rb', line 392 def serialize_regex_element(buf, key, val) buf.put(REGEX) self.class.serialize_cstr(buf, key) str = val.to_s.sub(/.*?:/, '')[0..-2] # Turn "(?xxx:yyy)" into "yyy" self.class.serialize_cstr(buf, str) = val. = '' << 'i' if (( & Regexp::IGNORECASE) != 0) << 'm' if (( & Regexp::MULTILINE) != 0) << 'x' if (( & Regexp::EXTENDED) != 0) << val. if val.respond_to?(:extra_options_str) # Must store option chars in alphabetical order self.class.serialize_cstr(buf, .split(//).sort.uniq.join) end | 
#serialize_string_element(buf, key, val, type) ⇒ Object
| 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | # File 'lib/mongo/util/bson.rb', line 416 def serialize_string_element(buf, key, val, type) buf.put(type) self.class.serialize_cstr(buf, key) # Make a hole for the length len_pos = buf.position buf.put_int(0) # Save the string start_pos = buf.position self.class.serialize_cstr(buf, val) end_pos = buf.position # Put the string size in front buf.put_int(end_pos - start_pos, len_pos) # Go back to where we were buf.position = end_pos end | 
#serialize_undefined_element(buf, key) ⇒ Object
| 350 351 352 353 | # File 'lib/mongo/util/bson.rb', line 350 def serialize_undefined_element(buf, key) buf.put(UNDEFINED) self.class.serialize_cstr(buf, key) end | 
#to_a ⇒ Object
| 69 70 71 | # File 'lib/mongo/util/bson.rb', line 69 def to_a @buf.to_a end |