Class: BSON::BSON_RUBY

Inherits:
Object
  • Object
show all
Defined in:
lib/bson/bson_ruby.rb

Overview

A BSON seralizer/deserializer in pure Ruby.

Constant Summary collapse

MINKEY =

why was this necessary? include Mongo

-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
TIMESTAMP =
17
NUMBER_LONG =
18
MAXKEY =
127

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBSON_RUBY

Returns a new instance of BSON_RUBY.



48
49
50
# File 'lib/bson/bson_ruby.rb', line 48

def initialize
  @buf = ByteBuffer.new
end

Class Method Details

.deserialize(buf = nil) ⇒ Object



90
91
92
# File 'lib/bson/bson_ruby.rb', line 90

def self.deserialize(buf=nil)
  new.deserialize(buf)
end

.serialize(obj, check_keys = false, move_id = false) ⇒ Object

Serializes an object. Implemented to ensure an API compatible with BSON extension.



86
87
88
# File 'lib/bson/bson_ruby.rb', line 86

def self.serialize(obj, check_keys=false, move_id=false)
  new.serialize(obj, check_keys, move_id)
end

.serialize_cstr(buf, val) ⇒ Object



67
68
69
# File 'lib/bson/bson_ruby.rb', line 67

def self.serialize_cstr(buf, val)
  buf.put_array(to_utf8(val.to_s).unpack("C*") << 0)
end

.serialize_key(buf, key) ⇒ Object

Raises:



71
72
73
74
# File 'lib/bson/bson_ruby.rb', line 71

def self.serialize_key(buf, key)
  raise InvalidDocument, "Key names / regex patterns must not contain the NULL byte" if key.include? "\x00"
  self.serialize_cstr(buf, key)
end

.to_utf8(str) ⇒ Object



53
54
55
# File 'lib/bson/bson_ruby.rb', line 53

def self.to_utf8(str)
  str.encode("utf-8")
end

Instance Method Details

#bson_type(o) ⇒ Object



548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
# File 'lib/bson/bson_ruby.rb', line 548

def bson_type(o)
  case o
  when nil
    NULL
  when Integer
    NUMBER_INT
  when Float
    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 MaxKey
    MAXKEY
  when MinKey
    MINKEY
  when Numeric
    raise InvalidDocument, "Cannot serialize the Numeric type #{o.class} as BSON; only Fixum, Bignum, and Float are supported."
  when Date, DateTime
    raise InvalidDocument, "#{o.class} is not currently supported; " +
    "use a UTC Time instance instead."
  else
    if defined?(ActiveSupport::TimeWithZone) && o.is_a?(ActiveSupport::TimeWithZone)
      raise InvalidDocument, "ActiveSupport::TimeWithZone is not currently supported; " +
      "use a UTC Time instance instead."
    else
      raise InvalidDocument, "Cannot serialize #{o.class} as a BSON type; it either isn't supported or won't translate to BSON."
    end
  end
end

#deserialize(buf = nil) ⇒ Object



177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/bson/bson_ruby.rb', line 177

def deserialize(buf=nil)
  # If buf is nil, use @buf, assumed to contain already-serialized BSON.
  # This is only true during testing.
  if buf.is_a? String
    @buf = ByteBuffer.new(buf) if buf
  else
    @buf = ByteBuffer.new(buf.to_a) if buf
  end
  @buf.rewind
  @buf.get_int                # eat message size
  doc = BSON::OrderedHash.new
  while @buf.more?
    type = @buf.get
    case type
    when STRING, CODE
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_string_data(@buf)
    when SYMBOL
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_string_data(@buf).intern
    when NUMBER
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_number_data(@buf)
    when NUMBER_INT
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_number_int_data(@buf)
    when NUMBER_LONG
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_number_long_data(@buf)
    when OID
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_oid_data(@buf)
    when ARRAY
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_array_data(@buf)
    when REGEX
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_regex_data(@buf)
    when OBJECT
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_object_data(@buf)
    when BOOLEAN
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_boolean_data(@buf)
    when DATE
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_date_data(@buf)
    when NULL
      key = deserialize_cstr(@buf)
      doc[key] = nil
    when UNDEFINED
      key = deserialize_cstr(@buf)
      doc[key] = nil
    when REF
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_dbref_data(@buf)
    when BINARY
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_binary_data(@buf)
    when CODE_W_SCOPE
      key = deserialize_cstr(@buf)
      doc[key] = deserialize_code_w_scope_data(@buf)
    when TIMESTAMP
      key = deserialize_cstr(@buf)
      doc[key] = [deserialize_number_int_data(@buf),
      deserialize_number_int_data(@buf)]
    when MAXKEY
      key = deserialize_cstr(@buf)
      doc[key] = MaxKey.new
    when MINKEY, 255 # This is currently easier than unpack the type byte as an unsigned char.
      key = deserialize_cstr(@buf)
      doc[key] = MinKey.new
    when EOO
      break
    else
      raise "Unknown type #{type}, key = #{key}"
    end
  end
  @buf.rewind
  doc
