mongo 2.14.0 → 2.15.0.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/README.md +4 -1
- data/Rakefile +8 -15
- data/lib/mongo.rb +23 -0
- data/lib/mongo/auth/aws/conversation.rb +1 -4
- data/lib/mongo/auth/base.rb +13 -7
- data/lib/mongo/auth/conversation_base.rb +32 -0
- data/lib/mongo/auth/cr/conversation.rb +6 -29
- data/lib/mongo/auth/gssapi/conversation.rb +4 -15
- data/lib/mongo/auth/ldap/conversation.rb +3 -14
- data/lib/mongo/auth/sasl_conversation_base.rb +1 -13
- data/lib/mongo/auth/scram_conversation_base.rb +7 -34
- data/lib/mongo/auth/user/view.rb +16 -9
- data/lib/mongo/auth/x509/conversation.rb +4 -25
- data/lib/mongo/background_thread.rb +11 -0
- data/lib/mongo/bulk_write.rb +21 -18
- data/lib/mongo/client.rb +82 -6
- data/lib/mongo/cluster.rb +19 -28
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +6 -2
- data/lib/mongo/cluster/sdam_flow.rb +14 -0
- data/lib/mongo/collection.rb +8 -6
- data/lib/mongo/collection/view/aggregation.rb +1 -1
- data/lib/mongo/collection/view/change_stream.rb +1 -1
- data/lib/mongo/collection/view/iterable.rb +1 -1
- data/lib/mongo/collection/view/map_reduce.rb +2 -2
- data/lib/mongo/collection/view/readable.rb +42 -20
- data/lib/mongo/collection/view/writable.rb +14 -14
- data/lib/mongo/cursor.rb +2 -2
- data/lib/mongo/database.rb +22 -5
- data/lib/mongo/database/view.rb +1 -1
- data/lib/mongo/error.rb +9 -1
- data/lib/mongo/error/bulk_write_error.rb +17 -3
- data/lib/mongo/error/internal_driver_error.rb +22 -0
- data/lib/mongo/error/operation_failure.rb +21 -2
- data/lib/mongo/error/parser.rb +65 -12
- data/lib/mongo/error/server_api_conflict.rb +23 -0
- data/lib/mongo/error/server_api_not_supported.rb +24 -0
- data/lib/mongo/error/unmet_dependency.rb +21 -0
- data/lib/mongo/grid/fs_bucket.rb +37 -37
- data/lib/mongo/index/view.rb +21 -11
- data/lib/mongo/monitoring.rb +13 -4
- data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +27 -16
- data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +26 -15
- data/lib/mongo/operation.rb +2 -2
- data/lib/mongo/operation/collections_info.rb +18 -1
- data/lib/mongo/operation/collections_info/command.rb +2 -2
- data/lib/mongo/operation/context.rb +99 -0
- data/lib/mongo/operation/indexes.rb +15 -1
- data/lib/mongo/operation/insert/command.rb +2 -2
- data/lib/mongo/operation/insert/legacy.rb +2 -2
- data/lib/mongo/operation/insert/op_msg.rb +2 -2
- data/lib/mongo/operation/list_collections/result.rb +4 -1
- data/lib/mongo/operation/result.rb +2 -0
- data/lib/mongo/operation/shared/executable.rb +24 -14
- data/lib/mongo/operation/shared/executable_no_validate.rb +2 -2
- data/lib/mongo/operation/shared/op_msg_or_command.rb +1 -7
- data/lib/mongo/operation/shared/op_msg_or_find_command.rb +1 -7
- data/lib/mongo/operation/shared/polymorphic_operation.rb +39 -0
- data/lib/mongo/operation/shared/response_handling.rb +23 -23
- data/lib/mongo/operation/shared/sessions_supported.rb +13 -2
- data/lib/mongo/operation/shared/write.rb +8 -18
- data/lib/mongo/protocol/compressed.rb +51 -5
- data/lib/mongo/protocol/message.rb +20 -2
- data/lib/mongo/protocol/msg.rb +36 -11
- data/lib/mongo/query_cache.rb +30 -0
- data/lib/mongo/retryable.rb +1 -1
- data/lib/mongo/server.rb +7 -15
- data/lib/mongo/server/app_metadata.rb +52 -18
- data/lib/mongo/server/connection.rb +5 -0
- data/lib/mongo/server/connection_base.rb +13 -10
- data/lib/mongo/server/connection_pool.rb +6 -4
- data/lib/mongo/server/description.rb +4 -0
- data/lib/mongo/server/description/features.rb +9 -8
- data/lib/mongo/server/monitor.rb +20 -1
- data/lib/mongo/server/monitor/app_metadata.rb +1 -1
- data/lib/mongo/server/monitor/connection.rb +9 -10
- data/lib/mongo/server/pending_connection.rb +24 -6
- data/lib/mongo/server/push_monitor.rb +11 -1
- data/lib/mongo/session.rb +2 -2
- data/lib/mongo/session/session_pool.rb +4 -2
- data/lib/mongo/socket.rb +29 -4
- data/lib/mongo/socket/ssl.rb +8 -0
- data/lib/mongo/srv/monitor.rb +0 -11
- data/lib/mongo/uri/options_mapper.rb +38 -0
- data/lib/mongo/utils.rb +15 -0
- data/lib/mongo/version.rb +1 -1
- data/spec/README.md +24 -1
- data/spec/integration/auth_spec.rb +25 -15
- data/spec/integration/bulk_write_error_message_spec.rb +41 -0
- data/spec/integration/change_stream_spec.rb +4 -4
- data/spec/integration/command_monitoring_spec.rb +2 -2
- data/spec/integration/connection_spec.rb +2 -0
- data/spec/integration/docs_examples_spec.rb +8 -1
- data/spec/integration/fork_reconnect_spec.rb +4 -1
- data/spec/integration/ocsp_verifier_spec.rb +13 -7
- data/spec/integration/operation_failure_code_spec.rb +1 -1
- data/spec/integration/operation_failure_message_spec.rb +90 -0
- data/spec/integration/reconnect_spec.rb +1 -1
- data/spec/integration/sdam_error_handling_spec.rb +1 -1
- data/spec/integration/sdam_events_spec.rb +3 -5
- data/spec/integration/snappy_compression_spec.rb +25 -0
- data/spec/integration/srv_monitoring_spec.rb +1 -1
- data/spec/integration/transactions_examples_spec.rb +6 -0
- data/spec/integration/zlib_compression_spec.rb +1 -1
- data/spec/integration/zstd_compression_spec.rb +26 -0
- data/spec/lite_spec_helper.rb +7 -1
- data/spec/mongo/address_spec.rb +15 -11
- data/spec/mongo/auth/ldap/conversation_spec.rb +1 -1
- data/spec/mongo/auth/ldap_spec.rb +5 -1
- data/spec/mongo/auth/scram_negotiation_spec.rb +1 -1
- data/spec/mongo/auth/scram_spec.rb +1 -1
- data/spec/mongo/auth/x509/conversation_spec.rb +3 -3
- data/spec/mongo/client_construction_spec.rb +207 -33
- data/spec/mongo/client_spec.rb +17 -0
- data/spec/mongo/cluster_spec.rb +3 -18
- data/spec/mongo/collection/view/explainable_spec.rb +1 -1
- data/spec/mongo/collection/view/readable_spec.rb +33 -19
- data/spec/mongo/collection_crud_spec.rb +4357 -0
- data/spec/mongo/collection_ddl_spec.rb +534 -0
- data/spec/mongo/collection_spec.rb +5 -4859
- data/spec/mongo/database_spec.rb +66 -4
- data/spec/mongo/error/bulk_write_error_spec.rb +3 -3
- data/spec/mongo/error/parser_spec.rb +37 -6
- data/spec/mongo/index/view_spec.rb +8 -2
- data/spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb +1 -1
- data/spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb +1 -1
- data/spec/mongo/operation/aggregate_spec.rb +2 -1
- data/spec/mongo/operation/collections_info_spec.rb +4 -1
- data/spec/mongo/operation/command_spec.rb +6 -3
- data/spec/mongo/operation/create_index_spec.rb +6 -3
- data/spec/mongo/operation/create_user_spec.rb +6 -3
- data/spec/mongo/operation/delete/bulk_spec.rb +9 -6
- data/spec/mongo/operation/delete_spec.rb +11 -7
- data/spec/mongo/operation/drop_index_spec.rb +6 -2
- data/spec/mongo/operation/find/legacy_spec.rb +3 -1
- data/spec/mongo/operation/get_more_spec.rb +3 -1
- data/spec/mongo/operation/indexes_spec.rb +5 -1
- data/spec/mongo/operation/insert/bulk_spec.rb +10 -7
- data/spec/mongo/operation/insert_spec.rb +15 -12
- data/spec/mongo/operation/map_reduce_spec.rb +5 -2
- data/spec/mongo/operation/remove_user_spec.rb +6 -3
- data/spec/mongo/operation/result_spec.rb +1 -1
- data/spec/mongo/operation/update/bulk_spec.rb +9 -6
- data/spec/mongo/operation/update_spec.rb +10 -7
- data/spec/mongo/operation/update_user_spec.rb +4 -1
- data/spec/mongo/protocol/compressed_spec.rb +26 -12
- data/spec/mongo/query_cache_middleware_spec.rb +55 -0
- data/spec/mongo/retryable_spec.rb +3 -2
- data/spec/mongo/server/app_metadata_spec.rb +2 -0
- data/spec/mongo/server/connection_pool/populator_spec.rb +3 -1
- data/spec/mongo/server/connection_pool_spec.rb +1 -1
- data/spec/mongo/server/connection_spec.rb +24 -17
- data/spec/mongo/server/monitor/connection_spec.rb +17 -7
- data/spec/mongo/server/monitor_spec.rb +9 -1
- data/spec/mongo/server_spec.rb +15 -2
- data/spec/mongo/socket/ssl_spec.rb +40 -0
- data/spec/mongo/socket_spec.rb +2 -2
- data/spec/mongo/tls_context_hooks_spec.rb +37 -0
- data/spec/runners/connection_string.rb +0 -4
- data/spec/runners/crud/requirement.rb +40 -3
- data/spec/runners/crud/verifier.rb +8 -0
- data/spec/runners/transactions/operation.rb +13 -2
- data/spec/runners/transactions/test.rb +1 -0
- data/spec/runners/unified.rb +96 -0
- data/spec/runners/unified/assertions.rb +249 -0
- data/spec/runners/unified/change_stream_operations.rb +26 -0
- data/spec/runners/unified/crud_operations.rb +199 -0
- data/spec/runners/unified/ddl_operations.rb +96 -0
- data/spec/runners/unified/entity_map.rb +39 -0
- data/spec/runners/unified/error.rb +25 -0
- data/spec/runners/unified/event_subscriber.rb +91 -0
- data/spec/runners/unified/exceptions.rb +21 -0
- data/spec/runners/unified/grid_fs_operations.rb +55 -0
- data/spec/runners/unified/support_operations.rb +250 -0
- data/spec/runners/unified/test.rb +393 -0
- data/spec/runners/unified/test_group.rb +28 -0
- data/spec/runners/unified/using_hash.rb +31 -0
- data/spec/shared/bin/get-mongodb-download-url +17 -0
- data/spec/shared/lib/mrss/cluster_config.rb +218 -0
- data/spec/shared/lib/mrss/constraints.rb +43 -0
- data/spec/shared/lib/mrss/docker_runner.rb +262 -0
- data/spec/shared/lib/mrss/server_version_registry.rb +112 -0
- data/spec/shared/lib/mrss/utils.rb +15 -0
- data/spec/shared/share/Dockerfile.erb +231 -0
- data/spec/shared/shlib/distro.sh +73 -0
- data/spec/shared/shlib/server.sh +290 -0
- data/spec/shared/shlib/set_env.sh +128 -0
- data/spec/solo/clean_exit_spec.rb +21 -0
- data/spec/spec_helper.rb +4 -1
- data/spec/spec_tests/crud_unified_spec.rb +10 -0
- data/spec/spec_tests/data/change_streams/change-streams.yml +0 -1
- data/spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml +267 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount.yml → estimatedDocumentCount-pre4.9.yml} +2 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml +146 -0
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount-serverErrors.yml → estimatedDocumentCount-serverErrors-pre4.9.yml} +2 -0
- data/spec/spec_tests/data/retryable_reads/listIndexNames.yml +1 -1
- data/spec/spec_tests/data/unified/valid-fail/operation-failure.yml +31 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml +220 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml +102 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-crud.yml +184 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml +155 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml +193 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml +210 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-sessions.yml +215 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml +235 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml +169 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +170 -0
- data/spec/spec_tests/data/uri_options/compression-options.yml +1 -1
- data/spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml +416 -0
- data/spec/spec_tests/data/versioned_api/crud-api-version-1.yml +409 -0
- data/spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml +67 -0
- data/spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml +47 -0
- data/spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml +44 -0
- data/spec/spec_tests/data/versioned_api/transaction-handling.yml +180 -0
- data/spec/spec_tests/unified_spec.rb +15 -0
- data/spec/spec_tests/uri_options_spec.rb +16 -0
- data/spec/spec_tests/versioned_api_spec.rb +10 -0
- data/spec/support/common_shortcuts.rb +15 -1
- data/spec/support/shared/session.rb +2 -2
- data/spec/support/spec_config.rb +46 -3
- data/spec/support/spec_setup.rb +48 -38
- data/spec/support/utils.rb +64 -3
- metadata +1104 -992
- metadata.gz.sig +0 -0
- data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +0 -58
- data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +0 -47
- data/spec/support/cluster_config.rb +0 -207
data/lib/mongo/monitoring.rb
CHANGED
@@ -307,9 +307,9 @@ module Mongo
|
|
307
307
|
# @api private
|
308
308
|
def publish_heartbeat(server, awaited: false)
|
309
309
|
if monitoring?
|
310
|
-
|
310
|
+
started_event = Event::ServerHeartbeatStarted.new(
|
311
311
|
server.address, awaited: awaited)
|
312
|
-
started(SERVER_HEARTBEAT,
|
312
|
+
started(SERVER_HEARTBEAT, started_event)
|
313
313
|
end
|
314
314
|
|
315
315
|
# The duration we publish in heartbeat succeeded/failed events is
|
@@ -328,14 +328,23 @@ module Mongo
|
|
328
328
|
rescue => exc
|
329
329
|
if monitoring?
|
330
330
|
event = Event::ServerHeartbeatFailed.new(
|
331
|
-
server.address,
|
331
|
+
server.address,
|
332
|
+
Time.now-start_time,
|
333
|
+
exc,
|
334
|
+
awaited: awaited,
|
335
|
+
started_event: started_event,
|
336
|
+
)
|
332
337
|
failed(SERVER_HEARTBEAT, event)
|
333
338
|
end
|
334
339
|
raise
|
335
340
|
else
|
336
341
|
if monitoring?
|
337
342
|
event = Event::ServerHeartbeatSucceeded.new(
|
338
|
-
server.address,
|
343
|
+
server.address,
|
344
|
+
Time.now-start_time,
|
345
|
+
awaited: awaited,
|
346
|
+
started_event: started_event,
|
347
|
+
)
|
339
348
|
succeeded(SERVER_HEARTBEAT, event)
|
340
349
|
end
|
341
350
|
result
|
@@ -21,6 +21,29 @@ module Mongo
|
|
21
21
|
# @since 2.7.0
|
22
22
|
class ServerHeartbeatFailed < Mongo::Event::Base
|
23
23
|
|
24
|
+
# Create the event.
|
25
|
+
#
|
26
|
+
# @example Create the event.
|
27
|
+
# ServerHeartbeatSucceeded.new(address, duration)
|
28
|
+
#
|
29
|
+
# @param [ Address ] address The server address.
|
30
|
+
# @param [ Float ] round_trip_time Duration of ismaster call in seconds.
|
31
|
+
# @param [ true | false ] awaited Whether the heartbeat was awaited.
|
32
|
+
# @param [ Monitoring::Event::ServerHeartbeatStarted ] started_event
|
33
|
+
# The corresponding started event.
|
34
|
+
#
|
35
|
+
# @since 2.7.0
|
36
|
+
# @api private
|
37
|
+
def initialize(address, round_trip_time, error, awaited: false,
|
38
|
+
started_event:
|
39
|
+
)
|
40
|
+
@address = address
|
41
|
+
@round_trip_time = round_trip_time
|
42
|
+
@error = error
|
43
|
+
@awaited = !!awaited
|
44
|
+
@started_event = started_event
|
45
|
+
end
|
46
|
+
|
24
47
|
# @return [ Address ] address The server address.
|
25
48
|
attr_reader :address
|
26
49
|
|
@@ -41,23 +64,11 @@ module Mongo
|
|
41
64
|
@awaited
|
42
65
|
end
|
43
66
|
|
44
|
-
#
|
45
|
-
#
|
46
|
-
# @example Create the event.
|
47
|
-
# ServerHeartbeatSucceeded.new(address, duration)
|
48
|
-
#
|
49
|
-
# @param [ Address ] address The server address.
|
50
|
-
# @param [ Float ] round_trip_time Duration of ismaster call in seconds.
|
51
|
-
# @param [ true | false ] awaited Whether the heartbeat was awaited.
|
67
|
+
# @return [ Monitoring::Event::ServerHeartbeatStarted ]
|
68
|
+
# The corresponding started event.
|
52
69
|
#
|
53
|
-
# @
|
54
|
-
|
55
|
-
def initialize(address, round_trip_time, error, awaited: false)
|
56
|
-
@address = address
|
57
|
-
@round_trip_time = round_trip_time
|
58
|
-
@error = error
|
59
|
-
@awaited = !!awaited
|
60
|
-
end
|
70
|
+
# @api experimental
|
71
|
+
attr_reader :started_event
|
61
72
|
|
62
73
|
# Returns a concise yet useful summary of the event.
|
63
74
|
#
|
@@ -21,20 +21,6 @@ module Mongo
|
|
21
21
|
# @since 2.7.0
|
22
22
|
class ServerHeartbeatSucceeded < Mongo::Event::Base
|
23
23
|
|
24
|
-
# @return [ Address ] address The server address.
|
25
|
-
attr_reader :address
|
26
|
-
|
27
|
-
# @return [ Float ] round_trip_time Duration of ismaster call in seconds.
|
28
|
-
attr_reader :round_trip_time
|
29
|
-
|
30
|
-
# Alias of round_trip_time.
|
31
|
-
alias :duration :round_trip_time
|
32
|
-
|
33
|
-
# @return [ true | false ] Whether the heartbeat was awaited.
|
34
|
-
def awaited?
|
35
|
-
@awaited
|
36
|
-
end
|
37
|
-
|
38
24
|
# Create the event.
|
39
25
|
#
|
40
26
|
# @example Create the event.
|
@@ -43,15 +29,40 @@ module Mongo
|
|
43
29
|
# @param [ Address ] address The server address.
|
44
30
|
# @param [ Float ] round_trip_time Duration of ismaster call in seconds.
|
45
31
|
# @param [ true | false ] awaited Whether the heartbeat was awaited.
|
32
|
+
# @param [ Monitoring::Event::ServerHeartbeatStarted ] started_event
|
33
|
+
# The corresponding started event.
|
46
34
|
#
|
47
35
|
# @since 2.7.0
|
48
36
|
# @api private
|
49
|
-
def initialize(address, round_trip_time, awaited: false
|
37
|
+
def initialize(address, round_trip_time, awaited: false,
|
38
|
+
started_event:
|
39
|
+
)
|
50
40
|
@address = address
|
51
41
|
@round_trip_time = round_trip_time
|
52
42
|
@awaited = !!awaited
|
43
|
+
@started_event = started_event
|
53
44
|
end
|
54
45
|
|
46
|
+
# @return [ Address ] address The server address.
|
47
|
+
attr_reader :address
|
48
|
+
|
49
|
+
# @return [ Float ] round_trip_time Duration of ismaster call in seconds.
|
50
|
+
attr_reader :round_trip_time
|
51
|
+
|
52
|
+
# Alias of round_trip_time.
|
53
|
+
alias :duration :round_trip_time
|
54
|
+
|
55
|
+
# @return [ true | false ] Whether the heartbeat was awaited.
|
56
|
+
def awaited?
|
57
|
+
@awaited
|
58
|
+
end
|
59
|
+
|
60
|
+
# @return [ Monitoring::Event::ServerHeartbeatStarted ]
|
61
|
+
# The corresponding started event.
|
62
|
+
#
|
63
|
+
# @api experimental
|
64
|
+
attr_reader :started_event
|
65
|
+
|
55
66
|
# Returns a concise yet useful summary of the event.
|
56
67
|
#
|
57
68
|
# @return [ String ] String summary of the event.
|
data/lib/mongo/operation.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
require 'mongo/operation/context'
|
1
2
|
require 'mongo/operation/result'
|
2
3
|
|
3
4
|
require 'mongo/operation/shared/response_handling'
|
@@ -5,6 +6,7 @@ require 'mongo/operation/shared/executable'
|
|
5
6
|
require 'mongo/operation/shared/executable_no_validate'
|
6
7
|
require 'mongo/operation/shared/executable_transaction_label'
|
7
8
|
require 'mongo/operation/shared/polymorphic_lookup'
|
9
|
+
require 'mongo/operation/shared/polymorphic_operation'
|
8
10
|
require 'mongo/operation/shared/polymorphic_result'
|
9
11
|
require 'mongo/operation/shared/read_preference_supported'
|
10
12
|
require 'mongo/operation/shared/bypass_document_validation'
|
@@ -18,8 +20,6 @@ require 'mongo/operation/shared/specifiable'
|
|
18
20
|
require 'mongo/operation/shared/object_id_generator'
|
19
21
|
require 'mongo/operation/shared/op_msg_or_command'
|
20
22
|
require 'mongo/operation/shared/op_msg_or_find_command'
|
21
|
-
require 'mongo/operation/shared/op_msg_or_list_indexes_command'
|
22
|
-
require 'mongo/operation/shared/collections_info_or_list_collections'
|
23
23
|
|
24
24
|
require 'mongo/operation/op_msg_base'
|
25
25
|
require 'mongo/operation/command'
|
@@ -25,7 +25,24 @@ module Mongo
|
|
25
25
|
# @since 2.0.0
|
26
26
|
class CollectionsInfo
|
27
27
|
include Specifiable
|
28
|
-
include
|
28
|
+
include PolymorphicOperation
|
29
|
+
include PolymorphicLookup
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def final_operation(connection)
|
34
|
+
op_class = if connection.features.list_collections_enabled?
|
35
|
+
if connection.features.op_msg_enabled?
|
36
|
+
ListCollections::OpMsg
|
37
|
+
else
|
38
|
+
ListCollections::Command
|
39
|
+
end
|
40
|
+
else
|
41
|
+
CollectionsInfo::Command
|
42
|
+
end
|
43
|
+
|
44
|
+
op_class.new(spec)
|
45
|
+
end
|
29
46
|
end
|
30
47
|
end
|
31
48
|
end
|
@@ -27,9 +27,9 @@ module Mongo
|
|
27
27
|
|
28
28
|
private
|
29
29
|
|
30
|
-
def get_result(connection,
|
30
|
+
def get_result(connection, context, options = {})
|
31
31
|
# This is a Mongo::Operation::CollectionsInfo::Result
|
32
|
-
Result.new(*dispatch_message(connection,
|
32
|
+
Result.new(*dispatch_message(connection, context), db_name)
|
33
33
|
end
|
34
34
|
|
35
35
|
def selector(connection)
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# Copyright (C) 2021 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
|
+
module Operation
|
17
|
+
|
18
|
+
# Context for operations.
|
19
|
+
#
|
20
|
+
# Holds various objects needed to make decisions about operation execution
|
21
|
+
# in a single container, and provides facade methods for the contained
|
22
|
+
# objects.
|
23
|
+
#
|
24
|
+
# @api private
|
25
|
+
class Context
|
26
|
+
def initialize(client: nil, session: nil, options: nil)
|
27
|
+
if options
|
28
|
+
if client
|
29
|
+
raise ArgumentError, 'Client and options cannot both be specified'
|
30
|
+
end
|
31
|
+
|
32
|
+
if session
|
33
|
+
raise ArgumentError, 'Session and options cannot both be specified'
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
@client = client
|
38
|
+
@session = session
|
39
|
+
@options = options
|
40
|
+
end
|
41
|
+
|
42
|
+
attr_reader :client
|
43
|
+
attr_reader :session
|
44
|
+
attr_reader :options
|
45
|
+
|
46
|
+
def in_transaction?
|
47
|
+
session&.in_transaction? || false
|
48
|
+
end
|
49
|
+
|
50
|
+
def starting_transaction?
|
51
|
+
session&.starting_transaction? || false
|
52
|
+
end
|
53
|
+
|
54
|
+
def committing_transaction?
|
55
|
+
in_transaction? && session.committing_transaction?
|
56
|
+
end
|
57
|
+
|
58
|
+
def aborting_transaction?
|
59
|
+
in_transaction? && session.aborting_transaction?
|
60
|
+
end
|
61
|
+
|
62
|
+
def modern_retry_writes?
|
63
|
+
client && client.options[:retry_writes]
|
64
|
+
end
|
65
|
+
|
66
|
+
def legacy_retry_writes?
|
67
|
+
client && !client.options[:retry_writes] && client.max_write_retries > 0
|
68
|
+
end
|
69
|
+
|
70
|
+
def any_retry_writes?
|
71
|
+
modern_retry_writes? || legacy_retry_writes?
|
72
|
+
end
|
73
|
+
|
74
|
+
def server_api
|
75
|
+
if client
|
76
|
+
client.options[:server_api]
|
77
|
+
elsif options
|
78
|
+
options[:server_api]
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
def encrypt?
|
83
|
+
client&.encrypter&.encrypt? || false
|
84
|
+
end
|
85
|
+
|
86
|
+
def decrypt?
|
87
|
+
!!client&.encrypter
|
88
|
+
end
|
89
|
+
|
90
|
+
def encrypter
|
91
|
+
if client&.encrypter
|
92
|
+
client.encrypter
|
93
|
+
else
|
94
|
+
raise Error::InternalDriverError, 'Encrypter should only be accessed when encryption is to be performed'
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
@@ -27,7 +27,21 @@ module Mongo
|
|
27
27
|
# @since 2.0.0
|
28
28
|
class Indexes
|
29
29
|
include Specifiable
|
30
|
-
include
|
30
|
+
include PolymorphicOperation
|
31
|
+
include PolymorphicLookup
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def final_operation(connection)
|
36
|
+
cls = if connection.features.op_msg_enabled?
|
37
|
+
polymorphic_class(self.class.name, :OpMsg)
|
38
|
+
elsif connection.features.list_indexes_enabled?
|
39
|
+
polymorphic_class(self.class.name, :Command)
|
40
|
+
else
|
41
|
+
polymorphic_class(self.class.name, :Legacy)
|
42
|
+
end
|
43
|
+
cls.new(spec)
|
44
|
+
end
|
31
45
|
end
|
32
46
|
end
|
33
47
|
end
|
@@ -32,9 +32,9 @@ module Mongo
|
|
32
32
|
|
33
33
|
private
|
34
34
|
|
35
|
-
def get_result(connection,
|
35
|
+
def get_result(connection, context, options = {})
|
36
36
|
# This is a Mongo::Operation::Insert::Result
|
37
|
-
Result.new(*dispatch_message(connection,
|
37
|
+
Result.new(*dispatch_message(connection, context), @ids)
|
38
38
|
end
|
39
39
|
|
40
40
|
def selector(connection)
|
@@ -30,9 +30,9 @@ module Mongo
|
|
30
30
|
|
31
31
|
private
|
32
32
|
|
33
|
-
def get_result(connection,
|
33
|
+
def get_result(connection, context, options = {})
|
34
34
|
# This is a Mongo::Operation::Insert::Result
|
35
|
-
Result.new(*dispatch_message(connection,
|
35
|
+
Result.new(*dispatch_message(connection, context), @ids)
|
36
36
|
end
|
37
37
|
|
38
38
|
def selector
|
@@ -30,9 +30,9 @@ module Mongo
|
|
30
30
|
|
31
31
|
private
|
32
32
|
|
33
|
-
def get_result(connection,
|
33
|
+
def get_result(connection, context, options = {})
|
34
34
|
# This is a Mongo::Operation::Insert::Result
|
35
|
-
Result.new(*dispatch_message(connection,
|
35
|
+
Result.new(*dispatch_message(connection, context), @ids)
|
36
36
|
end
|
37
37
|
|
38
38
|
def selector(connection)
|
@@ -23,11 +23,11 @@ module Mongo
|
|
23
23
|
|
24
24
|
include ResponseHandling
|
25
25
|
|
26
|
-
def do_execute(connection,
|
26
|
+
def do_execute(connection, context, options = {})
|
27
27
|
unpin_maybe(session) do
|
28
|
-
add_error_labels(
|
28
|
+
add_error_labels(connection, context) do
|
29
29
|
add_server_diagnostics(connection) do
|
30
|
-
get_result(connection,
|
30
|
+
get_result(connection, context, options).tap do |result|
|
31
31
|
process_result(result, connection)
|
32
32
|
end
|
33
33
|
end
|
@@ -35,15 +35,15 @@ module Mongo
|
|
35
35
|
end
|
36
36
|
end
|
37
37
|
|
38
|
-
def execute(connection,
|
38
|
+
def execute(connection, context:, options: {})
|
39
39
|
if Lint.enabled?
|
40
40
|
unless connection.is_a?(Mongo::Server::Connection)
|
41
41
|
raise Error::LintError, "Connection argument is of wrong type: #{connection}"
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
45
|
-
do_execute(connection,
|
46
|
-
validate_result(result,
|
45
|
+
do_execute(connection, context, options).tap do |result|
|
46
|
+
validate_result(result, connection, context)
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
@@ -53,20 +53,30 @@ module Mongo
|
|
53
53
|
Result
|
54
54
|
end
|
55
55
|
|
56
|
-
def get_result(connection,
|
57
|
-
result_class.new(*dispatch_message(connection,
|
56
|
+
def get_result(connection, context, options = {})
|
57
|
+
result_class.new(*dispatch_message(connection, context, options))
|
58
58
|
end
|
59
59
|
|
60
60
|
# Returns a Protocol::Message or nil as reply.
|
61
|
-
def dispatch_message(connection,
|
62
|
-
message = build_message(connection)
|
63
|
-
message = message.maybe_encrypt(connection,
|
64
|
-
reply = connection.dispatch([ message ],
|
61
|
+
def dispatch_message(connection, context, options = {})
|
62
|
+
message = build_message(connection, context)
|
63
|
+
message = message.maybe_encrypt(connection, context)
|
64
|
+
reply = connection.dispatch([ message ], context, options)
|
65
65
|
[reply, connection.description]
|
66
66
|
end
|
67
67
|
|
68
|
-
|
69
|
-
|
68
|
+
# @param [ Mongo::Server::Connection ] connection The connection on which
|
69
|
+
# the operation is performed.
|
70
|
+
# @param [ Mongo::Operation::Context ] context The operation context.
|
71
|
+
def build_message(connection, context)
|
72
|
+
msg = message(connection)
|
73
|
+
if (server_api = context.server_api) &&
|
74
|
+
# Commands in a transaction do not allow API parameters.
|
75
|
+
!(context.in_transaction? && !context.starting_transaction?)
|
76
|
+
then
|
77
|
+
msg = msg.maybe_add_server_api(server_api)
|
78
|
+
end
|
79
|
+
msg
|
70
80
|
end
|
71
81
|
|
72
82
|
def process_result(result, connection)
|