Documentation ¶
Index ¶
- Constants
- func AppendCompressedCompressedMessage(dst []byte, msg []byte) []byte
- func AppendCompressedCompressorID(dst []byte, id CompressorID) []byte
- func AppendCompressedOriginalOpCode(dst []byte, opcode OpCode) []byte
- func AppendCompressedUncompressedSize(dst []byte, size int32) []byte
- func AppendGetMoreCursorID(dst []byte, cursorID int64) []byte
- func AppendGetMoreFullCollectionName(dst []byte, ns string) []byte
- func AppendGetMoreNumberToReturn(dst []byte, numToReturn int32) []byte
- func AppendGetMoreZero(dst []byte) []byte
- func AppendHeader(dst []byte, length, reqid, respto int32, opcode OpCode) []byte
- func AppendHeaderStart(dst []byte, reqid, respto int32, opcode OpCode) (index int32, b []byte)
- func AppendKillCursorsCursorIDs(dst []byte, cursors []int64) []byte
- func AppendKillCursorsNumberIDs(dst []byte, numIDs int32) []byte
- func AppendKillCursorsZero(dst []byte) []byte
- func AppendMsgFlags(dst []byte, flags MsgFlag) []byte
- func AppendMsgSectionType(dst []byte, stype SectionType) []byte
- func AppendQueryFlags(dst []byte, flags QueryFlag) []byte
- func AppendQueryFullCollectionName(dst []byte, ns string) []byte
- func AppendQueryNumberToReturn(dst []byte, nor int32) []byte
- func AppendQueryNumberToSkip(dst []byte, skip int32) []byte
- func AppendReplyCursorID(dst []byte, id int64) []byte
- func AppendReplyFlags(dst []byte, flags ReplyFlag) []byte
- func AppendReplyNumberReturned(dst []byte, nr int32) []byte
- func AppendReplyStartingFrom(dst []byte, sf int32) []byte
- func CurrentRequestID() int32
- func IsMsgMoreToCome(wm []byte) bool
- func NextRequestID() int32
- func ReadCompressedCompressedMessage(src []byte, length int32) (msg []byte, rem []byte, ok bool)
- func ReadCompressedUncompressedSize(src []byte) (size int32, rem []byte, ok bool)
- func ReadKillCursorsCursorIDs(src []byte, numIDs int32) (cursorIDs []int64, rem []byte, ok bool)
- func ReadKillCursorsNumberIDs(src []byte) (numIDs int32, rem []byte, ok bool)
- func ReadKillCursorsZero(src []byte) (zero int32, rem []byte, ok bool)
- func ReadMsgChecksum(src []byte) (checksum uint32, rem []byte, ok bool)
- func ReadMsgSectionDocumentSequence(src []byte) (identifier string, docs []bsoncore.Document, rem []byte, ok bool)
- func ReadMsgSectionSingleDocument(src []byte) (doc bsoncore.Document, rem []byte, ok bool)
- func ReadQueryFullCollectionName(src []byte) (collname string, rem []byte, ok bool)
- func ReadQueryNumberToReturn(src []byte) (ntr int32, rem []byte, ok bool)
- func ReadQueryNumberToSkip(src []byte) (nts int32, rem []byte, ok bool)
- func ReadQueryQuery(src []byte) (query bsoncore.Document, rem []byte, ok bool)
- func ReadQueryReturnFieldsSelector(src []byte) (rfs bsoncore.Document, rem []byte, ok bool)
- func ReadReplyCursorID(src []byte) (cursorID int64, rem []byte, ok bool)
- func ReadReplyDocument(src []byte) (doc bsoncore.Document, rem []byte, ok bool)
- func ReadReplyDocuments(src []byte) (docs []bsoncore.Document, rem []byte, ok bool)
- func ReadReplyNumberReturned(src []byte) (numberReturned int32, rem []byte, ok bool)
- func ReadReplyStartingFrom(src []byte) (startingFrom int32, rem []byte, ok bool)
- type CompressorID
- type MsgFlag
- type OpCode
- type QueryFlag
- type ReplyFlag
- type SectionType
- type WireMessage
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 ¶
This section is empty.
Functions ¶
func AppendCompressedCompressedMessage ¶
AppendCompressedCompressedMessage appends the compressed wiremessage to dst.
func AppendCompressedCompressorID ¶
func AppendCompressedCompressorID(dst []byte, id CompressorID) []byte
AppendCompressedCompressorID appends the ID of the compressor to dst.
func AppendCompressedOriginalOpCode ¶
AppendCompressedOriginalOpCode appends the original opcode to dst.
func AppendCompressedUncompressedSize ¶
AppendCompressedUncompressedSize appends the uncompressed size of a compressed wiremessage to dst.
func AppendGetMoreCursorID ¶
AppendGetMoreCursorID appends the cursorID field to dst.
func AppendGetMoreFullCollectionName ¶
AppendGetMoreFullCollectionName appends the fullCollectionName field to dst.
func AppendGetMoreNumberToReturn ¶
AppendGetMoreNumberToReturn appends the numberToReturn field to dst.
func AppendGetMoreZero ¶
AppendGetMoreZero appends the zero field to dst.
func AppendHeader ¶
AppendHeader appends a header to dst.
func AppendHeaderStart ¶
AppendHeaderStart appends a header to the dst slice and returns an index where the wire message starts in dst and the updated slice.
func AppendKillCursorsCursorIDs ¶
AppendKillCursorsCursorIDs appends each the cursorIDs field to dst.
func AppendKillCursorsNumberIDs ¶
AppendKillCursorsNumberIDs appends the numberOfCursorIDs field to dst.
func AppendKillCursorsZero ¶
AppendKillCursorsZero appends the zero field to dst.
func AppendMsgFlags ¶
AppendMsgFlags appends the flags for an OP_MSG wire message.
func AppendMsgSectionType ¶
func AppendMsgSectionType(dst []byte, stype SectionType) []byte
AppendMsgSectionType appends the section type to dst.
func AppendQueryFlags ¶
AppendQueryFlags appends the flags for an OP_QUERY wire message.
func AppendQueryFullCollectionName ¶
AppendQueryFullCollectionName appends the full collection name to dst.
func AppendQueryNumberToReturn ¶
AppendQueryNumberToReturn appends the number to return to dst.
func AppendQueryNumberToSkip ¶
AppendQueryNumberToSkip appends the number to skip to dst.
func AppendReplyCursorID ¶
AppendReplyCursorID appends the cursor ID to dst.
func AppendReplyFlags ¶
AppendReplyFlags appends the flags for an OP_REPLY wire message.
func AppendReplyNumberReturned ¶
AppendReplyNumberReturned appends the number returned to dst.
func AppendReplyStartingFrom ¶
AppendReplyStartingFrom appends the starting from field to dst.
func CurrentRequestID ¶
func CurrentRequestID() int32
CurrentRequestID returns the current request ID.
func IsMsgMoreToCome ¶
IsMsgMoreToCome returns if the provided wire message is an OP_MSG with the more to come flag set.
func ReadCompressedCompressedMessage ¶
ReadCompressedCompressedMessage reads the compressed wiremessage to dst.
func ReadCompressedUncompressedSize ¶
ReadCompressedUncompressedSize reads the uncompressed size of a compressed wiremessage to dst.
func ReadKillCursorsCursorIDs ¶
ReadKillCursorsCursorIDs reads numIDs cursor IDs from src.
func ReadKillCursorsNumberIDs ¶
ReadKillCursorsNumberIDs reads the numberOfCursorIDs field from src.
func ReadKillCursorsZero ¶
ReadKillCursorsZero reads the zero field from src.
func ReadMsgChecksum ¶
ReadMsgChecksum reads a checksum from src.
func ReadMsgSectionDocumentSequence ¶
func ReadMsgSectionDocumentSequence(src []byte) (identifier string, docs []bsoncore.Document, rem []byte, ok bool)
ReadMsgSectionDocumentSequence reads an identifier and document sequence from src.
func ReadMsgSectionSingleDocument ¶
ReadMsgSectionSingleDocument reads a single document from src.
func ReadQueryFullCollectionName ¶
ReadQueryFullCollectionName reads the full collection name from src.
func ReadQueryNumberToReturn ¶
ReadQueryNumberToReturn reads the number to return from src.
func ReadQueryNumberToSkip ¶
ReadQueryNumberToSkip reads the number to skip from src.
func ReadQueryQuery ¶
ReadQueryQuery reads the query from src.
func ReadQueryReturnFieldsSelector ¶
ReadQueryReturnFieldsSelector reads a return fields selector document from src.
func ReadReplyCursorID ¶
ReadReplyCursorID reads a cursor ID from src.
func ReadReplyDocument ¶
ReadReplyDocument reads a reply document from src.
func ReadReplyDocuments ¶
ReadReplyDocuments reads as many documents as possible from src
func ReadReplyNumberReturned ¶
ReadReplyNumberReturned reads the numbered returned from src.
Types ¶
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.
func ReadCompressedCompressorID ¶
func ReadCompressedCompressorID(src []byte) (id CompressorID, rem []byte, ok bool)
ReadCompressedCompressorID reads the ID of the compressor to dst.
type MsgFlag ¶
type MsgFlag uint32
MsgFlag represents the flags on an OP_MSG message.
These constants represent the individual flags on an OP_MSG message.
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.
func ReadCompressedOriginalOpCode ¶
ReadCompressedOriginalOpCode reads the original opcode from src.
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.
func ReadQueryFlags ¶
ReadQueryFlags reads OP_QUERY flags from src.
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.
func ReadReplyFlags ¶
ReadReplyFlags reads OP_REPLY flags from src.
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
func ReadMsgSectionType ¶
func ReadMsgSectionType(src []byte) (stype SectionType, rem []byte, ok bool)
ReadMsgSectionType reads the section type from src.
type WireMessage ¶
type WireMessage []byte
WireMessage represents a MongoDB wire message in binary form.