end

#deserialize_array_data(buf) ⇒ Object



313
314
315
316
317
318
# File 'lib/bson/bson_ruby.rb', line 313

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



375
376
377
378
379
380
# File 'lib/bson/bson_ruby.rb', line 375

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



281
282
283
# File 'lib/bson/bson_ruby.rb', line 281

def deserialize_boolean_data(buf)
  buf.get == 1
end

#deserialize_code_w_scope_data(buf) ⇒ Object



350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'lib/bson/bson_ruby.rb', line 350

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

  scope_size = buf.get_int
  buf.position -= 4
  scope = BSON_CODER.new().deserialize(buf.get(scope_size))

  Code.new(encoded_str(code), scope)
end

#deserialize_cstr(buf) ⇒ Object



538
539
540
541
542
543
544
545
546
# File 'lib/bson/bson_ruby.rb', line 538

def deserialize_cstr(buf)
  chars = ""
  while true
    b = buf.get
    break if b == 0
    chars << b.chr
  end
  encoded_str(chars)
end

#deserialize_date_data(buf) ⇒ Object



274
275
276
277
278
279
# File 'lib/bson/bson_ruby.rb', line 274

def deserialize_date_data(buf)
  unsigned = buf.get_long()
  # see note for deserialize_number_long_data below
  milliseconds = unsigned >= 2 ** 64 / 2 ? unsigned - 2**64 : unsigned
  Time.at(milliseconds.to_f / 1000.0).utc # at() takes fractional seconds
end

#deserialize_dbref_data(buf) ⇒ Object



369
370
371
372
373
# File 'lib/bson/bson_ruby.rb', line 369

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



285
286
287
# File 'lib/bson/bson_ruby.rb', line 285

def deserialize_number_data(buf)
  buf.get_double
end

#deserialize_number_int_data(buf) ⇒ Object



289
290
291
292
293
294
# File 'lib/bson/bson_ruby.rb', line 289

def deserialize_number_int_data(buf)
  # sometimes ruby makes me angry... why would the same code pack as signed
  # but unpack as unsigned
  unsigned = buf.get_int
  unsigned >= 2**32 / 2 ? unsigned - 2**32 : unsigned
end

#deserialize_number_long_data(buf) ⇒ Object



296
297
298
299
300
# File 'lib/bson/bson_ruby.rb', line 296

def deserialize_number_long_data(buf)
  # same note as above applies here...
  unsigned = buf.get_long
  unsigned >= 2 ** 64 / 2 ? unsigned - 2**64 : unsigned
end

#deserialize_object_data(buf) ⇒ Object



302
303
304
305
306
307
308
309
310
311
# File 'lib/bson/bson_ruby.rb', line 302

def deserialize_object_data(buf)
  size = buf.get_int
  buf.position -= 4
  object = BSON_CODER.new().deserialize(buf.get(size))
  if object.has_key? "$ref"
    DBRef.new(object["$ref"], object["$id"])
  else
    object
  end
end

#deserialize_oid_data(buf) ⇒ Object



365
366
367
# File 'lib/bson/bson_ruby.rb', line 365

def deserialize_oid_data(buf)
  ObjectID.new(buf.get(12))
end

#deserialize_regex_data(buf) ⇒ Object



320
321
322
323
324
325
326
327
328
# File 'lib/bson/bson_ruby.rb', line 320

def deserialize_regex_data(buf)
  str = deserialize_cstr(buf)
  options_str = deserialize_cstr(buf)
  options = 0
  options |= Regexp::IGNORECASE if options_str.include?('i')
  options |= Regexp::MULTILINE if options_str.include?('m')
  options |= Regexp::EXTENDED if options_str.include?('x')
  Regexp.new(str, options)
end

#deserialize_string_data(buf) ⇒ Object



