mongo-ruby-driver/lib/bson.rb

54 lines
1.5 KiB
Ruby
Raw Normal View History

# encoding: UTF-8
2010-04-05 18:09:06 +00:00
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
MINIMUM_BSON_EXT_VERSION = "1.0.1"
2010-04-05 18:09:06 +00:00
module BSON
VERSION = "1.0.2"
2010-04-05 18:09:06 +00:00
def self.serialize(obj, check_keys=false, move_id=false)
BSON_CODER.serialize(obj, check_keys, move_id)
end
def self.deserialize(buf=nil)
BSON_CODER.deserialize(buf)
end
end
begin
# Need this for running test with and without c ext in Ruby 1.9.
raise LoadError if ENV['TEST_MODE'] && !ENV['C_EXT']
require 'bson_ext/cbson'
raise LoadError unless defined?(CBson::VERSION)
if CBson::VERSION < MINIMUM_BSON_EXT_VERSION
puts "Able to load bson_ext version #{CBson::VERSION}, but >= #{MINIMUM_BSON_EXT_VERSION} is required."
raise LoadError
end
2010-04-05 18:09:06 +00:00
require 'bson/bson_c'
module BSON
BSON_CODER = BSON_C
end
rescue LoadError
require 'bson/bson_ruby'
module BSON
BSON_CODER = BSON_RUBY
end
warn "\n**Notice: C extension not loaded. This is required for optimum MongoDB Ruby driver performance."
2010-04-08 03:47:06 +00:00
warn " You can install the extension as follows:\n gem install bson_ext\n"
2010-04-05 18:09:06 +00:00
warn " If you continue to receive this message after installing, make sure that the"
2010-04-08 03:47:06 +00:00
warn " bson_ext gem is in your load path and that the bson_ext and mongo gems are of the same version.\n"
2010-04-05 18:09:06 +00:00
end
require 'bson/types/binary'
require 'bson/types/code'
require 'bson/types/dbref'
require 'bson/types/objectid'
require 'bson/types/min_max_keys'
require 'base64'
require 'bson/ordered_hash'
require 'bson/byte_buffer'
require 'bson/bson_ruby'
require 'bson/exceptions'