bson 1.12.5 → 2.0.0.alpha
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bson might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +0 -0
- data/CONTRIBUTING.md +0 -0
- data/LICENSE.md +13 -0
- data/README.md +185 -0
- data/Rakefile +83 -0
- data/ext/bson/extconf.rb +3 -0
- data/lib/bson.rb +105 -94
- data/lib/bson/array.rb +74 -0
- data/lib/bson/binary.rb +125 -0
- data/lib/bson/boolean.rb +35 -0
- data/lib/bson/code.rb +96 -0
- data/lib/bson/code_with_scope.rb +105 -0
- data/lib/bson/document.rb +536 -0
- data/lib/bson/encodable.rb +73 -0
- data/lib/bson/false_class.rb +48 -0
- data/lib/bson/float.rb +69 -0
- data/lib/bson/hash.rb +71 -0
- data/lib/bson/int32.rb +46 -0
- data/lib/bson/int64.rb +46 -0
- data/lib/bson/integer.rb +172 -0
- data/lib/bson/json.rb +26 -0
- data/lib/bson/max_key.rb +57 -0
- data/lib/bson/min_key.rb +57 -0
- data/lib/bson/nil_class.rb +57 -0
- data/lib/bson/object_id.rb +309 -0
- data/lib/bson/regexp.rb +111 -0
- data/lib/bson/registry.rb +57 -0
- data/lib/bson/specialized.rb +61 -0
- data/lib/bson/string.rb +173 -0
- data/lib/bson/symbol.rb +74 -0
- data/lib/bson/time.rb +59 -0
- data/lib/bson/timestamp.rb +100 -0
- data/lib/bson/true_class.rb +48 -0
- data/lib/bson/undefined.rb +61 -0
- data/lib/bson/version.rb +4 -0
- metadata +52 -40
- data/LICENSE +0 -190
- data/VERSION +0 -1
- data/bin/b2json +0 -63
- data/bin/j2bson +0 -64
- data/bson.gemspec +0 -34
- data/lib/bson/bson_c.rb +0 -37
- data/lib/bson/bson_java.rb +0 -49
- data/lib/bson/bson_ruby.rb +0 -645
- data/lib/bson/byte_buffer.rb +0 -241
- data/lib/bson/exceptions.rb +0 -37
- data/lib/bson/grow.rb +0 -173
- data/lib/bson/ordered_hash.rb +0 -197
- data/lib/bson/support/hash_with_indifferent_access.rb +0 -174
- data/lib/bson/types/binary.rb +0 -52
- data/lib/bson/types/code.rb +0 -55
- data/lib/bson/types/dbref.rb +0 -40
- data/lib/bson/types/min_max_keys.rb +0 -56
- data/lib/bson/types/object_id.rb +0 -226
- data/lib/bson/types/regex.rb +0 -116
- data/lib/bson/types/timestamp.rb +0 -72
data/lib/bson/time.rb
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
module BSON
|
3
|
+
|
4
|
+
# Injects behaviour for encoding and decoding time values to
|
5
|
+
# and from raw bytes as specified by the BSON spec.
|
6
|
+
#
|
7
|
+
# @see http://bsonspec.org/#/specification
|
8
|
+
#
|
9
|
+
# @since 2.0.0
|
10
|
+
module Time
|
11
|
+
|
12
|
+
# A time is type 0x09 in the BSON spec.
|
13
|
+
#
|
14
|
+
# @since 2.0.0
|
15
|
+
BSON_TYPE = 9.chr.force_encoding(BINARY).freeze
|
16
|
+
|
17
|
+
# Get the time as encoded BSON.
|
18
|
+
#
|
19
|
+
# @example Get the time as encoded BSON.
|
20
|
+
# Time.new(2012, 1, 1, 0, 0, 0).to_bson
|
21
|
+
#
|
22
|
+
# @return [ String ] The encoded string.
|
23
|
+
#
|
24
|
+
# @see http://bsonspec.org/#/specification
|
25
|
+
#
|
26
|
+
# @since 2.0.0
|
27
|
+
def to_bson(encoded = ''.force_encoding(BINARY))
|
28
|
+
encoded << [ (to_f * 1000.0).to_i ].pack(Int64::PACK)
|
29
|
+
end
|
30
|
+
|
31
|
+
module ClassMethods
|
32
|
+
|
33
|
+
# Deserialize UTC datetime from BSON.
|
34
|
+
#
|
35
|
+
# @param [ BSON ] bson The bson representing UTC datetime.
|
36
|
+
#
|
37
|
+
# @return [ Time ] The decoded UTC datetime.
|
38
|
+
#
|
39
|
+
# @see http://bsonspec.org/#/specification
|
40
|
+
#
|
41
|
+
# @since 2.0.0
|
42
|
+
def from_bson(bson)
|
43
|
+
seconds, fragment = Int64.from_bson(bson).divmod(1000)
|
44
|
+
at(seconds, fragment * 1000).utc
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
# Register this type when the module is loaded.
|
49
|
+
#
|
50
|
+
# @since 2.0.0
|
51
|
+
Registry.register(BSON_TYPE, ::Time)
|
52
|
+
end
|
53
|
+
|
54
|
+
# Enrich the core Time class with this module.
|
55
|
+
#
|
56
|
+
# @since 2.0.0
|
57
|
+
::Time.send(:include, Time)
|
58
|
+
::Time.send(:extend, Time::ClassMethods)
|
59
|
+
end
|
@@ -0,0 +1,100 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
module BSON
|
3
|
+
|
4
|
+
# Represents a timestamp type, which is predominately used for sharding.
|
5
|
+
#
|
6
|
+
# @see http://bsonspec.org/#/specification
|
7
|
+
#
|
8
|
+
# @since 2.0.0
|
9
|
+
class Timestamp
|
10
|
+
include JSON
|
11
|
+
|
12
|
+
# A timestamp is type 0x11 in the BSON spec.
|
13
|
+
#
|
14
|
+
# @since 2.0.0
|
15
|
+
BSON_TYPE = 17.chr.force_encoding(BINARY).freeze
|
16
|
+
|
17
|
+
# @!attribute seconds
|
18
|
+
# @return [ Integer ] The number of seconds.
|
19
|
+
# @since 2.0.0
|
20
|
+
#
|
21
|
+
# @!attribute increment
|
22
|
+
# @return [ Integer ] The incrementing value.
|
23
|
+
# @since 2.0.0
|
24
|
+
#
|
25
|
+
attr_reader :seconds, :increment
|
26
|
+
|
27
|
+
# Determine if this timestamp is equal to another object.
|
28
|
+
#
|
29
|
+
# @example Check the timestamp equality.
|
30
|
+
# timestamp == other
|
31
|
+
#
|
32
|
+
# @param [ Object ] other The object to compare against.
|
33
|
+
#
|
34
|
+
# @return [ true, false ] If the objects are equal.
|
35
|
+
#
|
36
|
+
# @since 2.0.0
|
37
|
+
def ==(other)
|
38
|
+
return false unless other.is_a?(Timestamp)
|
39
|
+
seconds == other.seconds && increment == other.increment
|
40
|
+
end
|
41
|
+
|
42
|
+
# Get the timestamp as JSON hash data.
|
43
|
+
#
|
44
|
+
# @example Get the timestamp as a JSON hash.
|
45
|
+
# timestamp.as_json
|
46
|
+
#
|
47
|
+
# @return [ Hash ] The timestamp as a JSON hash.
|
48
|
+
#
|
49
|
+
# @since 2.0.0
|
50
|
+
def as_json(*args)
|
51
|
+
{ "t" => seconds, "i" => increment }
|
52
|
+
end
|
53
|
+
|
54
|
+
# Instantiate the new timestamp.
|
55
|
+
#
|
56
|
+
# @example Instantiate the timestamp.
|
57
|
+
# BSON::Timestamp.new(5, 30)
|
58
|
+
#
|
59
|
+
# @param [ Integer ] seconds The number of seconds.
|
60
|
+
# @param [ Integer ] increment The increment value.
|
61
|
+
#
|
62
|
+
# @since 2.0.0
|
63
|
+
def initialize(seconds, increment)
|
64
|
+
@seconds, @increment = seconds, increment
|
65
|
+
end
|
66
|
+
|
67
|
+
# Get the timestamp as its encoded raw BSON bytes.
|
68
|
+
#
|
69
|
+
# @example Get the timestamp as BSON.
|
70
|
+
# timestamp.to_bson
|
71
|
+
#
|
72
|
+
# @return [ String ] The raw BSON bytes.
|
73
|
+
#
|
74
|
+
# @see http://bsonspec.org/#/specification
|
75
|
+
#
|
76
|
+
# @since 2.0.0
|
77
|
+
def to_bson(encoded = ''.force_encoding(BINARY))
|
78
|
+
increment.to_bson_int32(encoded)
|
79
|
+
seconds.to_bson_int32(encoded)
|
80
|
+
end
|
81
|
+
|
82
|
+
# Deserialize timestamp from BSON.
|
83
|
+
#
|
84
|
+
# @param [ BSON ] bson The bson representing a timestamp.
|
85
|
+
#
|
86
|
+
# @return [ Timestamp ] The decoded timestamp.
|
87
|
+
#
|
88
|
+
# @see http://bsonspec.org/#/specification
|
89
|
+
#
|
90
|
+
# @since 2.0.0
|
91
|
+
def self.from_bson(bson)
|
92
|
+
new(*bson.read(8).unpack(Int32::PACK * 2).reverse)
|
93
|
+
end
|
94
|
+
|
95
|
+
# Register this type when the module is loaded.
|
96
|
+
#
|
97
|
+
# @since 2.0.0
|
98
|
+
Registry.register(BSON_TYPE, self)
|
99
|
+
end
|
100
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
module BSON
|
3
|
+
|
4
|
+
# Injects behaviour for encoding and decoding true values to and from
|
5
|
+
# raw bytes as specified by the BSON spec.
|
6
|
+
#
|
7
|
+
# @see http://bsonspec.org/#/specification
|
8
|
+
#
|
9
|
+
# @since 2.0.0
|
10
|
+
module TrueClass
|
11
|
+
|
12
|
+
# A true value in the BSON spec is 0x01.
|
13
|
+
#
|
14
|
+
# @since 2.0.0
|
15
|
+
TRUE_BYTE = 1.chr.force_encoding(BINARY).freeze
|
16
|
+
|
17
|
+
# The BSON type for true values is the general boolean type of 0x08.
|
18
|
+
#
|
19
|
+
# @example Get the bson type.
|
20
|
+
# false.bson_type
|
21
|
+
#
|
22
|
+
# @return [ String ] The character 0x08.
|
23
|
+
#
|
24
|
+
# @since 2.0.0
|
25
|
+
def bson_type
|
26
|
+
Boolean::BSON_TYPE
|
27
|
+
end
|
28
|
+
|
29
|
+
# Get the true boolean as encoded BSON.
|
30
|
+
#
|
31
|
+
# @example Get the true boolean as encoded BSON.
|
32
|
+
# true.to_bson
|
33
|
+
#
|
34
|
+
# @return [ String ] The encoded string.
|
35
|
+
#
|
36
|
+
# @see http://bsonspec.org/#/specification
|
37
|
+
#
|
38
|
+
# @since 2.0.0
|
39
|
+
def to_bson(encoded = ''.force_encoding(BINARY))
|
40
|
+
encoded << TRUE_BYTE
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
# Enrich the core TrueClass class with this module.
|
45
|
+
#
|
46
|
+
# @since 2.0.0
|
47
|
+
::TrueClass.send(:include, TrueClass)
|
48
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
module BSON
|
3
|
+
|
4
|
+
# Represents the Undefined BSON type
|
5
|
+
#
|
6
|
+
# @see http://bsonspec.org/#/specification
|
7
|
+
#
|
8
|
+
# @since 2.0.0
|
9
|
+
class Undefined
|
10
|
+
|
11
|
+
# Undefined is type 0x06 in the BSON spec.
|
12
|
+
#
|
13
|
+
# @since 2.0.0
|
14
|
+
BSON_TYPE = 6.chr.force_encoding(BINARY).freeze
|
15
|
+
|
16
|
+
# Determine if undefined is equal to another object.
|
17
|
+
#
|
18
|
+
# @example Check undefined equality.
|
19
|
+
# BSON::Undefined.new == object
|
20
|
+
#
|
21
|
+
# @param [ Object ] other The object to check against.
|
22
|
+
#
|
23
|
+
# @return [ true, false ] If the objects are equal.
|
24
|
+
#
|
25
|
+
# @since 2.0.0
|
26
|
+
def ==(other)
|
27
|
+
self.class == other.class
|
28
|
+
end
|
29
|
+
|
30
|
+
# Encode the Undefined field - has no value since it only needs the type
|
31
|
+
# and field name when being encoded.
|
32
|
+
#
|
33
|
+
# @example Encode the undefined value.
|
34
|
+
# Undefined.to_bson
|
35
|
+
#
|
36
|
+
# @return [ String ] An empty string.
|
37
|
+
#
|
38
|
+
# @since 2.0.0
|
39
|
+
def to_bson(encoded = ''.force_encoding(BINARY))
|
40
|
+
encoded
|
41
|
+
end
|
42
|
+
|
43
|
+
# Deserialize undefined BSON type from BSON.
|
44
|
+
#
|
45
|
+
# @param [ BSON ] bson The encoded undefined value.
|
46
|
+
#
|
47
|
+
# @return [ Undefined ] The decoded undefined value.
|
48
|
+
#
|
49
|
+
# @see http://bsonspec.org/#/specification
|
50
|
+
#
|
51
|
+
# @since 2.0.0
|
52
|
+
def self.from_bson(bson)
|
53
|
+
new
|
54
|
+
end
|
55
|
+
|
56
|
+
# Register this type when the module is loaded.
|
57
|
+
#
|
58
|
+
# @since 2.0.0
|
59
|
+
Registry.register(BSON_TYPE, self)
|
60
|
+
end
|
61
|
+
end
|
data/lib/bson/version.rb
ADDED
metadata
CHANGED
@@ -1,50 +1,63 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0.alpha
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Emily Stolfo
|
8
|
-
- Durran Jordan
|
9
|
-
- Gary Murakami
|
10
7
|
- Tyler Brock
|
8
|
+
- Durran Jordan
|
11
9
|
- Brandon Black
|
10
|
+
- Emily Stolfo
|
11
|
+
- Gary Murakami
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2013-05-08 00:00:00.000000000 Z
|
16
16
|
dependencies: []
|
17
|
-
description: A
|
18
|
-
|
19
|
-
|
20
|
-
executables:
|
21
|
-
|
22
|
-
-
|
23
|
-
extensions: []
|
17
|
+
description: A full featured BSON specification implementation, in Ruby
|
18
|
+
email:
|
19
|
+
- mongodb-dev@googlegroups.com
|
20
|
+
executables: []
|
21
|
+
extensions:
|
22
|
+
- ext/bson/extconf.rb
|
24
23
|
extra_rdoc_files: []
|
25
24
|
files:
|
26
|
-
-
|
27
|
-
-
|
28
|
-
-
|
29
|
-
-
|
30
|
-
-
|
25
|
+
- CONTRIBUTING.md
|
26
|
+
- CHANGELOG.md
|
27
|
+
- LICENSE.md
|
28
|
+
- README.md
|
29
|
+
- Rakefile
|
30
|
+
- lib/bson/array.rb
|
31
|
+
- lib/bson/binary.rb
|
32
|
+
- lib/bson/boolean.rb
|
33
|
+
- lib/bson/code.rb
|
34
|
+
- lib/bson/code_with_scope.rb
|
35
|
+
- lib/bson/document.rb
|
36
|
+
- lib/bson/encodable.rb
|
37
|
+
- lib/bson/false_class.rb
|
38
|
+
- lib/bson/float.rb
|
39
|
+
- lib/bson/hash.rb
|
40
|
+
- lib/bson/int32.rb
|
41
|
+
- lib/bson/int64.rb
|
42
|
+
- lib/bson/integer.rb
|
43
|
+
- lib/bson/json.rb
|
44
|
+
- lib/bson/max_key.rb
|
45
|
+
- lib/bson/min_key.rb
|
46
|
+
- lib/bson/nil_class.rb
|
47
|
+
- lib/bson/object_id.rb
|
48
|
+
- lib/bson/regexp.rb
|
49
|
+
- lib/bson/registry.rb
|
50
|
+
- lib/bson/specialized.rb
|
51
|
+
- lib/bson/string.rb
|
52
|
+
- lib/bson/symbol.rb
|
53
|
+
- lib/bson/time.rb
|
54
|
+
- lib/bson/timestamp.rb
|
55
|
+
- lib/bson/true_class.rb
|
56
|
+
- lib/bson/undefined.rb
|
57
|
+
- lib/bson/version.rb
|
31
58
|
- lib/bson.rb
|
32
|
-
-
|
33
|
-
|
34
|
-
- lib/bson/bson_ruby.rb
|
35
|
-
- lib/bson/byte_buffer.rb
|
36
|
-
- lib/bson/exceptions.rb
|
37
|
-
- lib/bson/grow.rb
|
38
|
-
- lib/bson/ordered_hash.rb
|
39
|
-
- lib/bson/support/hash_with_indifferent_access.rb
|
40
|
-
- lib/bson/types/binary.rb
|
41
|
-
- lib/bson/types/code.rb
|
42
|
-
- lib/bson/types/dbref.rb
|
43
|
-
- lib/bson/types/min_max_keys.rb
|
44
|
-
- lib/bson/types/object_id.rb
|
45
|
-
- lib/bson/types/regex.rb
|
46
|
-
- lib/bson/types/timestamp.rb
|
47
|
-
homepage: http://www.mongodb.org
|
59
|
+
- ext/bson/extconf.rb
|
60
|
+
homepage: http://bsonspec.org
|
48
61
|
licenses:
|
49
62
|
- Apache License Version 2.0
|
50
63
|
metadata: {}
|
@@ -54,19 +67,18 @@ require_paths:
|
|
54
67
|
- lib
|
55
68
|
required_ruby_version: !ruby/object:Gem::Requirement
|
56
69
|
requirements:
|
57
|
-
- -
|
70
|
+
- - '>='
|
58
71
|
- !ruby/object:Gem::Version
|
59
|
-
version:
|
72
|
+
version: 1.8.7
|
60
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
74
|
requirements:
|
62
|
-
- -
|
75
|
+
- - '>='
|
63
76
|
- !ruby/object:Gem::Version
|
64
|
-
version:
|
77
|
+
version: 1.3.6
|
65
78
|
requirements: []
|
66
79
|
rubyforge_project: bson
|
67
|
-
rubygems_version: 2.
|
80
|
+
rubygems_version: 2.0.3
|
68
81
|
signing_key:
|
69
82
|
specification_version: 4
|
70
|
-
summary: Ruby
|
83
|
+
summary: Ruby Implementation of the BSON specification
|
71
84
|
test_files: []
|
72
|
-
has_rdoc: yard
|
data/LICENSE
DELETED
@@ -1,190 +0,0 @@
|
|
1
|
-
Apache License
|
2
|
-
Version 2.0, January 2004
|
3
|
-
http://www.apache.org/licenses/
|
4
|
-
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
-
|
7
|
-
1. Definitions.
|
8
|
-
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
-
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
-
the copyright owner that is granting the License.
|
14
|
-
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
-
other entities that control, are controlled by, or are under common
|
17
|
-
control with that entity. For the purposes of this definition,
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
19
|
-
direction or management of such entity, whether by contract or
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
-
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
-
exercising permissions granted by this License.
|
25
|
-
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
27
|
-
including but not limited to software source code, documentation
|
28
|
-
source, and configuration files.
|
29
|
-
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
31
|
-
transformation or translation of a Source form, including but
|
32
|
-
not limited to compiled object code, generated documentation,
|
33
|
-
and conversions to other media types.
|
34
|
-
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
36
|
-
Object form, made available under the License, as indicated by a
|
37
|
-
copyright notice that is included in or attached to the work
|
38
|
-
(an example is provided in the Appendix below).
|
39
|
-
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
-
the Work and Derivative Works thereof.
|
47
|
-
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
49
|
-
the original version of the Work and any modifications or additions
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
-
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
64
|
-
subsequently incorporated within the Work.
|
65
|
-
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
72
|
-
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
-
where such license applies only to those patent claims licensable
|
79
|
-
by such Contributor that are necessarily infringed by their
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
82
|
-
institute patent litigation against any entity (including a
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
85
|
-
or contributory patent infringement, then any patent licenses
|
86
|
-
granted to You under this License for that Work shall terminate
|
87
|
-
as of the date such litigation is filed.
|
88
|
-
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
91
|
-
modifications, and in Source or Object form, provided that You
|
92
|
-
meet the following conditions:
|
93
|
-
|
94
|
-
(a) You must give any other recipients of the Work or
|
95
|
-
Derivative Works a copy of this License; and
|
96
|
-
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
98
|
-
stating that You changed the files; and
|
99
|
-
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
102
|
-
attribution notices from the Source form of the Work,
|
103
|
-
excluding those notices that do not pertain to any part of
|
104
|
-
the Derivative Works; and
|
105
|
-
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
108
|
-
include a readable copy of the attribution notices contained
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
111
|
-
of the following places: within a NOTICE text file distributed
|
112
|
-
as part of the Derivative Works; within the Source form or
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
114
|
-
within a display generated by the Derivative Works, if and
|
115
|
-
wherever such third-party notices normally appear. The contents
|
116
|
-
of the NOTICE file are for informational purposes only and
|
117
|
-
do not modify the License. You may add Your own attribution
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
120
|
-
that such additional attribution notices cannot be construed
|
121
|
-
as modifying the License.
|
122
|
-
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
124
|
-
may provide additional or different license terms and conditions
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
128
|
-
the conditions stated in this License.
|
129
|
-
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
133
|
-
this License, without any additional terms or conditions.
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
-
the terms of any separate license agreement you may have executed
|
136
|
-
with Licensor regarding such Contributions.
|
137
|
-
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
140
|
-
except as required for reasonable and customary use in describing the
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
-
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
152
|
-
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
158
|
-
incidental, or consequential damages of any character arising as a
|
159
|
-
result of this License or out of the use or inability to use the
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
162
|
-
other commercial damages or losses), even if such Contributor
|
163
|
-
has been advised of the possibility of such damages.
|
164
|
-
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
-
or other liability obligations and/or rights consistent with this
|
169
|
-
License. However, in accepting such obligations, You may act only
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
174
|
-
of your accepting any such warranty or additional liability.
|
175
|
-
|
176
|
-
END OF TERMS AND CONDITIONS
|
177
|
-
|
178
|
-
Copyright (C) 2008-2013 MongoDB, Inc.
|
179
|
-
|
180
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
181
|
-
you may not use this file except in compliance with the License.
|
182
|
-
You may obtain a copy of the License at
|
183
|
-
|
184
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
185
|
-
|
186
|
-
Unless required by applicable law or agreed to in writing, software
|
187
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
188
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
189
|
-
See the License for the specific language governing permissions and
|
190
|
-
limitations under the License.
|