mongoid 2.4.9 → 3.0.0.rc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (351) hide show
  1. data/CHANGELOG.md +869 -8
  2. data/LICENSE +1 -1
  3. data/README.md +10 -11
  4. data/Rakefile +2 -17
  5. data/lib/config/locales/en.yml +441 -51
  6. data/lib/mongoid/atomic/modifiers.rb +2 -2
  7. data/lib/mongoid/atomic/paths/embedded/many.rb +6 -6
  8. data/lib/mongoid/atomic/paths/embedded/one.rb +5 -5
  9. data/lib/mongoid/atomic/paths/embedded.rb +4 -5
  10. data/lib/mongoid/atomic/paths/root.rb +4 -5
  11. data/lib/mongoid/atomic.rb +16 -6
  12. data/lib/mongoid/attributes/processing.rb +14 -10
  13. data/lib/mongoid/attributes/readonly.rb +56 -0
  14. data/lib/mongoid/attributes.rb +95 -32
  15. data/lib/mongoid/callbacks.rb +100 -42
  16. data/lib/mongoid/collections/retry.rb +2 -3
  17. data/lib/mongoid/components.rb +10 -22
  18. data/lib/mongoid/config/environment.rb +4 -3
  19. data/lib/mongoid/config/inflections.rb +6 -0
  20. data/lib/mongoid/config/options.rb +1 -1
  21. data/lib/mongoid/config/validators/option.rb +25 -0
  22. data/lib/mongoid/config/validators/session.rb +140 -0
  23. data/lib/mongoid/config/validators.rb +3 -0
  24. data/lib/mongoid/config.rb +87 -233
  25. data/lib/mongoid/contextual/aggregable/memory.rb +98 -0
  26. data/lib/mongoid/contextual/aggregable/mongo.rb +181 -0
  27. data/lib/mongoid/contextual/atomic.rb +179 -0
  28. data/lib/mongoid/contextual/command.rb +43 -0
  29. data/lib/mongoid/contextual/find_and_modify.rb +66 -0
  30. data/lib/mongoid/contextual/map_reduce.rb +273 -0
  31. data/lib/mongoid/contextual/memory.rb +383 -0
  32. data/lib/mongoid/contextual/mongo.rb +543 -0
  33. data/lib/mongoid/contextual.rb +50 -0
  34. data/lib/mongoid/copyable.rb +2 -2
  35. data/lib/mongoid/criteria.rb +436 -248
  36. data/lib/mongoid/criterion/inspection.rb +14 -8
  37. data/lib/mongoid/criterion/scoping.rb +114 -44
  38. data/lib/mongoid/dirty.rb +152 -67
  39. data/lib/mongoid/document.rb +68 -49
  40. data/lib/mongoid/errors/ambiguous_relationship.rb +51 -0
  41. data/lib/mongoid/errors/callback.rb +5 -6
  42. data/lib/mongoid/errors/delete_restriction.rb +29 -0
  43. data/lib/mongoid/errors/document_not_found.rb +98 -17
  44. data/lib/mongoid/errors/eager_load.rb +3 -6
  45. data/lib/mongoid/errors/invalid_collection.rb +3 -3
  46. data/lib/mongoid/errors/invalid_config_option.rb +27 -0
  47. data/lib/mongoid/errors/invalid_database.rb +3 -3
  48. data/lib/mongoid/errors/invalid_field.rb +54 -8
  49. data/lib/mongoid/errors/invalid_field_option.rb +35 -0
  50. data/lib/mongoid/errors/invalid_find.rb +3 -3
  51. data/lib/mongoid/errors/invalid_index.rb +28 -0
  52. data/lib/mongoid/errors/invalid_options.rb +4 -4
  53. data/lib/mongoid/errors/invalid_scope.rb +24 -0
  54. data/lib/mongoid/errors/invalid_set_polymorphic_relation.rb +38 -0
  55. data/lib/mongoid/errors/invalid_storage_options.rb +27 -0
  56. data/lib/mongoid/errors/invalid_time.rb +3 -6
  57. data/lib/mongoid/errors/inverse_not_found.rb +29 -0
  58. data/lib/mongoid/errors/mixed_relations.rb +4 -9
  59. data/lib/mongoid/errors/mixed_session_configuration.rb +28 -0
  60. data/lib/mongoid/errors/mongoid_error.rb +54 -3
  61. data/lib/mongoid/errors/nested_attributes_metadata_not_found.rb +28 -0
  62. data/lib/mongoid/errors/no_default_session.rb +23 -0
  63. data/lib/mongoid/errors/no_environment.rb +3 -3
  64. data/lib/mongoid/errors/no_map_reduce_output.rb +24 -0
  65. data/lib/mongoid/errors/no_parent.rb +24 -0
  66. data/lib/mongoid/errors/no_session_config.rb +22 -0
  67. data/lib/mongoid/errors/no_session_database.rb +27 -0
  68. data/lib/mongoid/errors/no_session_hosts.rb +27 -0
  69. data/lib/mongoid/errors/no_sessions_config.rb +20 -0
  70. data/lib/mongoid/errors/readonly_attribute.rb +25 -0
  71. data/lib/mongoid/errors/scope_overwrite.rb +4 -4
  72. data/lib/mongoid/errors/too_many_nested_attribute_records.rb +4 -4
  73. data/lib/mongoid/errors/unknown_attribute.rb +25 -0
  74. data/lib/mongoid/errors/unsaved_document.rb +4 -8
  75. data/lib/mongoid/errors/unsupported_javascript.rb +27 -0
  76. data/lib/mongoid/errors/unsupported_version.rb +4 -4
  77. data/lib/mongoid/errors/validations.rb +7 -6
  78. data/lib/mongoid/errors/versioning_not_on_root.rb +23 -0
  79. data/lib/mongoid/errors.rb +22 -1
  80. data/lib/mongoid/extensions/array.rb +127 -0
  81. data/lib/mongoid/extensions/big_decimal.rb +42 -0
  82. data/lib/mongoid/extensions/boolean.rb +24 -0
  83. data/lib/mongoid/extensions/date.rb +70 -0
  84. data/lib/mongoid/extensions/date_time.rb +68 -0
  85. data/lib/mongoid/extensions/false_class.rb +26 -0
  86. data/lib/mongoid/extensions/float.rb +44 -0
  87. data/lib/mongoid/extensions/hash.rb +91 -0
  88. data/lib/mongoid/extensions/integer.rb +54 -0
  89. data/lib/mongoid/extensions/module.rb +28 -0
  90. data/lib/mongoid/extensions/nil_class.rb +21 -0
  91. data/lib/mongoid/extensions/object.rb +188 -0
  92. data/lib/mongoid/extensions/object_id.rb +53 -0
  93. data/lib/mongoid/extensions/range.rb +55 -0
  94. data/lib/mongoid/extensions/regexp.rb +27 -0
  95. data/lib/mongoid/extensions/set.rb +55 -0
  96. data/lib/mongoid/extensions/string.rb +155 -0
  97. data/lib/mongoid/extensions/symbol.rb +54 -0
  98. data/lib/mongoid/extensions/time.rb +78 -0
  99. data/lib/mongoid/extensions/time_with_zone.rb +55 -0
  100. data/lib/mongoid/extensions/true_class.rb +26 -0
  101. data/lib/mongoid/extensions.rb +28 -76
  102. data/lib/mongoid/factory.rb +4 -4
  103. data/lib/mongoid/fields/foreign_key.rb +134 -0
  104. data/lib/mongoid/fields/localized.rb +73 -0
  105. data/lib/mongoid/fields/standard.rb +268 -0
  106. data/lib/mongoid/fields/validators/macro.rb +83 -0
  107. data/lib/mongoid/fields/validators.rb +2 -0
  108. data/lib/mongoid/fields.rb +129 -194
  109. data/lib/mongoid/finders.rb +42 -43
  110. data/lib/mongoid/hierarchy.rb +25 -14
  111. data/lib/mongoid/identity_map.rb +39 -12
  112. data/lib/mongoid/indexes/validators/options.rb +80 -0
  113. data/lib/mongoid/indexes.rb +66 -15
  114. data/lib/mongoid/inspection.rb +1 -1
  115. data/lib/mongoid/javascript.rb +1 -1
  116. data/lib/mongoid/json.rb +2 -2
  117. data/lib/mongoid/loggable.rb +69 -0
  118. data/lib/mongoid/matchers/all.rb +7 -8
  119. data/lib/mongoid/matchers/and.rb +3 -3
  120. data/lib/mongoid/matchers/default.rb +6 -4
  121. data/lib/mongoid/matchers/exists.rb +2 -2
  122. data/lib/mongoid/matchers/gt.rb +2 -2
  123. data/lib/mongoid/matchers/gte.rb +2 -2
  124. data/lib/mongoid/matchers/in.rb +3 -7
  125. data/lib/mongoid/matchers/lt.rb +2 -2
  126. data/lib/mongoid/matchers/lte.rb +2 -2
  127. data/lib/mongoid/matchers/ne.rb +2 -2
  128. data/lib/mongoid/matchers/nin.rb +2 -2
  129. data/lib/mongoid/matchers/or.rb +2 -2
  130. data/lib/mongoid/matchers/size.rb +2 -2
  131. data/lib/mongoid/matchers/strategies.rb +3 -3
  132. data/lib/mongoid/matchers.rb +1 -1
  133. data/lib/mongoid/multi_parameter_attributes.rb +8 -10
  134. data/lib/mongoid/nested_attributes.rb +17 -9
  135. data/lib/mongoid/observer.rb +1 -2
  136. data/lib/mongoid/paranoia.rb +13 -18
  137. data/lib/mongoid/persistence/atomic/add_to_set.rb +5 -9
  138. data/lib/mongoid/persistence/atomic/bit.rb +5 -7
  139. data/lib/mongoid/persistence/atomic/inc.rb +5 -7
  140. data/lib/mongoid/persistence/atomic/operation.rb +45 -6
  141. data/lib/mongoid/persistence/atomic/pop.rb +5 -7
  142. data/lib/mongoid/persistence/atomic/pull.rb +5 -7
  143. data/lib/mongoid/persistence/atomic/pull_all.rb +5 -7
  144. data/lib/mongoid/persistence/atomic/push.rb +4 -10
  145. data/lib/mongoid/persistence/atomic/push_all.rb +4 -10
  146. data/lib/mongoid/persistence/atomic/rename.rb +6 -7
  147. data/lib/mongoid/persistence/atomic/sets.rb +5 -7
  148. data/lib/mongoid/persistence/atomic/unset.rb +4 -5
  149. data/lib/mongoid/persistence/atomic.rb +2 -2
  150. data/lib/mongoid/persistence/deletion.rb +2 -2
  151. data/lib/mongoid/persistence/insertion.rb +10 -16
  152. data/lib/mongoid/persistence/modification.rb +5 -9
  153. data/lib/mongoid/persistence/operations/embedded/insert.rb +7 -6
  154. data/lib/mongoid/persistence/operations/embedded/remove.rb +5 -5
  155. data/lib/mongoid/persistence/operations/insert.rb +4 -4
  156. data/lib/mongoid/persistence/operations/remove.rb +4 -4
  157. data/lib/mongoid/persistence/operations/update.rb +5 -5
  158. data/lib/mongoid/persistence/operations.rb +6 -19
  159. data/lib/mongoid/persistence.rb +64 -27
  160. data/lib/mongoid/railtie.rb +26 -11
  161. data/lib/mongoid/railties/database.rake +22 -108
  162. data/lib/mongoid/relations/accessors.rb +119 -19
  163. data/lib/mongoid/relations/auto_save.rb +59 -5
  164. data/lib/mongoid/relations/binding.rb +211 -2
  165. data/lib/mongoid/relations/bindings/embedded/in.rb +16 -22
  166. data/lib/mongoid/relations/bindings/embedded/many.rb +9 -50
  167. data/lib/mongoid/relations/bindings/embedded/one.rb +10 -16
  168. data/lib/mongoid/relations/bindings/referenced/in.rb +31 -57
  169. data/lib/mongoid/relations/bindings/referenced/many.rb +8 -20
  170. data/lib/mongoid/relations/bindings/referenced/many_to_many.rb +15 -19
  171. data/lib/mongoid/relations/bindings/referenced/one.rb +10 -24
  172. data/lib/mongoid/relations/builder.rb +3 -3
  173. data/lib/mongoid/relations/builders/embedded/in.rb +5 -5
  174. data/lib/mongoid/relations/builders/embedded/many.rb +12 -12
  175. data/lib/mongoid/relations/builders/embedded/one.rb +6 -6
  176. data/lib/mongoid/relations/builders/nested_attributes/many.rb +8 -8
  177. data/lib/mongoid/relations/builders/nested_attributes/one.rb +4 -4
  178. data/lib/mongoid/relations/builders/referenced/in.rb +4 -4
  179. data/lib/mongoid/relations/builders/referenced/many.rb +5 -5
  180. data/lib/mongoid/relations/builders/referenced/many_to_many.rb +7 -5
  181. data/lib/mongoid/relations/builders/referenced/one.rb +5 -5
  182. data/lib/mongoid/relations/builders.rb +19 -16
  183. data/lib/mongoid/relations/cascading/delete.rb +12 -4
  184. data/lib/mongoid/relations/cascading/destroy.rb +3 -3
  185. data/lib/mongoid/relations/cascading/nullify.rb +3 -3
  186. data/lib/mongoid/relations/cascading/restrict.rb +37 -0
  187. data/lib/mongoid/relations/cascading.rb +6 -4
  188. data/lib/mongoid/relations/constraint.rb +4 -3
  189. data/lib/mongoid/relations/conversions.rb +5 -6
  190. data/lib/mongoid/relations/cyclic.rb +7 -7
  191. data/lib/mongoid/relations/embedded/batchable.rb +346 -0
  192. data/lib/mongoid/relations/embedded/in.rb +23 -12
  193. data/lib/mongoid/relations/embedded/many.rb +99 -148
  194. data/lib/mongoid/relations/embedded/one.rb +25 -14
  195. data/lib/mongoid/relations/macros.rb +105 -60
  196. data/lib/mongoid/relations/many.rb +93 -14
  197. data/lib/mongoid/relations/metadata.rb +231 -45
  198. data/lib/mongoid/relations/nested_builder.rb +3 -5
  199. data/lib/mongoid/relations/one.rb +14 -2
  200. data/lib/mongoid/relations/options.rb +2 -2
  201. data/lib/mongoid/relations/polymorphic.rb +9 -9
  202. data/lib/mongoid/relations/proxy.rb +60 -31
  203. data/lib/mongoid/relations/referenced/in.rb +40 -15
  204. data/lib/mongoid/relations/referenced/many.rb +116 -122
  205. data/lib/mongoid/relations/referenced/many_to_many.rb +101 -46
  206. data/lib/mongoid/relations/referenced/one.rb +34 -13
  207. data/lib/mongoid/relations/reflections.rb +3 -3
  208. data/lib/mongoid/relations/synchronization.rb +19 -23
  209. data/lib/mongoid/relations/targets/enumerable.rb +86 -57
  210. data/lib/mongoid/relations/touchable.rb +32 -0
  211. data/lib/mongoid/relations.rb +6 -6
  212. data/lib/mongoid/reloading.rb +12 -14
  213. data/lib/mongoid/scoping.rb +329 -0
  214. data/lib/mongoid/serialization.rb +13 -30
  215. data/lib/mongoid/sessions/factory.rb +106 -0
  216. data/lib/mongoid/sessions/mongo_uri.rb +93 -0
  217. data/lib/mongoid/sessions/validators/storage.rb +49 -0
  218. data/lib/mongoid/sessions/validators.rb +2 -0
  219. data/lib/mongoid/sessions.rb +359 -0
  220. data/lib/mongoid/sharding.rb +6 -6
  221. data/lib/mongoid/state.rb +6 -7
  222. data/lib/mongoid/threaded/lifecycle.rb +21 -21
  223. data/lib/mongoid/threaded/sessions.rb +0 -0
  224. data/lib/mongoid/threaded.rb +167 -59
  225. data/lib/mongoid/timestamps/created.rb +8 -4
  226. data/lib/mongoid/timestamps/timeless.rb +6 -4
  227. data/lib/mongoid/timestamps/updated.rb +3 -3
  228. data/lib/mongoid/timestamps.rb +1 -1
  229. data/lib/mongoid/unit_of_work.rb +61 -0
  230. data/lib/mongoid/validations/associated.rb +2 -2
  231. data/lib/mongoid/validations/format.rb +2 -2
  232. data/lib/mongoid/validations/presence.rb +34 -4
  233. data/lib/mongoid/validations/uniqueness.rb +103 -25
  234. data/lib/mongoid/validations.rb +62 -20
  235. data/lib/mongoid/version.rb +2 -2
  236. data/lib/mongoid/versioning.rb +25 -26
  237. data/lib/mongoid.rb +24 -39
  238. data/lib/rack/mongoid/middleware/identity_map.rb +3 -3
  239. data/lib/rails/generators/mongoid/config/config_generator.rb +1 -1
  240. data/lib/rails/generators/mongoid/config/templates/mongoid.yml +59 -19
  241. data/lib/rails/generators/mongoid/model/model_generator.rb +7 -7
  242. data/lib/rails/generators/mongoid/model/templates/model.rb.tt +2 -2
  243. data/lib/rails/generators/mongoid/observer/observer_generator.rb +4 -4
  244. data/lib/rails/generators/mongoid_generator.rb +5 -5
  245. data/lib/rails/mongoid.rb +69 -25
  246. metadata +93 -155
  247. data/lib/config/locales/bg.yml +0 -61
  248. data/lib/config/locales/de.yml +0 -61
  249. data/lib/config/locales/en-GB.yml +0 -64
  250. data/lib/config/locales/es.yml +0 -59
  251. data/lib/config/locales/fr.yml +0 -62
  252. data/lib/config/locales/hi.yml +0 -53
  253. data/lib/config/locales/hu.yml +0 -64
  254. data/lib/config/locales/id.yml +0 -62
  255. data/lib/config/locales/it.yml +0 -59
  256. data/lib/config/locales/ja.yml +0 -57
  257. data/lib/config/locales/kr.yml +0 -54
  258. data/lib/config/locales/nl.yml +0 -61
  259. data/lib/config/locales/pl.yml +0 -59
  260. data/lib/config/locales/pt-BR.yml +0 -60
  261. data/lib/config/locales/pt.yml +0 -60
  262. data/lib/config/locales/ro.yml +0 -66
  263. data/lib/config/locales/ru.yml +0 -61
  264. data/lib/config/locales/sv.yml +0 -60
  265. data/lib/config/locales/vi.yml +0 -62
  266. data/lib/config/locales/zh-CN.yml +0 -53
  267. data/lib/mongoid/collection.rb +0 -157
  268. data/lib/mongoid/collections/master.rb +0 -45
  269. data/lib/mongoid/collections/operations.rb +0 -44
  270. data/lib/mongoid/collections.rb +0 -120
  271. data/lib/mongoid/config/database.rb +0 -181
  272. data/lib/mongoid/config/replset_database.rb +0 -80
  273. data/lib/mongoid/contexts/enumerable/sort.rb +0 -43
  274. data/lib/mongoid/contexts/enumerable.rb +0 -313
  275. data/lib/mongoid/contexts/mongo.rb +0 -485
  276. data/lib/mongoid/contexts.rb +0 -25
  277. data/lib/mongoid/criterion/builder.rb +0 -34
  278. data/lib/mongoid/criterion/complex.rb +0 -84
  279. data/lib/mongoid/criterion/creational.rb +0 -34
  280. data/lib/mongoid/criterion/exclusion.rb +0 -108
  281. data/lib/mongoid/criterion/inclusion.rb +0 -290
  282. data/lib/mongoid/criterion/optional.rb +0 -259
  283. data/lib/mongoid/criterion/selector.rb +0 -177
  284. data/lib/mongoid/cursor.rb +0 -88
  285. data/lib/mongoid/default_scope.rb +0 -36
  286. data/lib/mongoid/errors/invalid_type.rb +0 -25
  287. data/lib/mongoid/extensions/array/deep_copy.rb +0 -25
  288. data/lib/mongoid/extensions/array/deletion.rb +0 -29
  289. data/lib/mongoid/extensions/false_class/equality.rb +0 -26
  290. data/lib/mongoid/extensions/hash/criteria_helpers.rb +0 -47
  291. data/lib/mongoid/extensions/hash/deep_copy.rb +0 -25
  292. data/lib/mongoid/extensions/hash/scoping.rb +0 -25
  293. data/lib/mongoid/extensions/integer/checks.rb +0 -23
  294. data/lib/mongoid/extensions/nil/collectionization.rb +0 -23
  295. data/lib/mongoid/extensions/object/checks.rb +0 -29
  296. data/lib/mongoid/extensions/object/deep_copy.rb +0 -21
  297. data/lib/mongoid/extensions/object/reflections.rb +0 -48
  298. data/lib/mongoid/extensions/object/substitutable.rb +0 -15
  299. data/lib/mongoid/extensions/object/yoda.rb +0 -44
  300. data/lib/mongoid/extensions/object_id/conversions.rb +0 -60
  301. data/lib/mongoid/extensions/proc/scoping.rb +0 -25
  302. data/lib/mongoid/extensions/string/checks.rb +0 -36
  303. data/lib/mongoid/extensions/string/conversions.rb +0 -22
  304. data/lib/mongoid/extensions/string/inflections.rb +0 -118
  305. data/lib/mongoid/extensions/symbol/checks.rb +0 -23
  306. data/lib/mongoid/extensions/symbol/inflections.rb +0 -67
  307. data/lib/mongoid/extensions/true_class/equality.rb +0 -26
  308. data/lib/mongoid/extras.rb +0 -31
  309. data/lib/mongoid/fields/internal/array.rb +0 -76
  310. data/lib/mongoid/fields/internal/big_decimal.rb +0 -63
  311. data/lib/mongoid/fields/internal/bignum.rb +0 -10
  312. data/lib/mongoid/fields/internal/binary.rb +0 -11
  313. data/lib/mongoid/fields/internal/boolean.rb +0 -58
  314. data/lib/mongoid/fields/internal/date.rb +0 -51
  315. data/lib/mongoid/fields/internal/date_time.rb +0 -28
  316. data/lib/mongoid/fields/internal/false_class.rb +0 -10
  317. data/lib/mongoid/fields/internal/fixnum.rb +0 -10
  318. data/lib/mongoid/fields/internal/float.rb +0 -47
  319. data/lib/mongoid/fields/internal/foreign_keys/array.rb +0 -88
  320. data/lib/mongoid/fields/internal/foreign_keys/object.rb +0 -56
  321. data/lib/mongoid/fields/internal/hash.rb +0 -11
  322. data/lib/mongoid/fields/internal/integer.rb +0 -59
  323. data/lib/mongoid/fields/internal/localized.rb +0 -62
  324. data/lib/mongoid/fields/internal/nil_class.rb +0 -53
  325. data/lib/mongoid/fields/internal/object.rb +0 -11
  326. data/lib/mongoid/fields/internal/object_id.rb +0 -46
  327. data/lib/mongoid/fields/internal/range.rb +0 -61
  328. data/lib/mongoid/fields/internal/set.rb +0 -57
  329. data/lib/mongoid/fields/internal/string.rb +0 -42
  330. data/lib/mongoid/fields/internal/symbol.rb +0 -43
  331. data/lib/mongoid/fields/internal/time.rb +0 -23
  332. data/lib/mongoid/fields/internal/time_with_zone.rb +0 -23
  333. data/lib/mongoid/fields/internal/timekeeping.rb +0 -122
  334. data/lib/mongoid/fields/internal/true_class.rb +0 -10
  335. data/lib/mongoid/fields/mappings.rb +0 -42
  336. data/lib/mongoid/fields/serializable.rb +0 -270
  337. data/lib/mongoid/identity.rb +0 -92
  338. data/lib/mongoid/keys.rb +0 -144
  339. data/lib/mongoid/logger.rb +0 -45
  340. data/lib/mongoid/multi_database.rb +0 -31
  341. data/lib/mongoid/named_scope.rb +0 -166
  342. data/lib/mongoid/relations/embedded/atomic/operation.rb +0 -63
  343. data/lib/mongoid/relations/embedded/atomic/pull.rb +0 -65
  344. data/lib/mongoid/relations/embedded/atomic/push_all.rb +0 -59
  345. data/lib/mongoid/relations/embedded/atomic/set.rb +0 -61
  346. data/lib/mongoid/relations/embedded/atomic/unset.rb +0 -41
  347. data/lib/mongoid/relations/embedded/atomic.rb +0 -89
  348. data/lib/mongoid/relations/referenced/batch/insert.rb +0 -57
  349. data/lib/mongoid/relations/referenced/batch.rb +0 -73
  350. data/lib/mongoid/safety.rb +0 -105
  351. data/lib/mongoid/scope.rb +0 -31
