Class: Mongo::Protocol::Msg Private
- Includes:
- Monitoring::Event::Secure
- Defined in:
- lib/mongo/protocol/msg.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
MongoDB Wire protocol Msg message (OP_MSG), a bi-directional wire protocol opcode.
OP_MSG is only available in MongoDB 3.6 (maxWireVersion >= 6) and later.
Defined Under Namespace
Classes: Section1
Constant Summary collapse
- DATABASE_IDENTIFIER =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
The identifier for the database name to execute the command on.
'$db'.freeze
- INTERNAL_KEYS =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
Keys that the driver adds to commands. These are going to be moved to the end of the hash for better logging.
Set.new(%w($clusterTime $db lsid signature txnNumber)).freeze
Constants included from Monitoring::Event::Secure
Monitoring::Event::Secure::REDACTED_COMMANDS
Constants inherited from Message
Mongo::Protocol::Message::BATCH_SIZE, Mongo::Protocol::Message::COLLECTION, Mongo::Protocol::Message::LIMIT, Mongo::Protocol::Message::MAX_MESSAGE_SIZE, Mongo::Protocol::Message::ORDERED, Mongo::Protocol::Message::Q
Instance Attribute Summary
Attributes inherited from Message
Instance Method Summary collapse
-
#bulk_write? ⇒ Boolean
private
Whether this message represents a bulk write.
- #documents ⇒ Object private
-
#fix_after_deserialization ⇒ Object
private
Reverse-populates the instance variables after deserialization sets the @sections instance variable to the list of documents.
-
#initialize(flags, options, main_document, *sequences) ⇒ Msg
constructor
private
Creates a new OP_MSG protocol message.
-
#maybe_compress(compressor, zlib_compression_level = nil) ⇒ Message
private
Compress the message, if the command being sent permits compression.
-
#maybe_decrypt(client) ⇒ Mongo::Protocol::Msg
private
Possibly decrypt this message with libmongocrypt.
-
#maybe_encrypt(server, client) ⇒ Mongo::Protocol::Msg
private
Possibly encrypt this message with libmongocrypt.
-
#payload ⇒ BSON::Document
private
Return the event payload for monitoring.
-
#replyable? ⇒ true, false
private
Whether the message expects a reply from the database.
-
#serialize(buffer = BSON::ByteBuffer.new, max_bson_size = nil) ⇒ BSON::ByteBuffer
private
Serializes message into bytes that can be sent on the wire.
Methods included from Monitoring::Event::Secure
#compression_allowed?, #redacted
Methods inherited from Message
#==, deserialize, #hash, #maybe_inflate, #number_returned, #set_request_id
Methods included from Id
Constructor Details
#initialize(flags, options, main_document, *sequences) ⇒ Msg
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Creates a new OP_MSG protocol message
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/mongo/protocol/msg.rb', line 62 def initialize(flags, , main_document, *sequences) @flags = flags || [] @options = unless main_document.is_a?(Hash) raise ArgumentError, "Main document must be a Hash, given: #{main_document.class}" end @main_document = main_document sequences.each_with_index do |section, index| unless section.is_a?(Section1) raise ArgumentError, "All sequences must be Section1 instances, got: #{section} at index #{index}" end end @sequences = sequences @sections = [ {type: 0, payload: @main_document} ] + @sequences.map do |section| {type: 1, payload: { identifier: section.identifier, sequence: section.documents, }} end @request_id = nil super end |
Instance Method Details
#bulk_write? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This method was written to support client-side encryption functionality. It is not recommended that this method be used in service of any other feature or behavior.
Whether this message represents a bulk write. A bulk write is an insert, update, or delete operation that encompasses multiple operations of the same type.
257 258 259 260 261 262 263 264 265 266 267 |
# File 'lib/mongo/protocol/msg.rb', line 257 def bulk_write? inserts = @main_document['documents'] updates = @main_document['updates'] deletes = @main_document['deletes'] num_inserts = inserts && inserts.length || 0 num_updates = updates && updates.length || 0 num_deletes = deletes && deletes.length || 0 num_inserts > 1 || num_updates > 1 || num_deletes > 1 end |
#documents ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
181 182 183 |
# File 'lib/mongo/protocol/msg.rb', line 181 def documents [@main_document] end |
#fix_after_deserialization ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Reverse-populates the instance variables after deserialization sets the @sections instance variable to the list of documents.
TODO fix deserialization so that this method is not needed.
169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/mongo/protocol/msg.rb', line 169 def fix_after_deserialization if @sections.nil? raise NotImplementedError, "After deserializations @sections should have been initialized" end if @sections.length != 1 raise NotImplementedError, "Deserialization must have produced exactly one section, but it produced #{sections.length} sections" end @main_document = @sections.first @sequences = [] @sections = [{type: 0, payload: @main_document}] end |
#maybe_compress(compressor, zlib_compression_level = nil) ⇒ Message
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Compress the message, if the command being sent permits compression. Otherwise returns self.
159 160 161 |
# File 'lib/mongo/protocol/msg.rb', line 159 def maybe_compress(compressor, zlib_compression_level = nil) compress_if_possible(command.keys.first, compressor, zlib_compression_level) end |
#maybe_decrypt(client) ⇒ Mongo::Protocol::Msg
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Possibly decrypt this message with libmongocrypt. Message will only be decrypted if the specified client exists, that client has been given auto-encryption options, and this message is eligible for decryption. A message is eligible for decryption if it represents one of the command types whitelisted by libmongocrypt and it contains data that is required to be encrypted by a local or remote json schema.
236 237 238 239 240 241 242 243 244 |
# File 'lib/mongo/protocol/msg.rb', line 236 def maybe_decrypt(client) if client && client.encrypter cmd = merge_sections enc_cmd = client.encrypter.decrypt(cmd) Msg.new(@flags, @options, enc_cmd) else self end end |
#maybe_encrypt(server, client) ⇒ Mongo::Protocol::Msg
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Possibly encrypt this message with libmongocrypt. Message will only be encrypted if the specified client exists, that client has been given auto-encryption options, the client has not been instructed to bypass auto-encryption, and mongocryptd determines that this message is eligible for encryption. A message is eligible for encryption if it represents one of the command types whitelisted by libmongocrypt and it contains data that is required to be encrypted by a local or remote json schema.
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
# File 'lib/mongo/protocol/msg.rb', line 198 def maybe_encrypt(server, client) # TODO verify compression happens later, i.e. when this method runs # the message is not compressed. if client && client.encrypter && client.encrypter.encrypt? if server.max_wire_version < 8 raise Error::CryptError.new( "Cannot perform encryption against a MongoDB server older than " + "4.2 (wire version less than 8). Currently connected to server " + "with max wire version #{server.max_wire_version}} " + "(Auto-encryption requires a minimum MongoDB version of 4.2)" ) end db_name = @main_document[DATABASE_IDENTIFIER] cmd = merge_sections enc_cmd = client.encrypter.encrypt(db_name, cmd) if cmd.key?('$db') && !enc_cmd.key?('$db') enc_cmd['$db'] = cmd['$db'] end Msg.new(@flags, @options, enc_cmd) else self end end |
#payload ⇒ BSON::Document
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return the event payload for monitoring.
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/mongo/protocol/msg.rb', line 107 def payload # Reorder keys in main_document for better logging - see # https://jira.mongodb.org/browse/RUBY-1591. # Note that even without the reordering, the payload is not an exact # match to what is sent over the wire because the command as used in # the published event combines keys from multiple sections of the # payload sent over the wire. ordered_command = {} skipped_command = {} command.each do |k, v| if INTERNAL_KEYS.member?(k.to_s) skipped_command[k] = v else ordered_command[k] = v end end ordered_command.update(skipped_command) BSON::Document.new( command_name: ordered_command.keys.first.to_s, database_name: @main_document[DATABASE_IDENTIFIER], command: ordered_command, request_id: request_id, reply: @main_document, ) end |
#replyable? ⇒ true, false
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Whether the message expects a reply from the database.
95 96 97 |
# File 'lib/mongo/protocol/msg.rb', line 95 def replyable? @replyable ||= !flags.include?(:more_to_come) end |
#serialize(buffer = BSON::ByteBuffer.new, max_bson_size = nil) ⇒ BSON::ByteBuffer
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Serializes message into bytes that can be sent on the wire.
142 143 144 145 146 |
# File 'lib/mongo/protocol/msg.rb', line 142 def serialize(buffer = BSON::ByteBuffer.new, max_bson_size = nil) super add_check_sum(buffer) buffer end |