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 ¶
- 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
- type Header
- type Insert
- type InsertFlag
- type KillCursors
- func (kc KillCursors) AppendWireMessage([]byte) ([]byte, error)
- 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
- type MsgFlag
- type OpCode
- type Query
- type QueryFlag
- type ReadWriteCloser
- type ReadWriter
- type Reader
- type Reply
- type ReplyFlag
- type Section
- type SectionBody
- type SectionDocumentSequence
- type Transformer
- type Unmarshaler
- type Update
- type UpdateFlag
- type Validator
- type WireMessage
- type Writer
Constants ¶
This section is empty.
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.Reader }
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.Reader CommandReply bson.Reader OutputDocs []bson.Reader }
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([]byte) ([]byte, error)
AppendWireMessage implements the Appender and WireMessage interfaces.
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([]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 CompressorZLip )
These constants represent the individual compressor IDs for an OP_COMPRESSED.
type Delete ¶
type Delete struct { MsgHeader Header FullCollectionName string Flags DeleteFlag Selector bson.Reader }
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 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.
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.Reader }
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 ¶
KillCursors represents the OP_KILL_CURSORS message of the MongoDB wire protocol.
func (KillCursors) AppendWireMessage ¶
func (kc KillCursors) AppendWireMessage([]byte) ([]byte, error)
AppendWireMessage implements the Appender and WireMessage interfaces.
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) AppendWireMessage ¶
AppendWireMessage implements the Appender and WireMessage interfaces.
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.Reader ReturnFieldsSelector bson.Reader }
Query represents the OP_QUERY message of the MongoDB wire protocol.
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) 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.Reader }
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) 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() uint8
}
Section represents a section on an OP_MSG message.
type SectionBody ¶
SectionBody represents the kind body of an OP_MSG message.
type SectionDocumentSequence ¶
SectionDocumentSequence represents the kind document sequence of an OP_MSG message.
func (SectionDocumentSequence) Kind ¶
func (sds SectionDocumentSequence) Kind() uint8
Kind implements the Section interface.
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.Reader Update bson.Reader }
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.