340
341
342
343
344
345
346
347
348
# File 'lib/bson/bson_ruby.rb', line 340

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
  encoded_str(str)
end

#encoded_str(str) ⇒ Object



330
331
332
333
334
335
336
337
338
# File 'lib/bson/bson_ruby.rb', line 330

def encoded_str(str)
  if RUBY_VERSION >= '1.9'
    str.force_encoding("utf-8")
    if Encoding.default_internal
      str.encode!(Encoding.default_internal)
    end
  end
  str
end

#hex_dumpObject

For debugging.



260
261
262
263
264
265
266
267
268
269
270
271
272
# File 'lib/bson/bson_ruby.rb', line 260

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(obj, check_keys = false, move_id = false) ⇒ Object



94
95
96
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
# File 'lib/bson/bson_ruby.rb', line 94

def serialize(obj, check_keys=false, move_id=false)
  raise "Document is null" unless obj

  @buf.rewind
  # put in a placeholder for the total size
  @buf.put_int(0)

  # Write key/value pairs. Always write _id first if it exists.
  if move_id
    if obj.has_key? '_id'
      serialize_key_value('_id', obj['_id'], false)
    elsif obj.has_key? :_id
      serialize_key_value('_id', obj[:_id], false)
    end
    obj.each {|k, v| serialize_key_value(k, v, check_keys) unless k == '_id' || k == :_id }
  else
    if obj.has_key?('_id') && obj.has_key?(:_id)
      obj['_id'] = obj.delete(:_id)
    end
    obj.each {|k, v| serialize_key_value(k, v, check_keys) }
  end

  serialize_eoo_element(@buf)
  if @buf.size > 4 * 1024 * 1024
    raise InvalidDocument, "Document is too large (#{@buf.size}). BSON documents are limited to 4MB (#{4 * 1024 * 1024})."
  end
  @buf.put_int(@buf.size, 0)
  @buf
end

#serialize_array_element(buf, key, val, check_keys) ⇒ Object



457
458
459
460
461
462
463
# File 'lib/bson/bson_ruby.rb', line 457

def serialize_array_element(buf, key, val, check_keys)
  # Turn array into hash with integer indices as keys
  h = BSON::OrderedHash.new
  i = 0
  val.each { |v| h[i] = v; i += 1 }
  serialize_object_element(buf, key, h, check_keys, ARRAY)
end

#serialize_binary_element(buf, key, val) ⇒ Object



398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
# File 'lib/bson/bson_ruby.rb', line 398

