Class: BSON::ObjectID

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

Overview

Generates MongoDB object ids.

Constant Summary collapse

@@lock =
Mutex.new
@@index =
0

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ObjectID

Deprecated.

Create a new object id. If no parameter is given, an id corresponding to the ObjectID BSON data type will be created. This is a 12-byte value consisting of a 4-byte timestamp, a 3-byte machine id, a 2-byte process id, and a 3-byte counter.

Parameters:

  • data (Array) (defaults to: nil)

    should be an array of bytes. If you want to generate a standard MongoDB object id, leave this argument blank.



45
46
47
48
# File 'lib/bson/types/objectid.rb', line 45

def initialize(data=nil)
  warn "BSON::ObjectID is deprecated. Please use BSON::ObjectId instead."
  @data = data || generate
end

Class Method Details

.create_pk(doc) ⇒ Mongo::ObjectID, Object

Adds a primary key to the given document if needed.

Parameters:

  • doc (Hash)

    a document requiring an _id.

Returns:

  • (Mongo::ObjectID, Object)

    returns a newly-created or current _id for the given document.



85
86
87
# File 'lib/bson/types/objectid.rb', line 85

def self.create_pk(doc)
  doc.has_key?(:_id) || doc.has_key?('_id') ? doc : doc.merge!(:_id => self.new)
end

.from_string(str) ⇒ Mongo::ObjectID

Given a string representation of an ObjectID, return a new ObjectID with that value.

Parameters:

  • str (String)

Returns:

  • (Mongo::ObjectID)

Raises:



118
119
120
121
122
123
124
125
# File 'lib/bson/types/objectid.rb', line 118

def self.from_string(str)
  raise InvalidObjectID, "illegal ObjectID format" unless legal?(str)
  data = []
  12.times do |i|
    data[i] = str[i * 2, 2].to_i(16)
  end
  self.new(data)
end

.from_time(time) ⇒ Mongo::ObjectID

Create an object id from the given time. This is useful for doing range queries; it works because MongoDB’s object ids begin with a timestamp.

Examples:

Return all document created before Jan 1, 2010.

time = Time.utc(2010, 1, 1)
time_id = ObjectID.from_time(time)
collection.find({'_id' => {'$lt' => time_id}})

Parameters:

  • time (Time)

    a utc time to encode as an object id.

Returns:

  • (Mongo::ObjectID)


75
76
77
# File 'lib/bson/types/objectid.rb', line 75

def self.from_time(time)
  self.new([time.to_i,0,0].pack("NNN").unpack("C12"))
end

.legal?(str) ⇒ Boolean

Determine if the supplied string is legal. Legal strings will consist of 24 hexadecimal characters.

Parameters:

  • str (String)

Returns:

  • (Boolean)


56
57
58
59
60
61
# File 'lib/bson/types/objectid.rb', line 56

def self.legal?(str)
  len = 24
  str =~ /([0-9a-f]+)/i
  match = $1
  str && str.length == len && match == str
end

Instance Method Details

#eql?(object_id) ⇒ Boolean Also known as: ==

Check equality of this object id with another.

Parameters:

  • object_id (Mongo::ObjectID)

Returns:

  • (Boolean)


92
93
94
# File 'lib/bson/types/objectid.rb', line 92

def eql?(object_id)
  @data == object_id.instance_variable_get("@data")
end

#generation_timeTime

Return the UTC time at which this ObjectID was generated. This may be used in lieu of a created_at timestamp since this information is always encoded in the object id.

Returns:

  • (Time)

    the time at which this object was created.



155
156
157
# File 'lib/bson/types/objectid.rb', line 155

def generation_time
  Time.at(@data.pack("C4").unpack("N")[0]).utc
end

#hashInteger

Get a unique hashcode for this object. This is required since we’ve defined an #eql? method.

Returns:

  • (Integer)


101
102
103
# File 'lib/bson/types/objectid.rb', line 101

def hash
  @data.hash
end

#inspectObject



138
139
140
# File 'lib/bson/types/objectid.rb', line 138

def inspect
  "BSON::ObjectID('#{to_s}')"
end

#to_aArray

Get an array representation of the object id.

Returns:

  • (Array)


108
109
110
# File 'lib/bson/types/objectid.rb', line 108

def to_a
  @data.dup
end

#to_json(*a) ⇒ String

Convert to MongoDB extended JSON format. Since JSON includes type information, but lacks an ObjectID type, this JSON format encodes the type using an $oid key.

Returns:

  • (String)

    the object id represented as MongoDB extended JSON.



146
147
148
# File 'lib/bson/types/objectid.rb', line 146

def to_json(*a)
  "{\"$oid\": \"#{to_s}\"}"
end

#to_sString

Get a string representation of this object id.

Returns:

  • (String)


130
131
132
133
134
135
136
# File 'lib/bson/types/objectid.rb', line 130

def to_s
  str = ' ' * 24
  12.times do |i|
    str[i * 2, 2] = '%02x' % @data[i]
  end
  str
end