mongo 1.10.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/LICENSE +190 -0
  5. data/README.md +149 -0
  6. data/Rakefile +31 -0
  7. data/VERSION +1 -0
  8. data/bin/mongo_console +43 -0
  9. data/ext/jsasl/target/jsasl.jar +0 -0
  10. data/lib/mongo.rb +90 -0
  11. data/lib/mongo/bulk_write_collection_view.rb +380 -0
  12. data/lib/mongo/collection.rb +1164 -0
  13. data/lib/mongo/collection_writer.rb +364 -0
  14. data/lib/mongo/connection.rb +19 -0
  15. data/lib/mongo/connection/node.rb +239 -0
  16. data/lib/mongo/connection/pool.rb +347 -0
  17. data/lib/mongo/connection/pool_manager.rb +325 -0
  18. data/lib/mongo/connection/sharding_pool_manager.rb +67 -0
  19. data/lib/mongo/connection/socket.rb +18 -0
  20. data/lib/mongo/connection/socket/socket_util.rb +37 -0
  21. data/lib/mongo/connection/socket/ssl_socket.rb +95 -0
  22. data/lib/mongo/connection/socket/tcp_socket.rb +86 -0
  23. data/lib/mongo/connection/socket/unix_socket.rb +39 -0
  24. data/lib/mongo/cursor.rb +719 -0
  25. data/lib/mongo/db.rb +735 -0
  26. data/lib/mongo/exception.rb +88 -0
  27. data/lib/mongo/functional.rb +21 -0
  28. data/lib/mongo/functional/authentication.rb +318 -0
  29. data/lib/mongo/functional/logging.rb +85 -0
  30. data/lib/mongo/functional/read_preference.rb +174 -0
  31. data/lib/mongo/functional/sasl_java.rb +48 -0
  32. data/lib/mongo/functional/uri_parser.rb +374 -0
  33. data/lib/mongo/functional/write_concern.rb +66 -0
  34. data/lib/mongo/gridfs.rb +18 -0
  35. data/lib/mongo/gridfs/grid.rb +112 -0
  36. data/lib/mongo/gridfs/grid_ext.rb +53 -0
  37. data/lib/mongo/gridfs/grid_file_system.rb +163 -0
  38. data/lib/mongo/gridfs/grid_io.rb +484 -0
  39. data/lib/mongo/legacy.rb +140 -0
  40. data/lib/mongo/mongo_client.rb +702 -0
  41. data/lib/mongo/mongo_replica_set_client.rb +523 -0
  42. data/lib/mongo/mongo_sharded_client.rb +159 -0
  43. data/lib/mongo/networking.rb +370 -0
  44. data/lib/mongo/utils.rb +19 -0
  45. data/lib/mongo/utils/conversions.rb +110 -0
  46. data/lib/mongo/utils/core_ext.rb +70 -0
  47. data/lib/mongo/utils/server_version.rb +69 -0
  48. data/lib/mongo/utils/support.rb +80 -0
  49. data/lib/mongo/utils/thread_local_variable_manager.rb +25 -0
  50. data/mongo.gemspec +36 -0
  51. data/test/functional/authentication_test.rb +35 -0
  52. data/test/functional/bulk_api_stress_test.rb +133 -0
  53. data/test/functional/bulk_write_collection_view_test.rb +1129 -0
  54. data/test/functional/client_test.rb +565 -0
  55. data/test/functional/collection_test.rb +2073 -0
  56. data/test/functional/collection_writer_test.rb +83 -0
  57. data/test/functional/conversions_test.rb +163 -0
  58. data/test/functional/cursor_fail_test.rb +63 -0
  59. data/test/functional/cursor_message_test.rb +57 -0
  60. data/test/functional/cursor_test.rb +625 -0
  61. data/test/functional/db_api_test.rb +819 -0
  62. data/test/functional/db_connection_test.rb +27 -0
  63. data/test/functional/db_test.rb +344 -0
  64. data/test/functional/grid_file_system_test.rb +285 -0
  65. data/test/functional/grid_io_test.rb +252 -0
  66. data/test/functional/grid_test.rb +273 -0
  67. data/test/functional/pool_test.rb +62 -0
  68. data/test/functional/safe_test.rb +98 -0
  69. data/test/functional/ssl_test.rb +29 -0
  70. data/test/functional/support_test.rb +62 -0
  71. data/test/functional/timeout_test.rb +58 -0
  72. data/test/functional/uri_test.rb +330 -0
  73. data/test/functional/write_concern_test.rb +118 -0
  74. data/test/helpers/general.rb +50 -0
  75. data/test/helpers/test_unit.rb +317 -0
  76. data/test/replica_set/authentication_test.rb +35 -0
  77. data/test/replica_set/basic_test.rb +174 -0
  78. data/test/replica_set/client_test.rb +341 -0
  79. data/test/replica_set/complex_connect_test.rb +77 -0
  80. data/test/replica_set/connection_test.rb +138 -0
  81. data/test/replica_set/count_test.rb +64 -0
  82. data/test/replica_set/cursor_test.rb +212 -0
  83. data/test/replica_set/insert_test.rb +140 -0
  84. data/test/replica_set/max_values_test.rb +145 -0
  85. data/test/replica_set/pinning_test.rb +55 -0
  86. data/test/replica_set/query_test.rb +73 -0
  87. data/test/replica_set/read_preference_test.rb +214 -0
  88. data/test/replica_set/refresh_test.rb +175 -0
  89. data/test/replica_set/replication_ack_test.rb +94 -0
  90. data/test/replica_set/ssl_test.rb +32 -0
  91. data/test/sharded_cluster/basic_test.rb +197 -0
  92. data/test/shared/authentication/basic_auth_shared.rb +286 -0
  93. data/test/shared/authentication/bulk_api_auth_shared.rb +259 -0
  94. data/test/shared/authentication/gssapi_shared.rb +164 -0
  95. data/test/shared/authentication/sasl_plain_shared.rb +96 -0
  96. data/test/shared/ssl_shared.rb +235 -0
  97. data/test/test_helper.rb +56 -0
  98. data/test/threading/basic_test.rb +120 -0
  99. data/test/tools/mongo_config.rb +608 -0
  100. data/test/tools/mongo_config_test.rb +160 -0
  101. data/test/unit/client_test.rb +347 -0
  102. data/test/unit/collection_test.rb +166 -0
  103. data/test/unit/connection_test.rb +325 -0
  104. data/test/unit/cursor_test.rb +299 -0
  105. data/test/unit/db_test.rb +136 -0
  106. data/test/unit/grid_test.rb +76 -0
  107. data/test/unit/mongo_sharded_client_test.rb +48 -0
  108. data/test/unit/node_test.rb +93 -0
  109. data/test/unit/pool_manager_test.rb +142 -0
  110. data/test/unit/read_pref_test.rb +115 -0
  111. data/test/unit/read_test.rb +159 -0
  112. data/test/unit/safe_test.rb +158 -0
  113. data/test/unit/sharding_pool_manager_test.rb +84 -0
  114. data/test/unit/write_concern_test.rb +175 -0
  115. metadata +260 -0
  116. metadata.gz.sig +0 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2cc3ce7b36f61b8784629e34051b56e16aaf9b45