@@ -1,485 +0,0 @@
1
- # encoding: utf-8
2
- module Mongoid #:nodoc:
3
- module Contexts #:nodoc:
4
- class Mongo
5
- attr_accessor :criteria
6
-
7
- delegate :cached?, :klass, :options, :field_list, :selector, :to => :criteria
8
- delegate :collection, :to => :klass
9
-
10
- # Perform an add to set on the matching documents.
11
- #
12
- # @example Add to set on all matching.
13
- # Person.where(:name => "Alex").add_to_set(:aliases, "value")
14
- #
15
- # @param [ String ] field The field to add to.
16
- # @param [ Object ] value The value to add.
17
- #
18
- # @return [ Object ] The update value.
19
- #
20
- # @since 2.1.0
21
- def add_to_set(field, value)
22
- klass.collection.update(
23
- selector,
24
- { "$addToSet" => { field => value } },
25
- :multi => true
26
- )
27
- end
28
-
29
- # Aggregate the context. This will take the internally built selector and options
30
- # and pass them on to the Ruby driver's +group()+ method on the collection. The
31
- # collection itself will be retrieved from the class provided, and once the
32
- # query has returned it will provided a grouping of keys with counts.
33
- #
34
- # @example Aggreate the context.
35
- # context.aggregate
36
- #
37
- # @return [ Hash ] A +Hash+ with field values as keys, counts as values
38
- def aggregate
39
- klass.collection.group(
40
- :key => field_list,
41
- :cond => selector,
42
- :initial => { :count => 0 },
43
- :reduce => Javascript.aggregate
44
- )
45
- end
46
-
47
- # Get the average value for the supplied field.
48
- #
49
- # This will take the internally built selector and options
50
- # and pass them on to the Ruby driver's +group()+ method on the collection. The
51
- # collection itself will be retrieved from the class provided, and once the
52
- # query has returned it will provided a grouping of keys with averages.
53
- #
54
- # @example Get the average for a field.
55
- # context.avg(:age)
56
- #
57
- # @param [ Symbol ] field The field to get the average for.
58
- #
59
- # @return [ Numeric ] A numeric value that is the average.
60
- def avg(field)
61
- total = sum(field)
62
- total ? (total / count) : nil
63
- end
64
-
65
- # Determine if the context is empty or blank given the criteria. Will
66
- # perform a quick has_one asking only for the id.
67
- #
68
- # @example Is the context empty?
69
- # context.blank?a
70
- #
71
- # @return [ true, false ] True if blank.
72
- def blank?
73
- klass.collection.find_one(selector, { :fields => [ :_id ] }).nil?
74
- end
75
- alias :empty? :blank?
76
-
77
- # Get the count of matching documents in the database for the context.
78
- #
79
- # @example Get the count without skip and limit taken into consideration.
80
- # context.count
81
- #
82
- # @example Get the count with skip and limit applied.
83
- # context.count(true)
84
- #
85
- # @param [Boolean] extras True to inclued previous skip/limit
86
- # statements in the count; false to ignore them. Defaults to `false`.
87
- #
88
- # @return [ Integer ] The count of documents.
89
- def count(extras = false)
90
- if cached?
91
- @count ||= collection.find(selector, process_options).count(extras)
92
- else
93
- collection.find(selector, process_options).count(extras)
94
- end
95
- end
96
- alias :size :count
97
- alias :length :count
98
-
99
- # Delete all the documents in the database matching the selector.
100
- #
101
- # @example Delete the documents.
102
- # context.delete_all
103
- #
104
- # @return [ Integer ] The number of documents deleted.
105
- #
106
- # @since 2.0.0.rc.1
107
- def delete_all
108
- klass.delete_all(:conditions => selector)
109
- end
110
- alias :delete :delete_all
111
-
112
- # Destroy all the documents in the database matching the selector.
113
- #
114
- # @example Destroy the documents.
115
- # context.destroy_all
116
- #
117
- # @return [ Integer ] The number of documents destroyed.
118
- #
119
- # @since 2.0.0.rc.1
120
- def destroy_all
121
- klass.destroy_all(:conditions => selector)
122
- end
123
- alias :destroy :destroy_all
124
-
125
- # Gets an array of distinct values for the supplied field across the
126
- # entire collection or the susbset given the criteria.
127
- #
128
- # @example Get the distinct values.
129
- # context.distinct(:title)
130
- #
131
- # @param [ Symbol ] field The field to get the values for.
132
- #
133
- # @return [ Array<Object> ] The distinct values for the field.
134
- def distinct(field)
135
- klass.collection.distinct(field, selector)
136
- end
137
-
138
- # Eager load the inclusions for the provided documents.
139
- #
140
- # @example Eager load the inclusions.
141
- # context.eager_load(docs)
142
- #
143
- # @param [ Array<Document> ] docs The docs returning from the db.
144
- #
145
- # @since 2.4.1
146
- def eager_load(docs)
147
- parent_ids = docs.map(&:id)
148
- criteria.inclusions.reject! do |metadata|
149
- if metadata.macro == :referenced_in
150
- child_ids = load_ids(metadata.foreign_key)
151
- metadata.eager_load(child_ids)
152
- else
153
- metadata.eager_load(parent_ids)
154
- end
155
- end
156
- end
157
-
158
- # Execute the context. This will take the selector and options
159
- # and pass them on to the Ruby driver's +find()+ method on the collection. The
160
- # collection itself will be retrieved from the class provided, and once the
161
- # query has returned new documents of the type of class provided will be instantiated.
162
- #
163
- # @example Execute the criteria on the context.
164
- # context.execute
165
- #
166
- # @return [ Cursor ] An enumerable +Cursor+ of results.
167
- def execute
168
- collection, options = klass.collection, process_options
169
- if criteria.inclusions.any?
170
- collection.find(selector, options).entries.tap do |docs|
171
- eager_load(docs)
172
- end
173
- else
174
- collection.find(selector, options)
175
- end
176
- end
177
-
178
- # Loads an array of ids only for the current criteria. Used by eager
179
- # loading to determine the documents to load.
180
- #
181
- # @example Load the related ids.
182
- # criteria.load_ids("person_id")
183
- #
184
- # @param [ String ] key The id or foriegn key string.
185
- #
186
- # @return [ Array<String, BSON::ObjectId> ] The ids to load.
187
- #
188
- # @since 2.2.0
189
- def load_ids(key)
190
- klass.collection.driver.find(
191
- selector,
192
- process_options.merge({ :fields => { key => 1 }})
193
- ).map { |doc| doc[key] }
194
- end
195
-
196
- # Return the first result for the +Context+.
197
- #
198
- # @example Get the first document.
199
- # context.one
200
- #
201
- # @return [ Document ] The first document in the collection.
202
- def first
203
- attributes = klass.collection.find_one(selector, options_with_default_sorting)
204
- return nil unless attributes
205
- selecting do
206
- Mongoid::Factory.from_db(klass, attributes).tap do |doc|
207
- eager_load([ doc ]) if criteria.inclusions.any?
208
- end
209
- end
210
- end
211
- alias :one :first
212
-
213
- # Groups the context. This will take the internally built selector and options
214
- # and pass them on to the Ruby driver's +group()+ method on the collection. The
215
- # collection itself will be retrieved from the class provided, and once the
216
- # query has returned it will provided a grouping of keys with objects.
217
- #
218
- # @example Get the criteria as a group.
219
- # context.group
220
- #
221
- # @return [ Hash ] Hash with field values as keys, arrays of documents as values.
222
- def group
223
- klass.collection.group(
224
- :key => field_list,
225
- :cond => selector,
226
- :initial => { :group => [] },
227
- :reduce => Javascript.group
228
- ).collect do |docs|
229
- docs["group"] = docs["group"].collect do |attrs|
230
- Mongoid::Factory.from_db(klass, attrs)
231
- end
232
- docs
233
- end
234
- end
235
-
236
- # Create the new mongo context. This will execute the queries given the
237
- # selector and options against the database.
238
- #
239
- # @example Create a new context.
240
- # Mongoid::Contexts::Mongo.new(criteria)
241
- #
242
- # @param [ Criteria ] criteria The criteria to create with.
243
- def initialize(criteria)
244
- @criteria = criteria
245
- if klass.hereditary? && !criteria.selector.keys.include?(:_type)
246
- @criteria = criteria.in(:_type => criteria.klass._types)
247
- end
248
- @criteria.cache if klass.cached?
249
- end
250
-
251
- # Iterate over each +Document+ in the results. This can take an optional
252
- # block to pass to each argument in the results.
253
- #
254
- # @example Iterate over the results.
255
- # context.iterate { |doc| p doc }
256
- def iterate(&block)
257
- selecting do
258
- return caching(&block) if cached?
259
- if block_given?
260
- execute.each { |doc| yield doc }
261
- end
262
- end
263
- end
264
-
265
- # Return the last result for the +Context+. Essentially does a find_one on
266
- # the collection with the sorting reversed. If no sorting parameters have
267
- # been provided it will default to ids.
268
- #
269
- # @example Get the last document.
270
- # context.last
271
- #
272
- # @return [ Document ] The last document in the collection.
273
- def last
274
- opts = options_with_default_sorting
275
- opts[:sort] = opts[:sort].map{ |option| [ option[0], option[1].invert ] }.uniq
276
- attributes = klass.collection.find_one(selector, opts)
277
- return nil unless attributes
278
- selecting do
279
- Mongoid::Factory.from_db(klass, attributes).tap do |doc|
280
- eager_load([ doc ]) if criteria.inclusions.any?
281
- end
282
- end
283
- end
284
-
285
- # Return the max value for a field.
286
- #
287
- # This will take the internally built selector and options
288
- # and pass them on to the Ruby driver's +group()+ method on the collection. The
289
- # collection itself will be retrieved from the class provided, and once the
290
- # query has returned it will provided a grouping of keys with sums.
291
- #
292
- # @example Get the max value.
293
- # context.max(:age)
294
- #
295
- # @param [ Symbol ] field The field to get the max for.
296
- #
297
- # @return [ Numeric ] A numeric max value.
298
- def max(field)
299
- grouped(:max, field.to_s, Javascript.max, Javascript.max_finalize)
300
- end
301
-
302
- # Return the min value for a field.
303
- #
304
- # This will take the internally built selector and options
305
- # and pass them on to the Ruby driver's +group()+ method on the collection. The
306
- # collection itself will be retrieved from the class provided, and once the
307
- # query has returned it will provided a grouping of keys with sums.
308
- #
309
- # @example Get the min value.
310
- # context.min(:age)
311
- #
312
- # @param [ Symbol ] field The field to get the min for.
313
- #
314
- # @return [ Numeric ] A numeric minimum value.
315
- def min(field)
316
- grouped(:min, field.to_s, Javascript.min, Javascript.min_finalize)
317
- end
318
-
319
- # Perform a pull on the matching documents.
320
- #
321
- # @example Pull on all matching.
322
- # Person.where(:name => "Alex").pull(:aliases, "value")
323
- #
324
- # @param [ String ] field The field to pull from.
325
- # @param [ Object ] value The value to pull.
326
- #
327
- # @return [ Object ] The update value.
328
- #
329
- # @since 2.1.0
330
- def pull(field, value)
331
- klass.collection.update(
332
- selector,
333
- { "$pull" => { field => value } },
334
- :multi => true
335
- )
336
- end
337
-
338
- # Return the first result for the +Context+ and skip it
339
- # for successive calls.
340
- #
341
- # @example Get the first document and shift.
342
- # context.shift
343
- #
344
- # @return [ Document ] The first document in the collection.
345
- def shift
346
- first.tap { criteria.skip((options[:skip] || 0) + 1) }
347
- end
348
-
349
- # Sum the context.
350
- #
351
- # This will take the internally built selector and options
352
- # and pass them on to the Ruby driver's +group()+ method on the collection. The
353
- # collection itself will be retrieved from the class provided, and once the
354
- # query has returned it will provided a grouping of keys with sums.
355
- #
356
- # @example Get the sum for a field.
357
- # context.sum(:age)
358
- #
359
- # @param [ Symbol ] field The field who's values to sum.
360
- #
361
- # @return [ Numeric ] A numeric value that is the sum.
362
- def sum(field)
363
- grouped(:sum, field.to_s, Javascript.sum, Javascript.sum_finalize)
364
- end
365
-
366
- # Very basic update that will perform a simple atomic $set of the
367
- # attributes provided in the hash. Can be expanded to later for more
368
- # robust functionality.
369
- #
370
- # @example Update all matching documents.
371
- # context.update_all(:title => "Sir")
372
- #
373
- # @param [ Hash ] attributes The sets to perform.
374
- #
375
- # @since 2.0.0.rc.4
376
- def update_all(attributes = {})
377
- klass.collection.update(
378
- selector,
379
- { "$set" => attributes },
380
- Safety.merge_safety_options(:multi => true)
381
- ).tap do
382
- Threaded.clear_options!
383
- end
384
- end
385
- alias :update :update_all
386
-
387
- protected
388
-
389
- # Iterate over each +Document+ in the results and cache the collection.
390
- #
391
- # @example Execute with caching.
392
- # context.caching
393
- def caching(&block)
394
- if defined? @collection
395
- @collection.each(&block)
396
- else
397
- @collection = []
398
- execute.each do |doc|
399
- @collection << doc
400
- yield doc if block_given?
401
- end
402
- end
403
- end
404
-
405
- # Common functionality for grouping operations. Currently used by min, max
406
- # and sum. Will gsub the field name in the supplied reduce function.
407
- #
408
- # @example Execute the group function.
409
- # context.group(0, :avg, "")
410
- #
411
- # @param [ Object ] start The value to start the map/reduce with.
412
- # @param [ String ] field The field to aggregate.
413
- # @param [ String ] reduce The reduce JS function.
414
- #
415
- # @return [ Numeric ] A numeric result.
416
- def grouped(start, field, reduce, finalize)
417
- collection = klass.collection.group(
418
- :cond => selector,
419
- :initial => { start => "start" },
420
- :finalize => finalize,
421
- :reduce => reduce.gsub("[field]", field)
422
- )
423
- collection.empty? ? nil : collection.first[start.to_s]
424
- end
425
-
426
- # Get the options hash with the default sorting options provided.
427
- #
428
- # @example Get the options.
429
- # criteria.options_with_default_sorting
430
- #
431
- # @return [ Hash ] The options.
432
- #
433
- # @since 2.3.2
434
- def options_with_default_sorting
435
- process_options.tap do |opts|
436
- if opts[:sort].blank?
437
- opts[:sort] = [[ :_id, :asc ]]
438
- end
439
- end
440
- end
441
-
442
- # Filters the field list. If no fields have been supplied, then it will be
443
- # empty. If fields have been defined then _type will be included as well.
444
- #
445
- # @example Process the field list.
446
- # context.process_options
447
- #
448
- # @return [ Hash ] The options.
449
- def process_options
450
- fields = options[:fields]
451
- if fields && fields.size > 0 && !fields.include?(:_type)
452
- if fields.kind_of?(Hash)
453
- fields[:_type] = 1 if fields.first.last != 0 # Not excluding
454
- else
455
- fields << :type
456
- end
457
- options[:fields] = fields
458
- end
459
- options.dup
460
- end
461
-
462
- # If we are limiting results, we need to set the field limitations on a
463
- # thread local to avoid overriding the default values.
464
- #
465
- # @example Execute with selection.
466
- # context.selecting do
467
- # collection.find
468
- # end
469
- #
470
- # @return [ Object ] The yielded value.
471
- #
472
- # @since 2.4.4
473
- def selecting
474
- begin
475
- unless options[:fields].blank?
476
- Threaded.selection = options[:fields]
477
- end
478
- yield
479
- ensure
480
- Threaded.selection = nil
481
- end
482
- end
483
- end
484
- end
485
- end
@@ -1,25 +0,0 @@
1
- # encoding: utf-8
2
- require "mongoid/contexts/enumerable"
3
- require "mongoid/contexts/mongo"
4
-
5
- module Mongoid
6
- module Contexts
7
- extend self
8
-
9
- # Determines the context to be used for this criteria. If the class is an
10
- # embedded document, then the context will be the array in the has_many
11
- # association it is in. If the class is a root, then the database itself
12
- # will be the context.
13
- #
14
- # @example Get the context for the criteria.
15
- # Contexts.context_for(criteria)
16
- #
17
- # @param [ Criteria ] criteria The criteria to use.
18
- # @param [ true, false ] embedded Whether this is on embedded documents.
19
- #
20
- # @return [ Enumerable, Mongo ] The appropriate context.
21
- def context_for(criteria, embedded = false)
22
- embedded ? Enumerable.new(criteria) : Mongo.new(criteria)
23
- end
24
- end
25
- end
@@ -1,34 +0,0 @@
1
- # encoding: utf-8
2
- module Mongoid #:nodoc:
3
- module Criterion #:nodoc:
4
-
5
- # This module defines criteria behavior for building documents for
6
- # specified conditions.
7
- module Builder
8
-
9
- # Build a document given the selector and return it.
10
- # Complex criteria, such as $in and $or operations will get ignored.
11
- #
12
- # @example build the document.
13
- # Person.where(:title => "Sir").build
14
- #
15
- # @example Build with selectors getting ignored.
16
- # Person.where(:age.gt => 5).build
17
- #
18
- # @return [ Document ] A non-persisted document.
19
- #
20
- # @since 2.0.0
21
- def build(attrs = {})
22
- klass.new(
23
- selector.inject(attrs) do |hash, (key, value)|
24
- hash.tap do |attrs|
25
- unless key.to_s =~ /\$/ || value.is_a?(Hash)
26
- attrs[key] = value
27
- end
28
- end
29
- end
30
- )
31
- end
32
- end
33
- end
34
- end
@@ -1,84 +0,0 @@
1
- # encoding: utf-8
2
- module Mongoid #:nodoc:
3
- module Criterion #:nodoc:
4
-
5
- # Complex criterion are used when performing operations on symbols to get
6
- # get a shorthand syntax for where clauses.
7
- #
8
- # @example Conversion of a simple to complex criterion.
9
- # { :field => { "$lt" => "value" } }
10
- # becomes:
11
- # { :field.lt => "value }
12
- class Complex
13
- attr_accessor :key, :operator
14
-
15
- # Create the new complex criterion.
16
- #
17
- # @example Instantiate a new complex criterion.
18
- # Complex.new(:key => :field, :operator => "$gt")
19
- #
20
- # @param [ Hash ] opts The options to convert.
21
- def initialize(opts = {})
22
- @key, @operator = opts[:key], opts[:operator]
23
- end
24
-
25
- # Get the criterion as a hash.
26
- #
27
- # @example Get the criterion as a hash.
28
- # criterion.hash
29
- #
30
- # @return [ Hash ] The keys and operators.
31
- def hash
32
- [@key, @operator].hash
33
- end
34
-
35
- # Create a mongo query with given value
36
- #
37
- # @example Create query
38
- # criterion.to_mongo_hash(value)
39
- #
40
- # @params [] Whatever is a valid input for given operator
41
- # @return [ Hash ] The query
42
- def to_mongo_query(v)
43
- {"$#{self.operator}" => v}
44
- end
45
-
46
- # Is the criterion equal to the other?
47
- #
48
- # @example Check equality.
49
- # criterion.eql?(other)
50
- #
51
- # @param [ Complex ] other The other complex criterion.
52
- #
53
- # @return [ true, false ] If they are equal.
54
- def eql?(other)
55
- self == (other)
56
- end
57
-
58
- # Is the criterion equal to the other?
59
- #
60
- # @example Check equality.
61
- # criterion == other
62
- #
63
- # @param [ Complex ] other The other complex criterion.
64
- #
65
- # @return [ true, false ] If they are equal.
66
- def ==(other)
67
- return false unless other.is_a?(self.class)
68
- self.key == other.key && self.operator == other.operator
69
- end
70
-
71
- # Returns the name of the key as a string.
72
- #
73
- # @example Get the name of the key.
74
- # criterion.to_s
75
- #
76
- # @return [ String ] The field name.
77
- #
78
- # @since 2.1.0
79
- def to_s
80
- key.to_s
81
- end
82
- end
83
- end
84
- end
@@ -1,34 +0,0 @@
1
- # encoding: utf-8
2
- module Mongoid #:nodoc:
3
- module Criterion #:nodoc:
4
-
5
- # This module defines criteria behavior for creating documents in the
6
- # database for specified conditions.
7
- module Creational
8
-
9
- # Create a document in the database given the selector and return it.
10
- # Complex criteria, such as $in and $or operations will get ignored.
11
- #
12
- # @example Create the document.
13
- # Person.where(:title => "Sir").create
14
- #
15
- # @example Create with selectors getting ignored.
16
- # Person.where(:age.gt => 5).create
17
- #
18
- # @return [ Document ] A newly created document.
19
- #
20
- # @since 2.0.0.rc.1
21
- def create(attrs = {})
22
- klass.create(
23
- selector.inject(attrs) do |hash, (key, value)|
24
- hash.tap do |attrs|
25
- unless key.to_s =~ /\$/ || value.is_a?(Hash)
26
- attrs[key] = value
27
- end
28
- end
29
- end
30
- )
31
- end
32
- end
33
- end
34
- end