def serialize_binary_element(buf, key, val)
  buf.put(BINARY)
  self.class.serialize_key(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



417
418
419
420
421
# File 'lib/bson/bson_ruby.rb', line 417

def serialize_boolean_element(buf, key, val)
  buf.put(BOOLEAN)
  self.class.serialize_key(buf, key)
  buf.put(val ? 1 : 0)
end

#serialize_code_w_scope(buf, key, val) ⇒ Object



521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
# File 'lib/bson/bson_ruby.rb', line 521

def serialize_code_w_scope(buf, key, val)
  buf.put(CODE_W_SCOPE)
  self.class.serialize_key(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_CODER.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



423
424
425
426
427
428
# File 'lib/bson/bson_ruby.rb', line 423

def serialize_date_element(buf, key, val)
  buf.put(DATE)
  self.class.serialize_key(buf, key)
  millisecs = (val.to_f * 1000).to_i
  buf.put_long(millisecs)
end

#serialize_dbref_element(buf, key, val) ⇒ Object



391
392
393
394
395
396
# File 'lib/bson/bson_ruby.rb', line 391

def serialize_dbref_element(buf, key, val)
  oh = BSON::OrderedHash.new
  oh['$ref'] = val.namespace
  oh['$id'] = val.object_id
  serialize_object_element(buf, key, oh, false)
end

#serialize_eoo_element(buf) ⇒ Object



382
383
384
# File 'lib/bson/bson_ruby.rb', line 382

def serialize_eoo_element(buf)
  buf.put(EOO)
end

#serialize_key_value(k, v, check_keys) ⇒ Object



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/bson/bson_ruby.rb', line 130

def serialize_key_value(k, v, check_keys)
  k = k.to_s
  if check_keys
    if k[0] == ?$
      raise InvalidKeyName.new("key #{k} must not start with '$'")
    end
    if k.include? ?.
      raise InvalidKeyName.new("key #{k} must not contain '.'")
    end
  end
  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, check_keys)
  when OID
    serialize_oid_element(@buf, k, v)
  when ARRAY
    serialize_array_element(@buf, k, v, check_keys)
  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_null_element(@buf, k)
  when CODE_W_SCOPE
    serialize_code_w_scope(@buf, k, v)
  when MAXKEY
    serialize_max_key_element(@buf, k)
  when MINKEY
    serialize_min_key_element(@buf, k)
  else
    raise "unhandled type #{type}"
  end
end

#serialize_max_key_element(buf, key) ⇒ Object



484
485
486
487
# File 'lib/bson/bson_ruby.rb', line 484

def serialize_max_key_element(buf, key)
  buf.put(MAXKEY)
  self.class.serialize_key(buf, key)
end

#serialize_min_key_element(buf, key) ⇒ Object



489
490
491
492
# File 'lib/bson/bson_ruby.rb', line 489

def serialize_min_key_element(buf, key)
  buf.put(MINKEY)
  self.class.serialize_key(buf, key)
end

#serialize_null_element(buf, key) ⇒ Object



386
387
388
389
# File 'lib/bson/bson_ruby.rb', line 386

def serialize_null_element(buf, key)
  buf.put(NULL)
  self.class.serialize_key(buf, key)
end

#serialize_number_element(buf, key, val, type) ⇒ Object



430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
# File 'lib/bson/bson_ruby.rb', line 430

def serialize_number_element(buf, key, val, type)
  if type == NUMBER
    buf.put(type)
    self.class.serialize_key(buf, key)
    buf.put_double(val)
  else
    if val > 2**64 / 2 - 1 or val < -2**64 / 2
      raise RangeError.new("MongoDB can only handle 8-byte ints")
    end
    if val > 2**32 / 2 - 1 or val < -2**32 / 2
      buf.put(NUMBER_LONG)
      self.class.serialize_key(buf, key)
      buf.put_long(val)
    else
      buf.put(type)
      self.class.serialize_key(buf, key)
      buf.put_int(val)
    end
  end
end

#serialize_object_element(buf, key, val, check_keys, opcode = OBJECT) ⇒ Object



451
452
453
454
455
# File 'lib/bson/bson_ruby.rb', line 451

def serialize_object_element(buf, key, val, check_keys, opcode=OBJECT)
  buf.put(opcode)
  self.class.serialize_key(buf, key)
  buf.put_array(BSON_CODER.new.serialize(val, check_keys).to_a)
end

#serialize_oid_element(buf, key, val) ⇒ Object



494
495
496
497
498
499
# File 'lib/bson/bson_ruby.rb', line 494

def serialize_oid_element(buf, key, val)
  buf.put(OID)
  self.class.serialize_key(buf, key)

  buf.put_array(val.to_a)
end

#serialize_regex_element(buf, key, val) ⇒ Object



465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
# File 'lib/bson/bson_ruby.rb', line 465

def serialize_regex_element(buf, key, val)
  buf.put(REGEX)
  self.class.serialize_key(buf, key)

  str = val.source
  # We use serialize_key here since regex patterns aren't prefixed with
  # length (can't contain the NULL byte).
  self.class.serialize_key(buf, str)

  options = val.options
  options_str = ''
  options_str << 'i' if ((options & Regexp::IGNORECASE) != 0)
  options_str << 'm' if ((options & Regexp::MULTILINE) != 0)
  options_str << 'x' if ((options & Regexp::EXTENDED) != 0)
  options_str << val.extra_options_str if val.respond_to?(:extra_options_str)
  # Must store option chars in alphabetical order
  self.class.serialize_cstr(buf, options_str.split(//).sort.uniq.join)
end

#serialize_string_element(buf, key, val, type) ⇒ Object



501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
# File 'lib/bson/bson_ruby.rb', line 501

def serialize_string_element(buf, key, val, type)
  buf.put(type)
  self.class.serialize_key(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

#to_aObject



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

def to_a
  @buf.to_a
end

#to_sObject



80
81
82
# File 'lib/bson/bson_ruby.rb', line 80

def to_s
  @buf.to_s
end

#unpack(arg) ⇒ Object

Returns the array stored in the buffer. Implemented to ensure an API compatible with BSON extension.



126
127
128
# File 'lib/bson/bson_ruby.rb', line 126

def unpack(arg)
  @buf.to_a
end