4
+ data.tar.gz: dcfb781eb48c4e0dc0d175fd51a23beaaaeb286f
5
+ SHA512:
6
+ metadata.gz: b3e5d83a165dfb3fae3d7b79183e8575a3edc8a6cab643d19aeeef414e7fd33f038c5c5a85f58079d20330bc58d6a7e3d856220781bc3555e68c34c89412db5e
7
+ data.tar.gz: 113ee10195244e9fc19fac38c455b02d0936d781e729394c0ed021a794b0b05613acc05f433910e580439349459e36094cdfb1efa963f69767dfe52e2f03b45d
Binary file
Binary file
data/LICENSE ADDED
@@ -0,0 +1,190 @@
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.
@@ -0,0 +1,149 @@
1
+ MongoDB Ruby Driver [![Build Status][travis-img]][travis-url] [![Code Climate][codeclimate-img]][codeclimate-url] [![Coverage Status][coveralls-img]][coveralls-url] [![Gem Version][rubygems-img]][rubygems-url]
2
+ -----
3
+ The officially supported Ruby driver for [MongoDB](http://www.mongodb.org).
4
+
5
+ Installation
6
+ -----
7
+
8
+ **Gem Installation**<br>
9
+ The Ruby driver is released and distributed through RubyGems and it can be installed with the following command:
10
+
11
+ ```bash
12
+ gem install mongo
13
+ ```
14
+
15
+ For a significant performance boost, you'll want to install the C-extension:
16
+
17
+ ```bash
18
+ gem install bson_ext
19
+ ```
20
+
21
+ **Github Installation**<br>
22
+ For development and test environments (not recommended for production) you can also install the Ruby driver directly from source:
23
+
24
+ ```bash
25
+ # clone the repository
26
+ git clone https://github.com/mongodb/mongo-ruby-driver.git
27
+ cd mongo-ruby-driver
28
+
29
+ # checkout a specific version by tag (optional)
30
+ git checkout 1.x.x
31
+
32
+ # install all development dependencies
33
+ gem install bundler
34
+ bundle install
35
+
36
+ # install the ruby driver
37
+ rake install
38
+ ```
39
+
40
+ Usage
41
+ -----
42
+ Here is a quick example of basic usage for the Ruby driver:
43
+
44
+ ```ruby
45
+ require 'mongo'
46
+ include Mongo
47
+
48
+ # connecting to the database
49
+ client = MongoClient.new # defaults to localhost:27017
50
+ db = client['example-db']
51
+ coll = db['example-collection']
52
+
53
+ # inserting documents
54
+ 10.times { |i| coll.insert({ :count => i+1 }) }
55
+
56
+ # finding documents
57
+ puts "There are #{coll.count} total documents. Here they are:"
58
+ coll.find.each { |doc| puts doc.inspect }
59
+
60
+ # updating documents
61
+ coll.update({ :count => 5 }, { :count => 'foobar' })
62
+
63
+ # removing documents
64
+ coll.remove({ :count => 8 })
65
+ coll.remove
66
+ ```
67
+
68
+ Wiki - Tutorials & Examples
69
+ -----
70
+ For many more usage examples and a full tutorial, please visit our [wiki](https://github.com/mongodb/mongo-ruby-driver/wiki).<br>
71
+
72
+ API Reference Documentation
73
+ -----
74
+ For API reference documentation, please visit [here](http://api.mongodb.org/ruby).
75
+
76
+ Compatibility
77
+ -----
78
+ The MongoDB Ruby driver requires Ruby 1.8.7 or greater and is regularly tested against the platforms and environments listed below.
79
+
80
+ Ruby Platforms | Operating Systems | Architectures
81
+ -------------- | ----------------- | -------------
82
+ MRI 1.8.7, 1.9.3, 2.0.0<br>JRuby 1.7.x | Windows<br>Linux<br>OS X | x86<br>x64<br>ARM
83
+
84
+ Support & Feedback
85
+ -----
86
+
87
+ For issues, questions or feedback related to the Ruby driver, please look into
88
+ our [support channels](http://www.mongodb.org/about/support). Please
89
+ do not email any of the Ruby developers directly with issues or
90
+ questions - you're more likely to get an answer quickly on the [mongodb-user list](http://groups.google.com/group/mongodb-user) on Google Groups.
91
+
92
+ Bugs & Feature Requests
93
+ -----
94
+
95
+ Do you have a bug to report or a feature request to make?
96
+
97
+ 1. Visit [our issue tracker](https://jira.mongodb.org) and login (or create an account if necessary).
98
+ 2. Navigate to the [RUBY](https://jira.mongodb.org/browse/RUBY) project.
99
+ 3. Click 'Create Issue' and fill out all the applicable form fields.
100
+
101
+ When reporting an issue, please keep in mind that all information in JIRA for all driver projects (ex. RUBY, CSHARP, JAVA) and the Core Server (ex. SERVER) project is **PUBLICLY** visible.
102
+
103
+ **PLEASE DO**
104
+
105
+ * Provide as much information as possible about the issue.
106
+ * Provide detailed steps for reproducing the issue.
107
+ * Provide any applicable code snippets, stack traces and log data.
108
+ * Specify version information for the driver and MongoDB.
109
+
110
+ **PLEASE DO NOT**
111
+
112
+ * Provide any sensitive data or server logs.
113
+ * Report potential security issues publicly (see 'Security Issues').
114
+
115
+ Security Issues
116
+ -----
117
+
118
+ If you’ve identified a potential security related issue in a driver or any other MongoDB project, please report it by following the [instructions here](http://docs.mongodb.org/manual/tutorial/create-a-vulnerability-report).
119
+
120
+ Release History
121
+ -----
122
+
123
+ Full release notes and release history are available [here](https://github.com/mongodb/mongo-ruby-driver/releases).
124
+
125
+ License
126
+ -----
127
+
128
+ Copyright (C) 2009-2013 MongoDB, Inc.
129
+
130
+ Licensed under the Apache License, Version 2.0 (the "License");
131
+ you may not use this file except in compliance with the License.
132
+ You may obtain a copy of the License at
133
+
134
+ http://www.apache.org/licenses/LICENSE-2.0
135
+
136
+ Unless required by applicable law or agreed to in writing, software
137
+ distributed under the License is distributed on an "AS IS" BASIS,
138
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
139
+ See the License for the specific language governing permissions and
140
+ limitations under the License.
141
+
142
+ [rubygems-img]: https://badge.fury.io/rb/mongo.png
143
+ [rubygems-url]: http://badge.fury.io/rb/mongo
144
+ [travis-img]: https://secure.travis-ci.org/mongodb/mongo-ruby-driver.png?branch=1.x-stable
145
+ [travis-url]: http://travis-ci.org/mongodb/mongo-ruby-driver?branch=1.x-stable
146
+ [codeclimate-img]: https://codeclimate.com/github/mongodb/mongo-ruby-driver.png?branch=1.x-stable
147
+ [codeclimate-url]: https://codeclimate.com/github/mongodb/mongo-ruby-driver?branch=1.x-stable
148
+ [coveralls-img]: https://coveralls.io/repos/mongodb/mongo-ruby-driver/badge.png?branch=1.x-stable
149
+ [coveralls-url]: https://coveralls.io/r/mongodb/mongo-ruby-driver?branch=1.x-stable
@@ -0,0 +1,31 @@
1
+ # Copyright (C) 2009-2013 MongoDB, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ require 'rubygems'
16
+
17
+ begin
18
+ require 'bundler'
19
+ rescue LoadError
20
+ raise '[FAIL] Bundler not found! Install it with `gem install bundler && bundle`.'
21
+ end
22
+
23
+ rake_tasks = Dir.glob(File.join('tasks', '**', '*.rake')).sort
24
+ if ENV.keys.any? { |k| k.end_with?('_CI') }
25
+ Bundler.require(:default, :testing)
26
+ rake_tasks.reject! { |r| r =~ /deploy/ }
27
+ else
28
+ Bundler.require(:default, :testing, :deploy, :development)
29
+ end
30
+
31
+ rake_tasks.each { |rake| load File.expand_path(rake) }
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.10.0
@@ -0,0 +1,43 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Copyright (C) 2009-2013 MongoDB, Inc.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ org_argv = ARGV.dup
18
+ ARGV.clear
19
+
20
+ $LOAD_PATH[0,0] = File.join(File.dirname(__FILE__), '..', 'lib')
21
+
22
+ require 'mongo'
23
+ include Mongo
24
+
25
+ host = org_argv[0] || ENV['MONGO_RUBY_DRIVER_HOST'] || 'localhost'
26
+ port = org_argv[1] || ENV['MONGO_RUBY_DRIVER_PORT'] || MongoClient::DEFAULT_PORT
27
+ dbnm = org_argv[2] || ENV['MONGO_RUBY_DRIVER_DB'] || 'ruby-mongo-console'
28
+
29
+ puts "Connecting to #{host}:#{port} (CLIENT) on with database #{dbnm} (DB)"
30
+ CLIENT = MongoClient.new(host, port)
31
+ DB = CLIENT.db(dbnm)
32
+
33
+ # try pry if available, fall back to irb
34
+ begin
35
+ require 'pry'
36
+ CONSOLE_CLASS = Pry
37
+ rescue LoadError
38
+ require 'irb'
39
+ CONSOLE_CLASS = IRB
40
+ end
41
+
42
+ puts "Starting #{CONSOLE_CLASS.name} session..."
43
+ CONSOLE_CLASS.start(__FILE__)
@@ -0,0 +1,90 @@
1
+ # Copyright (C) 2009-2013 MongoDB, Inc.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ module Mongo
16
+ ASCENDING = 1
17
+ DESCENDING = -1
18
+ GEO2D = '2d'
19
+ GEO2DSPHERE = '2dsphere'
20
+ GEOHAYSTACK = 'geoHaystack'
21
+ TEXT = 'text'
22
+ HASHED = 'hashed'
23
+
24
+ INDEX_TYPES = {
25
+ 'ASCENDING' => ASCENDING,
26
+ 'DESCENDING' => DESCENDING,
27
+ 'GEO2D' => GEO2D,
28
+ 'GEO2DSPHERE' => GEO2DSPHERE,
29
+ 'GEOHAYSTACK' => GEOHAYSTACK,
30
+ 'TEXT' => TEXT,
31
+ 'HASHED' => HASHED
32
+ }
33
+
34
+ DEFAULT_MAX_BSON_SIZE = 4 * 1024 * 1024
35
+ MESSAGE_SIZE_FACTOR = 2
36
+
37
+ module Constants
38
+ OP_REPLY = 1
39
+ OP_MSG = 1000
40
+ OP_UPDATE = 2001
41
+ OP_INSERT = 2002
42
+ OP_QUERY = 2004
43
+ OP_GET_MORE = 2005
44
+ OP_DELETE = 2006
45
+ OP_KILL_CURSORS = 2007
46
+
47
+ OP_QUERY_TAILABLE = 2 ** 1
48
+ OP_QUERY_SLAVE_OK = 2 ** 2
49
+ OP_QUERY_OPLOG_REPLAY = 2 ** 3
50
+ OP_QUERY_NO_CURSOR_TIMEOUT = 2 ** 4
51
+ OP_QUERY_AWAIT_DATA = 2 ** 5
52
+ OP_QUERY_EXHAUST = 2 ** 6
53
+ OP_QUERY_PARTIAL = 2 ** 7
54
+
55
+ REPLY_CURSOR_NOT_FOUND = 2 ** 0
56
+ REPLY_QUERY_FAILURE = 2 ** 1
57
+ REPLY_SHARD_CONFIG_STALE = 2 ** 2
58
+ REPLY_AWAIT_CAPABLE = 2 ** 3
59
+ end
60
+
61
+ module ErrorCode # MongoDB Core Server src/mongo/base/error_codes.err
62
+ BAD_VALUE = 2
63
+ UNKNOWN_ERROR = 8
64
+ INVALID_BSON = 22
65
+ COMMAND_NOT_FOUND = 59
66
+ WRITE_CONCERN_FAILED = 64
67
+ MULTIPLE_ERRORS_OCCURRED = 65
68
+ end
69
+ end
70
+
71
+ require 'bson'
72
+
73
+ require 'set'
74
+ require 'thread'
75
+
76
+ require 'mongo/utils'
77
+ require 'mongo/exception'
78
+ require 'mongo/functional'
79
+ require 'mongo/connection'
80
+ require 'mongo/collection_writer'
81
+ require 'mongo/collection'
82
+ require 'mongo/bulk_write_collection_view'
83
+ require 'mongo/cursor'
84
+ require 'mongo/db'
85
+ require 'mongo/gridfs'
86
+ require 'mongo/networking'
87
+ require 'mongo/mongo_client'
88
+ require 'mongo/mongo_replica_set_client'
89
+ require 'mongo/mongo_sharded_client'
90
+ require 'mongo/legacy'