Documentation ¶
Overview ¶
Package wiremessage contains types for speaking the MongoDB Wire Protocol. Since this low level library is meant to be used in the context of a driver and in the context of a server all of the flags and types of the wire protocol are implemented. For each op there are two corresponding implementations. One prefixed with Immutable which can be created by casting a []byte to the type, and another prefixed with Mutable that is a struct with methods to mutate the op.
Index ¶
- Constants
- Variables
- func CurrentRequestID() int32
- func NextRequestID() int32
- func Validate([]byte) error
- type Appender
- type Command
- type CommandReply
- func (cr CommandReply) AppendWireMessage([]byte) ([]byte, error)
- func (cr CommandReply) Len() int
- func (cr CommandReply) MarshalWireMessage() ([]byte, error)
- func (cr CommandReply) String() string
- func (cr *CommandReply) UnmarshalWireMessage([]byte) error
- func (cr CommandReply) ValidateWireMessage() error
- type Compressed
- type CompressorID
- type Delete
- type DeleteFlag
- type Error
- type ErrorType
- type GetMore
- func (gm GetMore) AppendWireMessage(b []byte) ([]byte, error)
- func (gm GetMore) CommandDocument() bsonx.Doc
- func (gm GetMore) DatabaseName() string
- func (gm GetMore) Len() int
- func (gm GetMore) MarshalWireMessage() ([]byte, error)
- func (gm GetMore) String() string
- func (gm *GetMore) UnmarshalWireMessage([]byte) error
- func (gm GetMore) ValidateWireMessage() error
- type Header
- type Insert
- type InsertFlag
- type KillCursors
- func (kc KillCursors) AppendWireMessage(b []byte) ([]byte, error)
- func (kc KillCursors) CommandDocument() bsonx.Doc
- func (kc KillCursors) Len() int
- func (kc KillCursors) MarshalWireMessage() ([]byte, error)
- func (kc KillCursors) String() string
- func (kc *KillCursors) UnmarshalWireMessage([]byte) error
- func (kc KillCursors) ValidateWireMessage() error
- type Marshaler
- type Msg
- func (m *Msg) AcknowledgedWrite() bool
- func (m Msg) AppendWireMessage(b []byte) ([]byte, error)
- func (m *Msg) GetMainDocument() (bsonx.Doc, error)
- func (m *Msg) GetSequenceArray() (bsonx.Arr, string, error)
- func (m Msg) Len() int
- func (m Msg) MarshalWireMessage() ([]byte, error)
- func (m Msg) String() string
- func (m *Msg) UnmarshalWireMessage(b []byte) error
- func (m Msg) ValidateWireMessage() error
- type MsgFlag
- type OpCode
- type Query
- func (q *Query) AcknowledgedWrite() bool
- func (q Query) AppendWireMessage(b []byte) ([]byte, error)
- func (q Query) CollectionName() string
- func (q Query) CommandDocument() (bsonx.Doc, error)
- func (q Query) DatabaseName() string
- func (q Query) Legacy() bool
- func (q Query) Len() int
- func (q Query) MarshalWireMessage() ([]byte, error)
- func (q Query) String() string
- func (q *Query) UnmarshalWireMessage(b []byte) error
- func (q Query) ValidateWireMessage() error
- type QueryFlag
- type ReadWriteCloser
- type ReadWriter
- type Reader
- type Reply
- func (r Reply) AppendWireMessage(b []byte) ([]byte, error)
- func (r *Reply) GetMainDocument() (bsonx.Doc, error)
- func (r *Reply) GetMainLegacyDocument(fullCollectionName string) (bsonx.Doc, error)
- func (r Reply) Len() int
- func (r Reply) MarshalWireMessage() ([]byte, error)
- func (r Reply) String() string
- func (r *Reply) UnmarshalWireMessage(b []byte) error
- func (r Reply) ValidateWireMessage() error
- type ReplyFlag
- type Section
- type SectionBody
- type SectionDocumentSequence
- type SectionType
- type Transformer
- type Unmarshaler
- type Update
- type UpdateFlag
- type Validator
- type WireMessage
- type Writer
Constants ¶
const DefaultZlibLevel = 6
DefaultZlibLevel is the default level for zlib compression
const OpmsgWireVersion = 6
OpmsgWireVersion is the minimum wire version needed to use OP_MSG
Variables ¶
var ErrHeaderIncorrectOpCode error = Error{Type: ErrHeader, Message: "invalid header because OpCode is improperly set"}
ErrHeaderIncorrectOpCode is returned when the OpCode on a header is set but is not set to the correct OpCode.
var ErrHeaderInvalidLength error = Error{Type: ErrHeader, Message: "invalid header because MessageLength is imporperly set"}
ErrHeaderInvalidLength is returned when the MessageLength of a header is set but is not set to the correct size.
var ErrHeaderTooFewBytes error = Error{Type: ErrHeader, Message: "invalid header because []byte too small"}
ErrHeaderTooFewBytes is returned when a call to ReadHeader does not contain enough bytes to be a valid header.
var ErrHeaderTooSmall error = Error{Type: ErrHeader, Message: "the header is too small to be valid"}
ErrHeaderTooSmall is returned when the size of the header is too small to be valid.
var ErrInvalidHeader error = Error{Type: ErrHeader, Message: "invalid header"}
ErrInvalidHeader is returned when methods are called on a malformed Header.
var ErrInvalidMessageLength = errors.New("the message length is too small, it must be at least 16")
ErrInvalidMessageLength is returned when the provided message length is too small to be valid.
var ErrUnknownOpCode = errors.New("the opcode is unknown")
ErrUnknownOpCode is returned when the provided opcode is not a valid opcode.
Functions ¶
func CurrentRequestID ¶
func CurrentRequestID() int32
CurrentRequestID returns the current request ID.
Types ¶
type Appender ¶
Appender is the interface implemented by types that can append themselves, as a MongoDB wire protocol message, to the provided slice of bytes.
type Command ¶
type Command struct { MsgHeader Header Database string CommandName string Metadata string CommandArgs string InputDocs []bson.Raw }
Command represents the OP_COMMAND message of the MongoDB wire protocol.
func (Command) AppendWireMessage ¶
AppendWireMessage implements the Appender and WireMessage interfaces.
func (Command) MarshalWireMessage ¶
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
func (*Command) UnmarshalWireMessage ¶
UnmarshalWireMessage implements the Unmarshaler interface.
func (Command) ValidateWireMessage ¶
ValidateWireMessage implements the Validator and WireMessage interfaces.
type CommandReply ¶
type CommandReply struct { MsgHeader Header Metadata bson.Raw CommandReply bson.Raw OutputDocs []bson.Raw }
CommandReply represents the OP_COMMANDREPLY message of the MongoDB wire protocol.
func (CommandReply) AppendWireMessage ¶
func (cr CommandReply) AppendWireMessage([]byte) ([]byte, error)
AppendWireMessage implements the Appender and WireMessage interfaces.
func (CommandReply) Len ¶
func (cr CommandReply) Len() int
Len implements the WireMessage interface.
func (CommandReply) MarshalWireMessage ¶
func (cr CommandReply) MarshalWireMessage() ([]byte, error)
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
func (CommandReply) String ¶
func (cr CommandReply) String() string
String implements the fmt.Stringer interface.
func (*CommandReply) UnmarshalWireMessage ¶
func (cr *CommandReply) UnmarshalWireMessage([]byte) error
UnmarshalWireMessage implements the Unmarshaler interface.
func (CommandReply) ValidateWireMessage ¶
func (cr CommandReply) ValidateWireMessage() error
ValidateWireMessage implements the Validator and WireMessage interfaces.
type Compressed ¶
type Compressed struct { MsgHeader Header OriginalOpCode OpCode UncompressedSize int32 CompressorID CompressorID CompressedMessage []byte }
Compressed represents the OP_COMPRESSED message of the MongoDB wire protocol.
func (Compressed) AppendWireMessage ¶
func (c Compressed) AppendWireMessage(b []byte) ([]byte, error)
AppendWireMessage implements the Appender and WireMessage interfaces.
AppendWireMessage will set the MessageLength property of MsgHeader if it is 0. It will also set the OpCode to OpCompressed if the OpCode is 0. If either of these properties are non-zero and not correct, this method will return both the []byte with the wire message appended to it and an invalid header error.
func (Compressed) MarshalWireMessage ¶
func (c Compressed) MarshalWireMessage() ([]byte, error)
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
func (Compressed) String ¶
func (c Compressed) String() string
String implements the fmt.Stringer interface.
func (*Compressed) UnmarshalWireMessage ¶
func (c *Compressed) UnmarshalWireMessage(b []byte) error
UnmarshalWireMessage implements the Unmarshaler interface.
func (Compressed) ValidateWireMessage ¶
func (c Compressed) ValidateWireMessage() error
ValidateWireMessage implements the Validator and WireMessage interfaces.
type CompressorID ¶
type CompressorID uint8
CompressorID is the ID for each type of Compressor.
const ( CompressorNoOp CompressorID = iota CompressorSnappy CompressorZLib )
These constants represent the individual compressor IDs for an OP_COMPRESSED.
type Delete ¶
type Delete struct { MsgHeader Header FullCollectionName string Flags DeleteFlag Selector bson.Raw }
Delete represents the OP_DELETE message of the MongoDB wire protocol.
func (Delete) AppendWireMessage ¶
AppendWireMessage implements the Appender and WireMessage interfaces.
func (Delete) MarshalWireMessage ¶
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
func (*Delete) UnmarshalWireMessage ¶
UnmarshalWireMessage implements the Unmarshaler interface.
func (Delete) ValidateWireMessage ¶
ValidateWireMessage implements the Validator and WireMessage interfaces.
type DeleteFlag ¶
type DeleteFlag int32
DeleteFlag represents the flags on an OP_DELETE message.
const (
SingleRemove DeleteFlag = 1 << iota
)
These constants represent the individual flags on an OP_DELETE message.
type ErrorType ¶
type ErrorType uint16
ErrorType is the type of error, which indicates from which part of the code the error originated.
type GetMore ¶
type GetMore struct { MsgHeader Header Zero int32 FullCollectionName string NumberToReturn int32 CursorID int64 }
GetMore represents the OP_GET_MORE message of the MongoDB wire protocol.
func (GetMore) AppendWireMessage ¶
AppendWireMessage implements the Appender and WireMessage interfaces.
AppendWireMessage will set the MessageLength property of the MsgHeader if it is zero. It will also set the OpCode to OpGetMore if the OpCode is zero. If either of these properties are non-zero and not correct, this method will return both the []byte with the wire message appended to it and an invalid header error.
func (GetMore) CommandDocument ¶ added in v0.2.0
CommandDocument creates a BSON document representing this command.
func (GetMore) DatabaseName ¶ added in v0.2.0
DatabaseName returns the name of the database for this command.
func (GetMore) MarshalWireMessage ¶
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
func (*GetMore) UnmarshalWireMessage ¶
UnmarshalWireMessage implements the Unmarshaler interface.
func (GetMore) ValidateWireMessage ¶
ValidateWireMessage implements the Validator and WireMessage interfaces.
type Header ¶
Header represents the header of a MongoDB wire protocol message.
func ReadHeader ¶
ReadHeader reads a header from the given slice of bytes starting at offset pos.
func (Header) AppendHeader ¶
AppendHeader will append this header to the given slice of bytes.
func (*Header) SetDefaults ¶
SetDefaults sets the length and opcode of this header.
type Insert ¶
type Insert struct { MsgHeader Header Flags InsertFlag FullCollectionName string Documents []bson.Raw }
Insert represents the OP_INSERT message of the MongoDB wire protocol.
func (Insert) AppendWireMessage ¶
AppendWireMessage implements the Appender and WireMessage interfaces.
func (Insert) MarshalWireMessage ¶
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
func (*Insert) UnmarshalWireMessage ¶
UnmarshalWireMessage implements the Unmarshaler interface.
func (Insert) ValidateWireMessage ¶
ValidateWireMessage implements the Validator and WireMessage interfaces.
type InsertFlag ¶
type InsertFlag int32
InsertFlag represents the flags on an OP_INSERT message.
const (
ContinueOnError InsertFlag = 1 << iota
)
These constants represent the individual flags on an OP_INSERT message.
type KillCursors ¶
type KillCursors struct { MsgHeader Header Zero int32 NumberOfCursorIDs int32 CursorIDs []int64 DatabaseName string CollectionName string }
KillCursors represents the OP_KILL_CURSORS message of the MongoDB wire protocol.
func (KillCursors) AppendWireMessage ¶
func (kc KillCursors) AppendWireMessage(b []byte) ([]byte, error)
AppendWireMessage implements the Appender and WireMessage interfaces.
func (KillCursors) CommandDocument ¶ added in v0.2.0
func (kc KillCursors) CommandDocument() bsonx.Doc
CommandDocument creates a BSON document representing this command.
func (KillCursors) MarshalWireMessage ¶
func (kc KillCursors) MarshalWireMessage() ([]byte, error)
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
func (KillCursors) String ¶
func (kc KillCursors) String() string
String implements the fmt.Stringer interface.
func (*KillCursors) UnmarshalWireMessage ¶
func (kc *KillCursors) UnmarshalWireMessage([]byte) error
UnmarshalWireMessage implements the Unmarshaler interface.
func (KillCursors) ValidateWireMessage ¶
func (kc KillCursors) ValidateWireMessage() error
ValidateWireMessage implements the Validator and WireMessage interfaces.
type Marshaler ¶
Marshaler is the interface implemented by types that can marshal themselves into a valid MongoDB wire protocol message.
type Msg ¶
Msg represents the OP_MSG message of the MongoDB wire protocol.
func (*Msg) AcknowledgedWrite ¶
AcknowledgedWrite returns true if this msg represents an acknowledged write command.
func (Msg) AppendWireMessage ¶
AppendWireMessage implements the Appender and WireMessage interfaces.
AppendWireMesssage will set the MessageLength property of the MsgHeader if it is zero. It will also set the Opcode to OP_MSG if it is zero. If either of these properties are non-zero and not correct, this method will return both the []byte with the wire message appended to it and an invalid header error.
func (*Msg) GetMainDocument ¶
GetMainDocument returns the document containing the message to send.
func (*Msg) GetSequenceArray ¶
GetSequenceArray returns this message's document sequence as a BSON array along with the array identifier. If this message has no associated document sequence, a nil array is returned.
func (Msg) MarshalWireMessage ¶
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
func (*Msg) UnmarshalWireMessage ¶
UnmarshalWireMessage implements the Unmarshaler interface.
func (Msg) ValidateWireMessage ¶
ValidateWireMessage implements the Validator and WireMessage interfaces.
type OpCode ¶
type OpCode int32
OpCode represents a MongoDB wire protocol opcode.
const ( OpReply OpCode = 1 OpUpdate OpCode = 2001 OpInsert OpCode = 2002 OpQuery OpCode = 2004 OpGetMore OpCode = 2005 OpDelete OpCode = 2006 OpKillCursors OpCode = 2007 OpCommand OpCode = 2010 OpCommandReply OpCode = 2011 OpCompressed OpCode = 2012 OpMsg OpCode = 2013 )
These constants are the valid opcodes for the version of the wireprotocol supported by this library. The skipped OpCodes are historical OpCodes that are no longer used.
type Query ¶
type Query struct { MsgHeader Header Flags QueryFlag FullCollectionName string NumberToSkip int32 NumberToReturn int32 Query bson.Raw ReturnFieldsSelector bson.Raw SkipSet bool Limit *int32 BatchSize *int32 }
Query represents the OP_QUERY message of the MongoDB wire protocol.
func (*Query) AcknowledgedWrite ¶
AcknowledgedWrite returns true if this command represents an acknowledged write
func (Query) AppendWireMessage ¶
AppendWireMessage implements the Appender and WireMessage interfaces.
AppendWireMessage will set the MessageLength property of the MsgHeader if it is zero. It will also set the OpCode to OpQuery if the OpCode is zero. If either of these properties are non-zero and not correct, this method will return both the []byte with the wire message appended to it and an invalid header error.
func (Query) CollectionName ¶ added in v0.2.0
CollectionName returns the collection name for the query.
func (Query) CommandDocument ¶ added in v0.2.0
CommandDocument creates a BSON document representing this command.
func (Query) DatabaseName ¶ added in v0.2.0
DatabaseName returns the database name for the query.
func (Query) Legacy ¶ added in v0.2.0
Legacy returns true if the query represents a legacy find operation.
func (Query) MarshalWireMessage ¶
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
See AppendWireMessage for a description of the rules this method follows.
func (*Query) UnmarshalWireMessage ¶
UnmarshalWireMessage implements the Unmarshaler interface.
func (Query) ValidateWireMessage ¶
ValidateWireMessage implements the Validator and WireMessage interfaces.
type QueryFlag ¶
type QueryFlag int32
QueryFlag represents the flags on an OP_QUERY message.
const ( TailableCursor QueryFlag SlaveOK OplogReplay NoCursorTimeout AwaitData Exhaust Partial )
These constants represent the individual flags on an OP_QUERY message.
type ReadWriteCloser ¶
ReadWriteCloser is the interface implemented by types that can read and write WireMessages and can also be closed.
type ReadWriter ¶
ReadWriter is the interface implemented by types that can both read and write WireMessages.
type Reader ¶
type Reader interface {
ReadWireMessage(context.Context) (WireMessage, error)
}
Reader is the interface implemented by types that can have WireMessages read from them.
Implementation must obey the cancellation, timeouts, and deadlines of the provided context.Context object.
type Reply ¶
type Reply struct { MsgHeader Header ResponseFlags ReplyFlag CursorID int64 StartingFrom int32 NumberReturned int32 Documents []bson.Raw }
Reply represents the OP_REPLY message of the MongoDB wire protocol.
func (Reply) AppendWireMessage ¶
AppendWireMessage implements the Appender and WireMessage interfaces.
AppendWireMessage will set the MessageLength property of the MsgHeader if it is zero. It will also set the OpCode to OpQuery if the OpCode is zero. If either of these properties are non-zero and not correct, this method will return both the []byte with the wire message appended to it and an invalid header error.
func (*Reply) GetMainDocument ¶
GetMainDocument returns the main BSON document for this reply.
func (*Reply) GetMainLegacyDocument ¶ added in v0.2.0
GetMainLegacyDocument constructs and returns a BSON document for this reply.
func (Reply) MarshalWireMessage ¶
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
See AppendWireMessage for a description of the rules this method follows.
func (*Reply) UnmarshalWireMessage ¶
UnmarshalWireMessage implements the Unmarshaler interface.
func (Reply) ValidateWireMessage ¶
ValidateWireMessage implements the Validator and WireMessage interfaces.
type ReplyFlag ¶
type ReplyFlag int32
ReplyFlag represents the flags of an OP_REPLY message.
These constants represent the individual flags of an OP_REPLY message.
type Section ¶
type Section interface { Kind() SectionType Len() int AppendSection([]byte) []byte }
Section represents a section on an OP_MSG message.
type SectionBody ¶
type SectionBody struct { PayloadType SectionType Document bson.Raw }
SectionBody represents the kind body of an OP_MSG message.
func (SectionBody) AppendSection ¶
func (sb SectionBody) AppendSection(dest []byte) []byte
AppendSection implements the Section interface.
func (SectionBody) Kind ¶
func (sb SectionBody) Kind() SectionType
Kind implements the Section interface.
type SectionDocumentSequence ¶
type SectionDocumentSequence struct { PayloadType SectionType Size int32 Identifier string Documents []bson.Raw }
SectionDocumentSequence represents the kind document sequence of an OP_MSG message.
func (SectionDocumentSequence) AppendSection ¶
func (sds SectionDocumentSequence) AppendSection(dest []byte) []byte
AppendSection implements the Section interface
func (SectionDocumentSequence) Kind ¶
func (sds SectionDocumentSequence) Kind() SectionType
Kind implements the Section interface.
func (SectionDocumentSequence) Len ¶
func (sds SectionDocumentSequence) Len() int
Len implements the Section interface
func (SectionDocumentSequence) PayloadLen ¶
func (sds SectionDocumentSequence) PayloadLen() int
PayloadLen returns the length of the payload
type SectionType ¶
type SectionType uint8
SectionType represents the type for 1 section in an OP_MSG
const ( SingleDocument SectionType = iota DocumentSequence )
These constants represent the individual section types for a section in an OP_MSG
type Transformer ¶
type Transformer interface {
TransformWireMessage(WireMessage) (WireMessage, error)
}
Transformer is the interface implemented by types that can alter a WireMessage. Implementations should not directly alter the provided WireMessage and instead make a copy of the message, alter it, and returned the new message.
type Unmarshaler ¶
Unmarshaler is the interface implemented by types that can unmarshal a MongoDB wire protocol message version of themselves. The input can be assumed to be a valid MongoDB wire protocol message. UnmarshalWireMessage must copy the data if it wishes to retain the data after returning.
type Update ¶
type Update struct { MsgHeader Header FullCollectionName string Flags UpdateFlag Selector bson.Raw Update bson.Raw }
Update represents the OP_UPDATE message of the MongoDB wire protocol.
func (Update) AppendWireMessage ¶
AppendWireMessage implements the Appender and WireMessage interfaces.
func (Update) MarshalWireMessage ¶
MarshalWireMessage implements the Marshaler and WireMessage interfaces.
func (*Update) UnmarshalWireMessage ¶
UnmarshalWireMessage implements the Unmarshaler interface.
func (Update) ValidateWireMessage ¶
ValidateWireMessage implements the Validator and WireMessage interfaces.
type UpdateFlag ¶
type UpdateFlag int32
UpdateFlag represents the flags on an OP_UPDATE message.
const ( Upsert UpdateFlag = 1 << iota MultiUpdate )
These constants represent the individual flags on an OP_UPDATE message.
type Validator ¶
type Validator interface {
ValidateWireMessage() error
}
Validator is the interface implemented by types that can validate themselves as a MongoDB wire protocol message.
type WireMessage ¶
type WireMessage interface { Marshaler Validator Appender fmt.Stringer // Len returns the length in bytes of this WireMessage. Len() int }
WireMessage represents a message in the MongoDB wire protocol.
func ReadFrom ¶
func ReadFrom(io.Reader) (WireMessage, error)
ReadFrom will read a single WireMessage from the given io.Reader. This function will validate the WireMessage. If the WireMessage is not valid, this method will return both the error and the invalid WireMessage. If another type of processing error occurs, WireMessage will be nil.
This function will return the immutable versions of wire protocol messages. The Convert function can be used to retrieve a mutable version of wire protocol messages.
func Unmarshal ¶
func Unmarshal([]byte) (WireMessage, error)
Unmarshal will unmarshal data into a WireMessage.