Documentation ¶
Overview ¶
Package bson is a library for reading, writing, and manipulating BSON. The library has three types for representing BSON.
The Reader type is used to validate and retrieve elements from a byte slice. If you are not manipulating the underlying document and just want to validate or ensure the document has certain keys, this is the type you should use.
The Document type is a more generic type that can do all the read actions the Reader can do and allows for manipulation of documents. The main usecase for this type is reading some BSON and then adding, changing, or removing elements or to build a document that will need to be manipulated later. If the document can be created in a single pass without the need to do any lookups, the Builder type is might be more appropriate.
The Builder type (in the "bson/builder" package) is used to create a BSON document. The type only allows the iterative building of a document, so there is no way to verify the contents outside of writing the document. If you have a Builder and need to conditionally add a field, you can write the document to a byte slice and use the Reader type to lookup the desired document, but in this case you should probably use a Document instead.
The Element type represents a BSON element and the Value type represents an individual value for a BSON element.
The Encoder and Decoder types can be used to marshal a type to an io.Writer or to unmarshal into a type from an io.Reader. These types will use reflection and evaluate struct tags unless the provided types implements the Marshaler or Unmarshaler interfaces. The Builder and Reader types can be used to implement these interfaces for types.
The DocumentEncoder type can be used to encode a type to a Document instead of an io.Writer. This is useful if some additional manipulation is required after encoding a document. This type supports the same encoding behavior as the Encoder type.
Index ¶
- Variables
- func Marshal(value interface{}) ([]byte, error)
- func ToExtJSON(canonical bool, bson []byte) (string, error)
- func Unmarshal(in []byte, out interface{}) error
- type Array
- func (a *Array) Append(values ...*Value) *Array
- func (a *Array) Concat(docs ...interface{}) error
- func (a *Array) Delete(index uint) *Value
- func (a *Array) Iterator() (*ArrayIterator, error)
- func (a *Array) Len() int
- func (a *Array) Lookup(index uint) (*Value, error)
- func (a *Array) MarshalBSON() ([]byte, error)
- func (a *Array) Prepend(values ...*Value) *Array
- func (a *Array) Reset()
- func (a *Array) Set(index uint, value *Value) *Array
- func (a *Array) String() string
- func (a *Array) Validate() (uint32, error)
- func (a *Array) WriteArray(start uint, writer []byte) (int64, error)
- func (a *Array) WriteTo(w io.Writer) (int64, error)
- type ArrayIterator
- type Binary
- type CodeWithScope
- type DBPointer
- type Decoder
- type Document
- func (d *Document) Append(elems ...*Element) *Document
- func (d *Document) Concat(docs ...interface{}) error
- func (d *Document) Copy() *Document
- func (d *Document) Delete(key ...string) *Element
- func (d *Document) ElementAt(index uint) *Element
- func (d *Document) ElementAtOK(index uint) (*Element, bool)
- func (d *Document) Equal(d2 *Document) bool
- func (d *Document) Iterator() *Iterator
- func (d *Document) Keys(recursive bool) (Keys, error)
- func (d *Document) Len() int
- func (d *Document) Lookup(key ...string) *Value
- func (d *Document) LookupElement(key ...string) *Element
- func (d *Document) LookupElementErr(key ...string) (*Element, error)
- func (d *Document) LookupErr(key ...string) (*Value, error)
- func (d *Document) MarshalBSON() ([]byte, error)
- func (d *Document) Prepend(elems ...*Element) *Document
- func (d *Document) ReadFrom(r io.Reader) (int64, error)
- func (d *Document) Reset()
- func (d *Document) Set(elem *Element) *Document
- func (d *Document) String() string
- func (d *Document) ToExtJSON(canonical bool) string
- func (d *Document) ToExtJSONErr(canonical bool) (string, error)
- func (d *Document) UnmarshalBSON(b []byte) error
- func (d *Document) Validate() (uint32, error)
- func (d *Document) WriteDocument(start uint, writer interface{}) (int64, error)
- func (d *Document) WriteTo(w io.Writer) (int64, error)
- type DocumentEncoder
- type DocumentMarshaler
- type DocumentUnmarshaler
- type Element
- func (e *Element) Clone() *Element
- func (e *Element) Key() string
- func (e *Element) MarshalBSON() ([]byte, error)
- func (e *Element) String() string
- func (e *Element) Validate() (uint32, error)
- func (e *Element) Value() *Value
- func (e *Element) WriteElement(start uint, writer interface{}) (int64, error)
- func (e *Element) WriteTo(w io.Writer) (int64, error)
- type ElementConstructor
- func (ElementConstructor) Array(key string, a *Array) *Element
- func (c ElementConstructor) ArrayFromElements(key string, values ...*Value) *Element
- func (c ElementConstructor) Binary(key string, b []byte) *Element
- func (ElementConstructor) BinaryWithSubtype(key string, b []byte, btype byte) *Element
- func (ElementConstructor) Boolean(key string, b bool) *Element
- func (ElementConstructor) CodeWithScope(key string, code string, scope *Document) *Element
- func (ElementConstructor) DBPointer(key string, ns string, oid objectid.ObjectID) *Element
- func (ElementConstructor) DateTime(key string, dt int64) *Element
- func (ElementConstructor) Decimal128(key string, d decimal.Decimal128) *Element
- func (ElementConstructor) Double(key string, f float64) *Element
- func (ElementConstructor) Int32(key string, i int32) *Element
- func (ElementConstructor) Int64(key string, i int64) *Element
- func (ElementConstructor) Interface(key string, value interface{}) *Element
- func (c ElementConstructor) InterfaceErr(key string, value interface{}) (*Element, error)
- func (ElementConstructor) JavaScript(key string, code string) *Element
- func (ElementConstructor) MaxKey(key string) *Element
- func (ElementConstructor) MinKey(key string) *Element
- func (ElementConstructor) Null(key string) *Element
- func (ElementConstructor) ObjectID(key string, oid objectid.ObjectID) *Element
- func (ElementConstructor) Regex(key string, pattern, options string) *Element
- func (ElementConstructor) String(key string, val string) *Element
- func (ElementConstructor) SubDocument(key string, d *Document) *Element
- func (c ElementConstructor) SubDocumentFromElements(key string, elems ...*Element) *Element
- func (ElementConstructor) SubDocumentFromReader(key string, r Reader) *Element
- func (ElementConstructor) Symbol(key string, symbol string) *Element
- func (c ElementConstructor) Time(key string, time time.Time) *Element
- func (ElementConstructor) Timestamp(key string, t uint32, i uint32) *Element
- func (ElementConstructor) Undefined(key string) *Element
- type ElementMarshaler
- type ElementTypeError
- type Encoder
- type ErrTooSmall
- type Iterator
- type JavaScriptCode
- type Key
- type Keys
- type Marshaler
- type Reader
- type ReaderIterator
- type Regex
- type Symbol
- type Timestamp
- type Type
- type Unmarshaler
- type Value
- func (v *Value) Add(v2 *Value) error
- func (v *Value) Binary() (subtype byte, data []byte)
- func (v *Value) Boolean() bool
- func (v *Value) BooleanOK() (bool, bool)
- func (v *Value) DBPointer() (string, objectid.ObjectID)
- func (v *Value) DBPointerOK() (string, objectid.ObjectID, bool)
- func (v *Value) DateTime() time.Time
- func (v *Value) DateTimeOK() (time.Time, bool)
- func (v *Value) Decimal128() decimal.Decimal128
- func (v *Value) Decimal128OK() (decimal.Decimal128, bool)
- func (v *Value) Double() float64
- func (v *Value) DoubleOK() (float64, bool)
- func (v *Value) Int32() int32
- func (v *Value) Int32OK() (int32, bool)
- func (v *Value) Int64() int64
- func (v *Value) Int64OK() (int64, bool)
- func (v *Value) Interface() interface{}
- func (v *Value) IsNumber() bool
- func (v *Value) JavaScript() string
- func (v *Value) JavaScriptOK() (string, bool)
- func (v *Value) MutableArray() *Array
- func (v *Value) MutableArrayOK() (*Array, bool)
- func (v *Value) MutableDocument() *Document
- func (v *Value) MutableDocumentOK() (*Document, bool)
- func (v *Value) MutableJavaScriptWithScope() (code string, d *Document)
- func (v *Value) MutableJavaScriptWithScopeOK() (string, *Document, bool)
- func (v *Value) ObjectID() objectid.ObjectID
- func (v *Value) ObjectIDOK() (objectid.ObjectID, bool)
- func (v *Value) Offset() uint32
- func (v *Value) ReaderArray() Reader
- func (v *Value) ReaderArrayOK() (Reader, bool)
- func (v *Value) ReaderDocument() Reader
- func (v *Value) ReaderDocumentOK() (Reader, bool)
- func (v *Value) ReaderJavaScriptWithScope() (string, Reader)
- func (v *Value) ReaderJavaScriptWithScopeOK() (string, Reader, bool)
- func (v *Value) Regex() (pattern, options string)
- func (v *Value) StringValue() string
- func (v *Value) StringValueOK() (string, bool)
- func (v *Value) Symbol() string
- func (v *Value) Timestamp() (uint32, uint32)
- func (v *Value) TimestampOK() (uint32, uint32, bool)
- func (v *Value) Type() Type
- type ValueConstructor
- func (ValueConstructor) Array(a *Array) *Value
- func (ValueConstructor) ArrayFromValues(values ...*Value) *Value
- func (ac ValueConstructor) Binary(b []byte) *Value
- func (ValueConstructor) BinaryWithSubtype(b []byte, btype byte) *Value
- func (ValueConstructor) Boolean(b bool) *Value
- func (ValueConstructor) CodeWithScope(code string, scope *Document) *Value
- func (ValueConstructor) DBPointer(ns string, oid objectid.ObjectID) *Value
- func (ValueConstructor) DateTime(dt int64) *Value
- func (ValueConstructor) Decimal128(d decimal.Decimal128) *Value
- func (ValueConstructor) Document(d *Document) *Value
- func (ValueConstructor) DocumentFromElements(elems ...*Element) *Value
- func (ValueConstructor) DocumentFromReader(r Reader) *Value
- func (ValueConstructor) Double(f float64) *Value
- func (ValueConstructor) Int32(i int32) *Value
- func (ValueConstructor) Int64(i int64) *Value
- func (ValueConstructor) JavaScript(code string) *Value
- func (ValueConstructor) MaxKey() *Value
- func (ValueConstructor) MinKey() *Value
- func (ValueConstructor) Null() *Value
- func (ValueConstructor) ObjectID(oid objectid.ObjectID) *Value
- func (ValueConstructor) Regex(pattern, options string) *Value
- func (ValueConstructor) String(val string) *Value
- func (ValueConstructor) Symbol(symbol string) *Value
- func (ValueConstructor) Timestamp(t uint32, i uint32) *Value
- func (ValueConstructor) Undefined() *Value
- type ValueMarshaler
- type Zeroer
Examples ¶
Constants ¶
This section is empty.
Variables ¶
var ErrElementNotFound = errors.New("element not found")
ErrElementNotFound indicates that an Element matching a certain condition does not exist.
var ErrEmptyKey = errors.New("empty key provided")
ErrEmptyKey indicates that no key was provided to a Lookup method.
var ErrEncoderNilWriter = errors.New("encoder.Encode called on Encoder with nil io.Writer")
ErrEncoderNilWriter indicates that encoder.Encode was called with a nil argument.
var ErrInvalidArrayKey = errors.New("invalid array key")
ErrInvalidArrayKey indicates that a key that isn't a positive integer was used to lookup an element in an array.
var ErrInvalidBinarySubtype = errors.New("invalid BSON binary Subtype")
ErrInvalidBinarySubtype indicates that a BSON binary value had an undefined subtype.
var ErrInvalidBooleanType = errors.New("invalid value for BSON Boolean Type")
ErrInvalidBooleanType indicates that a BSON boolean value had an incorrect byte.
var ErrInvalidDepthTraversal = errors.New("invalid depth traversal")
ErrInvalidDepthTraversal indicates that a provided path of keys to a nested value in a document does not exist.
TODO(skriptble): This error message is pretty awful. Please fix.
var ErrInvalidDocumentType = errors.New("invalid document type")
ErrInvalidDocumentType indicates that a type which doesn't represent a BSON document was was provided when a document was expected.
var ErrInvalidElement = errors.New("invalid Element")
ErrInvalidElement indicates that a bson.Element had invalid underlying BSON.
var ErrInvalidKey = errors.New("invalid document key")
ErrInvalidKey indicates that the BSON representation of a key is missing a null terminator.
var ErrInvalidLength = errors.New("document length is invalid")
ErrInvalidLength indicates that a length in a binary representation of a BSON document is invalid.
var ErrInvalidReadOnlyDocument = errors.New("invalid read-only document")
ErrInvalidReadOnlyDocument indicates that the underlying bytes of a bson.Reader are invalid.
var ErrInvalidString = errors.New("invalid string value")
ErrInvalidString indicates that a BSON string value had an incorrect length.
var ErrInvalidWriter = errors.New("bson: invalid writer provided")
ErrInvalidWriter indicates that a type that can't be written into was passed to a writer method.
var ErrNilDocument = errors.New("document is nil")
ErrNilDocument indicates that an operation was attempted on a nil *bson.Document.
var ErrNilElement = errors.New("element is nil")
ErrNilElement indicates that a nil element was provided when none was expected.
var ErrNilReader = errors.New("nil reader")
ErrNilReader indicates that an operation was attempted on a nil bson.Reader.
var ErrOutOfBounds = errors.New("out of bounds")
ErrOutOfBounds indicates that an index provided to access something was invalid.
var ErrStringLargerThanContainer = errors.New("string size is larger than the JavaScript code with scope container")
ErrStringLargerThanContainer indicates that the code portion of a BSON JavaScript code with scope value is larger than the specified length of the entire value.
var ErrUninitializedElement = errors.New("bson/ast/compact: Method call on uninitialized Element")
ErrUninitializedElement is returned whenever any method is invoked on an uninitialized Element.
var MaxKey struct{}
MaxKey represents the BSON minkey value.
var MinKey struct{}
MinKey represents the BSON maxkey value.
var Null struct{}
Null represents the BSON null value.
var Undefined struct{}
Undefined represents the BSON undefined value.
Functions ¶
func Marshal ¶ added in v0.0.2
Marshal converts a BSON type to bytes.
The value can be any one of the following types:
- bson.Marshaler
- io.Reader
- []byte
- bson.Reader
- any map with string keys
- a struct (possibly with tags)
In the case of a struct, the lowercased field name is used as the key for each exported field but this behavior may be changed using a struct tag. The tag may also contain flags to adjust the marshalling behavior for the field. The tag formats accepted are:
"[<key>][,<flag1>[,<flag2>]]" `(...) bson:"[<key>][,<flag1>[,<flag2>]]" (...)`
The following flags are currently supported:
omitempty Only include the field if it's not set to the zero value for the type or to empty slices or maps. minsize Marshal an integer of a type larger than 32 bits value as an int32, if that's feasible while preserving the numeric value. inline Inline the field, which must be a struct or a map, causing all of its fields or keys to be processed as if they were part of the outer struct. For maps, keys must not conflict with the bson keys of other struct fields.
An example:
type T struct { A bool B int "myb" C string "myc,omitempty" D string `bson:",omitempty" json:"jsonkey"` E int64 ",minsize" F int64 "myf,omitempty,minsize" }
func ToExtJSON ¶ added in v0.0.6
ToExtJSON converts a BSON byte slice into an extended JSON string. If canonical is true, it will output canonical extended JSON. Otherwise, it will output relaxed extended JSON.
func Unmarshal ¶ added in v0.0.2
Unmarshal converts bytes into a BSON type.
The value can be any one of the following types:
- bson.Unmarshaler
- io.Writer
- []byte
- bson.Reader
- any map with string keys
- a struct (possibly with tags)
In the case of struct values, only exported fields will be deserialized. The lowercased field name is used as the key for each exported field, but this behavior may be changed using a struct tag. The tag may also contain flags to adjust the unmarshaling behavior for the field. The tag formats accepted are:
"[<key>][,<flag1>[,<flag2>]]" `(...) bson:"[<key>][,<flag1>[,<flag2>]]" (...)`
The target field or element types of out may not necessarily match the BSON values of the provided data. The following conversions are made automatically:
- Numeric types are converted if at least the integer part of the value would be preserved correctly
If the value would not fit the type and cannot be converted, it is silently skipped.
Pointer values are initialized when necessary.
Types ¶
type Array ¶
type Array struct {
// contains filtered or unexported fields
}
Array represents an array in BSON. The methods of this type are more expensive than those on Document because they require potentially updating multiple keys to ensure the array stays valid at all times.
Example ¶
internalVersion := "1234567" f := func(appName string) *Array { arr := NewArray() arr.Append( VC.DocumentFromElements( EC.String("name", "mongo-go-driver"), EC.String("version", internalVersion), ), VC.DocumentFromElements( EC.String("type", "darwin"), EC.String("architecture", "amd64"), ), VC.String("go1.9.2"), ) if appName != "" { arr.Append(VC.DocumentFromElements(EC.String("name", appName))) } return arr } buf, err := f("hello-world").MarshalBSON() if err != nil { fmt.Println(err) } fmt.Println(buf)
Output: [154 0 0 0 3 48 0 52 0 0 0 2 110 97 109 101 0 16 0 0 0 109 111 110 103 111 45 103 111 45 100 114 105 118 101 114 0 2 118 101 114 115 105 111 110 0 8 0 0 0 49 50 51 52 53 54 55 0 0 3 49 0 46 0 0 0 2 116 121 112 101 0 7 0 0 0 100 97 114 119 105 110 0 2 97 114 99 104 105 116 101 99 116 117 114 101 0 6 0 0 0 97 109 100 54 52 0 0 2 50 0 8 0 0 0 103 111 49 46 57 46 50 0 3 51 0 27 0 0 0 2 110 97 109 101 0 12 0 0 0 104 101 108 108 111 45 119 111 114 108 100 0 0 0]
func ArrayFromDocument ¶
ArrayFromDocument creates an array from a *Document. The returned array does not make a copy of the *Document, so any changes made to either will be present in both.
func ParseExtJSONArray ¶ added in v0.0.6
ParseExtJSONArray parses a JSON array string into a *Array.
func (*Array) Append ¶
Append adds the given values to the end of the array. It returns a reference to itself.
func (*Array) Concat ¶
Concat will append all the values from each of the arguments onto the array.
Each argument must be one of the following:
- *Array
- *Document
- []byte
- bson.Reader
Note that in the case of *Document, []byte, and bson.Reader, the keys will be ignored and only the values will be appended.
func (*Array) Iterator ¶ added in v0.0.7
func (a *Array) Iterator() (*ArrayIterator, error)
Iterator returns a ArrayIterator that can be used to iterate through the elements of this Array.
func (*Array) Lookup ¶
Lookup returns the value in the array at the given index or an error if it cannot be found.
func (*Array) MarshalBSON ¶
MarshalBSON implements the Marshaler interface.
func (*Array) Prepend ¶
Prepend adds the given values to the beginning of the array. It returns a reference to itself.
func (*Array) Set ¶
Set replaces the value at the given index with the parameter value. It panics if the index is out of bounds.
func (*Array) Validate ¶
Validate ensures that the array's underlying BSON is valid. It returns the the number of bytes in the underlying BSON if it is valid or an error if it isn't.
func (*Array) WriteArray ¶
WriteArray will serialize this array to the provided writer beginning at the provided start position.
type ArrayIterator ¶ added in v0.0.7
type ArrayIterator struct {
// contains filtered or unexported fields
}
ArrayIterator facilitates iterating over a bson.Array.
func NewArrayIterator ¶ added in v0.0.7
func NewArrayIterator(array *Array) (*ArrayIterator, error)
NewArrayIterator constructs a new ArrayIterator over a given Array
func (*ArrayIterator) Err ¶ added in v0.0.7
func (iter *ArrayIterator) Err() error
Err returns the error that occurred while iterating, or nil if none occurred.
func (*ArrayIterator) Next ¶ added in v0.0.7
func (iter *ArrayIterator) Next() bool
Next fetches the next value in the Array, returning whether or not it could be fetched successfully. If true is returned, call Value to get the value. If false is returned, call Err to check if an error occurred.
func (*ArrayIterator) Value ¶ added in v0.0.7
func (iter *ArrayIterator) Value() *Value
Value returns the current value of the ArrayIterator. The pointer returned will _always_ be the same for a given ArrayIterator. The returned value will be nil if this function is called before the first successful call to Next().
type CodeWithScope ¶
CodeWithScope represents a BSON JavaScript code with scope value.
func (CodeWithScope) String ¶
func (cws CodeWithScope) String() string
type Decoder ¶
type Decoder interface {
Decode(interface{}) error
}
Decoder describes a BSON representation that can decodes itself into a value.
func NewDecoder ¶
NewDecoder constructs a new default Decoder implementation from the given io.Reader.
In this implementation, the value can be any one of the following types:
- bson.Unmarshaler
- io.Writer
- []byte
- bson.Reader
- any map with string keys
- a struct (possibly with tags)
In the case of struct values, only exported fields will be deserialized. The lowercased field name is used as the key for each exported field, but this behavior may be changed using a struct tag. The tag may also contain flags to adjust the unmarshaling behavior for the field. The tag formats accepted are:
"[<key>][,<flag1>[,<flag2>]]" `(...) bson:"[<key>][,<flag1>[,<flag2>]]" (...)`
The target field or element types of out may not necessarily match the BSON values of the provided data. The following conversions are made automatically:
- Numeric types are converted if at least the integer part of the value would be preserved correctly
If the value would not fit the type and cannot be converted, it is silently skipped.
Pointer values are initialized when necessary.
type Document ¶
type Document struct { // The default behavior or Append, Prepend, and Replace is to panic on the // insertion of a nil element. Setting IgnoreNilInsert to true will instead // silently ignore any nil parameters to these methods. IgnoreNilInsert bool // contains filtered or unexported fields }
Document is a mutable ordered map that compactly represents a BSON document.
Example ¶
internalVersion := "1234567" f := func(appName string) *Document { doc := NewDocument( EC.SubDocumentFromElements("driver", EC.String("name", "mongo-go-driver"), EC.String("version", internalVersion), ), EC.SubDocumentFromElements("os", EC.String("type", "darwin"), EC.String("architecture", "amd64"), ), EC.String("platform", "go1.9.2"), ) if appName != "" { doc.Append(EC.SubDocumentFromElements("application", EC.String("name", appName))) } return doc } buf, err := f("hello-world").MarshalBSON() if err != nil { fmt.Println(err) } fmt.Println(buf)
Output: [177 0 0 0 3 100 114 105 118 101 114 0 52 0 0 0 2 110 97 109 101 0 16 0 0 0 109 111 110 103 111 45 103 111 45 100 114 105 118 101 114 0 2 118 101 114 115 105 111 110 0 8 0 0 0 49 50 51 52 53 54 55 0 0 3 111 115 0 46 0 0 0 2 116 121 112 101 0 7 0 0 0 100 97 114 119 105 110 0 2 97 114 99 104 105 116 101 99 116 117 114 101 0 6 0 0 0 97 109 100 54 52 0 0 2 112 108 97 116 102 111 114 109 0 8 0 0 0 103 111 49 46 57 46 50 0 3 97 112 112 108 105 99 97 116 105 111 110 0 27 0 0 0 2 110 97 109 101 0 12 0 0 0 104 101 108 108 111 45 119 111 114 108 100 0 0 0]
func NewDocument ¶
NewDocument creates an empty Document. The numberOfElems parameter will preallocate the underlying storage which can prevent extra allocations.
func ParseExtJSONObject ¶ added in v0.0.6
ParseExtJSONObject parses a JSON object string into a *Document.
func ReadDocument ¶
ReadDocument will create a Document using the provided slice of bytes. If the slice of bytes is not a valid BSON document, this method will return an error.
func UnmarshalDocument ¶ added in v0.0.2
UnmarshalDocument converts bytes into a *bson.Document.
func (*Document) Append ¶
Append adds each element to the end of the document, in order. If a nil element is passed as a parameter this method will panic. To change this behavior to silently ignore a nil element, set IgnoreNilInsert to true on the Document.
If a nil element is inserted and this method panics, it does not remove the previously added elements.
func (*Document) Concat ¶
Concat will take the keys from the provided document and concat them onto the end of this document.
doc must be one of the following:
- *Document
- []byte
- io.Reader
func (*Document) Delete ¶
Delete removes the keys from the Document. The deleted element is returned. If the key does not exist, then nil is returned and the delete is a no-op. The same is true if something along the depth tree does not exist or is not a traversable type.
func (*Document) ElementAt ¶
ElementAt retrieves the element at the given index in a Document. It panics if the index is out-of-bounds.
TODO(skriptble): This method could be variadic and return the element at the provided depth.
func (*Document) ElementAtOK ¶ added in v0.0.2
ElementAtOK is the same as ElementAt, but returns a boolean instead of panicking.
func (*Document) Keys ¶
Keys returns all of the element keys for this document. If recursive is true, this method will also return the keys of any subdocuments or arrays.
func (*Document) Lookup ¶
Lookup searches the document and potentially subdocuments or arrays for the provided key. Each key provided to this method represents a layer of depth.
Lookup will return nil if it encounters an error.
func (*Document) LookupElement ¶ added in v0.0.6
LookupElement searches the document and potentially subdocuments or arrays for the provided key. Each key provided to this method represents a layer of depth.
LookupElement will return nil if it encounters an error.
func (*Document) LookupElementErr ¶ added in v0.0.6
LookupElementErr searches the document and potentially subdocuments or arrays for the provided key. Each key provided to this method represents a layer of depth.
func (*Document) LookupErr ¶ added in v0.0.6
LookupErr searches the document and potentially subdocuments or arrays for the provided key. Each key provided to this method represents a layer of depth.
func (*Document) MarshalBSON ¶
MarshalBSON implements the Marshaler interface.
func (*Document) Prepend ¶
Prepend adds each element to the beginning of the document, in order. If a nil element is passed as a parameter this method will panic. To change this behavior to silently ignore a nil element, set IgnoreNilInsert to true on the Document.
If a nil element is inserted and this method panics, it does not remove the previously added elements.
func (*Document) Reset ¶
func (d *Document) Reset()
Reset clears a document so it can be reused. This method clears references to the underlying pointers to elements so they can be garbage collected.
func (*Document) Set ¶
Set replaces an element of a document. If an element with a matching key is found, the element will be replaced with the one provided. If the document does not have an element with that key, the element is appended to the document instead. If a nil element is passed as a parameter this method will panic. To change this behavior to silently ignore a nil element, set IgnoreNilInsert to true on the Document.
If a nil element is inserted and this method panics, it does not remove the previously added elements.
TODO(skriptble): Do we need to panic on a nil element? Semantically, if you ask to replace an element in the document with a nil element, you aren't asking for anything to be done.
func (*Document) ToExtJSON ¶ added in v0.0.6
ToExtJSON marshals this document to BSON and transforms that BSON to extended JSON. If there is an error during the conversion, this method will return an empty string. To receive the error, use the ToExtJSONErr method.
func (*Document) ToExtJSONErr ¶ added in v0.0.6
ToExtJSONErr marshals this document to BSON and transforms that BSON to extended JSON.
func (*Document) UnmarshalBSON ¶
UnmarshalBSON implements the Unmarshaler interface.
func (*Document) WriteDocument ¶
WriteDocument will serialize this document to the provided writer beginning at the provided start position.
type DocumentEncoder ¶
DocumentEncoder describes a type that can marshal itself into a value and return the bson.Document it represents.
func NewDocumentEncoder ¶
func NewDocumentEncoder() DocumentEncoder
NewDocumentEncoder creates an encoder that encodes into a *Document.
type DocumentMarshaler ¶
DocumentMarshaler describes a type that can marshal itself into a bson.Document.
type DocumentUnmarshaler ¶
DocumentUnmarshaler describes a type that can unmarshal itself from a bson.Document.
type Element ¶
type Element struct {
// contains filtered or unexported fields
}
Element represents a BSON element, i.e. key-value pair of a BSON document.
func (*Element) MarshalBSON ¶
MarshalBSON implements the Marshaler interface.
func (*Element) WriteElement ¶
WriteElement serializes this element to the provided writer starting at the provided start position.
type ElementConstructor ¶ added in v0.0.2
type ElementConstructor struct{}
ElementConstructor is used as a namespace for document element constructor functions.
var EC ElementConstructor
EC is a convenience variable provided for access to the ElementConstructor methods.
func (ElementConstructor) Array ¶ added in v0.0.2
func (ElementConstructor) Array(key string, a *Array) *Element
Array creates an array element with the given key and value.
func (ElementConstructor) ArrayFromElements ¶ added in v0.0.2
func (c ElementConstructor) ArrayFromElements(key string, values ...*Value) *Element
ArrayFromElements creates an element with the given key. The elements passed as arguments will be used to create a new array as the value.
func (ElementConstructor) Binary ¶ added in v0.0.2
func (c ElementConstructor) Binary(key string, b []byte) *Element
Binary creates a binary element with the given key and value.
func (ElementConstructor) BinaryWithSubtype ¶ added in v0.0.2
func (ElementConstructor) BinaryWithSubtype(key string, b []byte, btype byte) *Element
BinaryWithSubtype creates a binary element with the given key. It will create a new BSON binary value with the given data and subtype.
func (ElementConstructor) Boolean ¶ added in v0.0.2
func (ElementConstructor) Boolean(key string, b bool) *Element
Boolean creates a boolean element with the given key and value.
func (ElementConstructor) CodeWithScope ¶ added in v0.0.2
func (ElementConstructor) CodeWithScope(key string, code string, scope *Document) *Element
CodeWithScope creates a JavaScript code with scope element with the given key and value.
func (ElementConstructor) DBPointer ¶ added in v0.0.2
DBPointer creates a dbpointer element with the given key and value.
func (ElementConstructor) DateTime ¶ added in v0.0.2
func (ElementConstructor) DateTime(key string, dt int64) *Element
DateTime creates a datetime element with the given key and value. dt represents milliseconds since the Unix epoch
func (ElementConstructor) Decimal128 ¶ added in v0.0.2
func (ElementConstructor) Decimal128(key string, d decimal.Decimal128) *Element
Decimal128 creates a decimal element with the given key and value.
func (ElementConstructor) Double ¶ added in v0.0.2
func (ElementConstructor) Double(key string, f float64) *Element
Double creates a double element with the given key and value.
func (ElementConstructor) Int32 ¶ added in v0.0.2
func (ElementConstructor) Int32(key string, i int32) *Element
Int32 creates a int32 element with the given key and value.
func (ElementConstructor) Int64 ¶ added in v0.0.2
func (ElementConstructor) Int64(key string, i int64) *Element
Int64 creates a int64 element with the given key and value.
func (ElementConstructor) Interface ¶ added in v0.0.2
func (ElementConstructor) Interface(key string, value interface{}) *Element
Interface will attempt to turn the provided key and value into an Element. For common types, type casting is used, if the type is more complex, such as a map or struct, reflection is used. If the value cannot be converted either by typecasting or through reflection, a null Element is constructed with the key. This method will never return a nil *Element. If an error turning the value into an Element is desired, use the InterfaceErr method.
func (ElementConstructor) InterfaceErr ¶ added in v0.0.2
func (c ElementConstructor) InterfaceErr(key string, value interface{}) (*Element, error)
InterfaceErr does what Interface does, but returns an error when it cannot properly convert a value into an *Element. See Interface for details.
func (ElementConstructor) JavaScript ¶ added in v0.0.2
func (ElementConstructor) JavaScript(key string, code string) *Element
JavaScript creates a JavaScript code element with the given key and value.
func (ElementConstructor) MaxKey ¶ added in v0.0.2
func (ElementConstructor) MaxKey(key string) *Element
MaxKey creates a maxkey element with the given key and value.
func (ElementConstructor) MinKey ¶ added in v0.0.2
func (ElementConstructor) MinKey(key string) *Element
MinKey creates a minkey element with the given key and value.
func (ElementConstructor) Null ¶ added in v0.0.2
func (ElementConstructor) Null(key string) *Element
Null creates a null element with the given key.
func (ElementConstructor) ObjectID ¶ added in v0.0.2
func (ElementConstructor) ObjectID(key string, oid objectid.ObjectID) *Element
ObjectID creates a objectid element with the given key and value.
func (ElementConstructor) Regex ¶ added in v0.0.2
func (ElementConstructor) Regex(key string, pattern, options string) *Element
Regex creates a regex element with the given key and value.
func (ElementConstructor) String ¶ added in v0.0.2
func (ElementConstructor) String(key string, val string) *Element
String creates a string element with the given key and value.
func (ElementConstructor) SubDocument ¶ added in v0.0.2
func (ElementConstructor) SubDocument(key string, d *Document) *Element
SubDocument creates a subdocument element with the given key and value.
func (ElementConstructor) SubDocumentFromElements ¶ added in v0.0.2
func (c ElementConstructor) SubDocumentFromElements(key string, elems ...*Element) *Element
SubDocumentFromElements creates a subdocument element with the given key. The elements passed as arguments will be used to create a new document as the value.
func (ElementConstructor) SubDocumentFromReader ¶ added in v0.0.2
func (ElementConstructor) SubDocumentFromReader(key string, r Reader) *Element
SubDocumentFromReader creates a subdocument element with the given key and value.
func (ElementConstructor) Symbol ¶ added in v0.0.2
func (ElementConstructor) Symbol(key string, symbol string) *Element
Symbol creates a symbol element with the given key and value.
func (ElementConstructor) Time ¶ added in v0.0.4
func (c ElementConstructor) Time(key string, time time.Time) *Element
Time creates a datetime element with the given key and value.
func (ElementConstructor) Timestamp ¶ added in v0.0.2
func (ElementConstructor) Timestamp(key string, t uint32, i uint32) *Element
Timestamp creates a timestamp element with the given key and value.
func (ElementConstructor) Undefined ¶ added in v0.0.2
func (ElementConstructor) Undefined(key string) *Element
Undefined creates a undefined element with the given key.
type ElementMarshaler ¶
ElementMarshaler describes a type that can marshal itself into a bson.Element.
type ElementTypeError ¶
ElementTypeError specifies that a method to obtain a BSON value an incorrect type was called on a bson.Value.
func (ElementTypeError) Error ¶
func (ete ElementTypeError) Error() string
Error implements the error interface.
type Encoder ¶
type Encoder interface { // Encode encodes a value from an io.Writer into the given value. // // The value can be any one of the following types: // // - bson.Marshaler // - io.Reader // - []byte // - bson.Reader // - any map with string keys // - a struct (possibly with tags) // // In the case of a struct, the lowercased field name is used as the key for each exported // field but this behavior may be changed using a struct tag. The tag may also contain flags to // adjust the marshalling behavior for the field. The tag formats accepted are: // // "[<key>][,<flag1>[,<flag2>]]" // // `(...) bson:"[<key>][,<flag1>[,<flag2>]]" (...)` // // The following flags are currently supported: // // omitempty Only include the field if it's not set to the zero value for the type or to // empty slices or maps. // // minsize Marshal an integer of a type larger than 32 bits value as an int32, if that's // feasible while preserving the numeric value. // // inline Inline the field, which must be a struct or a map, causing all of its fields // or keys to be processed as if they were part of the outer struct. // // An example: // // type T struct { // A bool // B int "myb" // C string "myc,omitempty" // D string `bson:",omitempty" json:"jsonkey"` // E int64 ",minsize" // F int64 "myf,omitempty,minsize" // } Encode(interface{}) error }
Encoder describes a type that can encode itself into a value.
func NewEncoder ¶
NewEncoder creates an encoder that writes to w.
type ErrTooSmall ¶
ErrTooSmall indicates that a slice provided to write into is not large enough to fit the data.
func NewErrTooSmall ¶ added in v0.0.2
func NewErrTooSmall() ErrTooSmall
NewErrTooSmall creates a new ErrTooSmall with the given message and the current stack.
func (ErrTooSmall) Equals ¶ added in v0.0.2
func (e ErrTooSmall) Equals(err2 error) bool
Equals checks that err2 also is an ErrTooSmall.
func (ErrTooSmall) Error ¶ added in v0.0.2
func (e ErrTooSmall) Error() string
Error implements the error interface.
func (ErrTooSmall) ErrorStack ¶ added in v0.0.2
func (e ErrTooSmall) ErrorStack() string
ErrorStack returns a string representing the stack at the point where the error occurred.
type Iterator ¶
type Iterator struct {
// contains filtered or unexported fields
}
Iterator facilitates iterating over a bson.Document.
func (*Iterator) Element ¶
Element returns the current element of the Iterator. The pointer that it returns will _always_ be the same for a given Iterator.
type JavaScriptCode ¶
type JavaScriptCode string
JavaScriptCode represents a BSON JavaScript code value.
type Key ¶
Key represents an individual key of a BSON document. The Prefix property is used to represent the depth of this key.
type Marshaler ¶
Marshaler describes a type that can marshal a BSON representation of itself into bytes.
type Reader ¶
type Reader []byte
Reader is a wrapper around a byte slice. It will interpret the slice as a BSON document. Most of the methods on Reader are low cost and are meant for simple operations that are run a few times. Because there is no metadata stored all methods run in O(n) time. If a more efficient lookup method is necessary then the Document type should be used.
func NewFromIOReader ¶
NewFromIOReader reads in a document from the given io.Reader and constructs a bson.Reader from it.
func (Reader) ElementAt ¶
ElementAt searches for a retrieves the element at the given index. This method will validate all the elements up to and including the element at the given index.
func (Reader) Iterator ¶
func (r Reader) Iterator() (*ReaderIterator, error)
Iterator returns a ReaderIterator that can be used to iterate through the elements of this Reader.
func (Reader) Keys ¶
Keys returns the keys for this document. If recursive is true then this method will also return the keys for subdocuments and arrays.
The keys will be return in order.
func (Reader) Lookup ¶
Lookup search the document, potentially recursively, for the given key. If there are multiple keys provided, this method will recurse down, as long as the top and intermediate nodes are either documents or arrays. If any key except for the last is not a document or an array, an error will be returned.
TODO(skriptble): Implement better error messages.
TODO(skriptble): Determine if this should return an error on empty key and key not found.
func (Reader) Validate ¶
Validate validates the document. This method only validates the first document in the slice, to validate other documents, the slice must be resliced.
Example ¶
rdr := make(Reader, 500) rdr[250], rdr[251], rdr[252], rdr[253], rdr[254] = '\x05', '\x00', '\x00', '\x00', '\x00' n, err := rdr[250:].Validate() fmt.Println(n, err)
Output: 5 <nil>
type ReaderIterator ¶
type ReaderIterator struct {
// contains filtered or unexported fields
}
ReaderIterator facilitates iterating over a bson.Reader.
func NewReaderIterator ¶
func NewReaderIterator(r Reader) (*ReaderIterator, error)
NewReaderIterator constructors a new ReaderIterator over a given Reader.
func (*ReaderIterator) Element ¶
func (itr *ReaderIterator) Element() *Element
Element returns the current element of the ReaderIterator. The pointer that it returns will _always_ be the same for a given ReaderIterator.
func (*ReaderIterator) Err ¶
func (itr *ReaderIterator) Err() error
Err returns the error that occurred when iterating, or nil if none occurred.
func (*ReaderIterator) Next ¶
func (itr *ReaderIterator) Next() bool
Next fetches the next element of the Reader, returning whether or not the next element was able to be fetched. If true is returned, then call Element to get the element. If false is returned, call Err to check if an error occurred.
type Type ¶
type Type byte
Type represents a BSON type.
const ( TypeDouble Type = 0x01 TypeString Type = 0x02 TypeEmbeddedDocument Type = 0x03 TypeArray Type = 0x04 TypeBinary Type = 0x05 TypeUndefined Type = 0x06 TypeObjectID Type = 0x07 TypeBoolean Type = 0x08 TypeDateTime Type = 0x09 TypeNull Type = 0x0A TypeRegex Type = 0x0B TypeDBPointer Type = 0x0C TypeJavaScript Type = 0x0D TypeSymbol Type = 0x0E TypeCodeWithScope Type = 0x0F TypeInt32 Type = 0x10 TypeTimestamp Type = 0x11 TypeInt64 Type = 0x12 TypeDecimal128 Type = 0x13 TypeMinKey Type = 0xFF TypeMaxKey Type = 0x7F )
These constants uniquely refer to each BSON type.
type Unmarshaler ¶
Unmarshaler describes a type that can unmarshal itself from BSON bytes.
type Value ¶
type Value struct {
// contains filtered or unexported fields
}
Value represents a BSON value. It can be obtained as part of a bson.Element or created for use in a bson.Array with the bson.VC constructors.
func (*Value) Add ¶
Add will add this Value to another. This is currently only implemented for strings and numbers. If either value is a string, the other type is coerced into a string and added to the other.
func (*Value) Binary ¶
Binary returns the BSON binary value the Value represents. It panics if the value is a BSON type other than binary.
func (*Value) Boolean ¶
Boolean returns the boolean value the Value represents. It panics if the value is a BSON type other than boolean.
func (*Value) BooleanOK ¶
BooleanOK is the same as Boolean, except it returns a boolean instead of panicking.
func (*Value) DBPointer ¶
DBPointer returns the BSON dbpointer value the Value represents. It panics if the value is a BSON type other than DBPointer.
func (*Value) DBPointerOK ¶
DBPointerOK is the same as DBPoitner, except that it returns a boolean instead of panicking.
func (*Value) DateTime ¶
DateTime returns the BSON datetime value the Value represents. It panics if the value is a BSON type other than datetime.
func (*Value) DateTimeOK ¶
DateTimeOK is the same as DateTime, except it returns a boolean instead of panicking.
func (*Value) Decimal128 ¶
func (v *Value) Decimal128() decimal.Decimal128
Decimal128 returns the decimal the Value represents. It panics if the value is a BSON type other than decimal.
func (*Value) Decimal128OK ¶
func (v *Value) Decimal128OK() (decimal.Decimal128, bool)
Decimal128OK is the same as Decimal128, except that it returns a boolean instead of panicking.
func (*Value) Double ¶
Double returns the float64 value for this element. It panics if e's BSON type is not double ('\x01') or if e is uninitialized.
func (*Value) DoubleOK ¶
DoubleOK is the same as Double, but returns a boolean instead of panicking.
func (*Value) Int32 ¶
Int32 returns the int32 the Value represents. It panics if the value is a BSON type other than int32.
func (*Value) Int32OK ¶
Int32OK is the same as Int32, except that it returns a boolean instead of panicking.
func (*Value) Int64 ¶
Int64 returns the int64 the Value represents. It panics if the value is a BSON type other than int64.
func (*Value) Int64OK ¶
Int64OK is the same as Int64, except that it returns a boolean instead of panicking.
func (*Value) Interface ¶
func (v *Value) Interface() interface{}
Interface returns the Go value of this Value as an empty interface.
func (*Value) JavaScript ¶
JavaScript returns the BSON JavaScript code value the Value represents. It panics if the value is a BSON type other than JavaScript code.
func (*Value) JavaScriptOK ¶
JavaScriptOK is the same as Javascript, excepti that it returns a boolean instead of panicking.
func (*Value) MutableArray ¶
MutableArray returns the array for this element.
func (*Value) MutableArrayOK ¶
MutableArrayOK is the same as MutableArray, except it returns a boolean instead of panicking.
func (*Value) MutableDocument ¶
MutableDocument returns the subdocument for this element.
func (*Value) MutableDocumentOK ¶
MutableDocumentOK is the same as MutableDocument, except it returns a boolean instead of panicking.
func (*Value) MutableJavaScriptWithScope ¶
MutableJavaScriptWithScope returns the javascript code and the scope document for this element.
func (*Value) MutableJavaScriptWithScopeOK ¶
MutableJavaScriptWithScopeOK is the same as MutableJavascriptWithScope, except that it returns a boolean instead of panicking.
func (*Value) ObjectID ¶
ObjectID returns the BSON objectid value the Value represents. It panics if the value is a BSON type other than objectid.
func (*Value) ObjectIDOK ¶
ObjectIDOK is the same as ObjectID, except it returns a boolean instead of panicking.
func (*Value) Offset ¶ added in v0.0.2
Offset returns the offset to the beginning of the value in the underlying data. When called on a value obtained from a Reader, it can be used to find the value manually within the Reader's bytes.
func (*Value) ReaderArray ¶
ReaderArray returns the BSON document the Value represents as a bson.Reader. It panics if the value is a BSON type other than array.
func (*Value) ReaderArrayOK ¶
ReaderArrayOK is the same as ReaderArray, except it returns a boolean instead of panicking.
func (*Value) ReaderDocument ¶
ReaderDocument returns the BSON document the Value represents as a bson.Reader. It panics if the value is a BSON type other than document.
func (*Value) ReaderDocumentOK ¶
ReaderDocumentOK is the same as ReaderDocument, except it returns a boolean instead of panicking.
func (*Value) ReaderJavaScriptWithScope ¶
ReaderJavaScriptWithScope returns the BSON JavaScript code with scope the Value represents, with the scope being returned as a bson.Reader. It panics if the value is a BSON type other than JavaScript code with scope.
func (*Value) ReaderJavaScriptWithScopeOK ¶
ReaderJavaScriptWithScopeOK is the same as ReaderJavaScriptWithScope, except that it returns a boolean instead of panicking.
func (*Value) Regex ¶
Regex returns the BSON regex value the Value represents. It panics if the value is a BSON type other than regex.
func (*Value) StringValue ¶
StringValue returns the string balue for this element. It panics if e's BSON type is not StringValue ('\x02') or if e is uninitialized.
NOTE: This method is called StringValue to avoid it implementing the fmt.Stringer interface.
func (*Value) StringValueOK ¶
StringValueOK is the same as StringValue, but returns a boolean instead of panicking.
func (*Value) Symbol ¶
Symbol returns the BSON symbol value the Value represents. It panics if the value is a BSON type other than symbol.
func (*Value) Timestamp ¶
Timestamp returns the BSON timestamp value the Value represents. It panics if the value is a BSON type other than timestamp.
func (*Value) TimestampOK ¶
TimestampOK is the same as Timestamp, except that it returns a boolean instead of panicking.
type ValueConstructor ¶ added in v0.0.2
type ValueConstructor struct{}
ValueConstructor is used as a namespace for document element constructor functions.
var VC ValueConstructor
VC is a convenience variable provided for access to the ValueConstructor methods.
func (ValueConstructor) Array ¶ added in v0.0.2
func (ValueConstructor) Array(a *Array) *Value
Array creates an array value from the argument.
func (ValueConstructor) ArrayFromValues ¶ added in v0.0.2
func (ValueConstructor) ArrayFromValues(values ...*Value) *Value
ArrayFromValues creates an array element from the given the elements.
func (ValueConstructor) Binary ¶ added in v0.0.2
func (ac ValueConstructor) Binary(b []byte) *Value
Binary creates a binary value from the argument.
func (ValueConstructor) BinaryWithSubtype ¶ added in v0.0.2
func (ValueConstructor) BinaryWithSubtype(b []byte, btype byte) *Value
BinaryWithSubtype creates a new binary element with the given data and subtype.
func (ValueConstructor) Boolean ¶ added in v0.0.2
func (ValueConstructor) Boolean(b bool) *Value
Boolean creates a boolean value from the argument.
func (ValueConstructor) CodeWithScope ¶ added in v0.0.2
func (ValueConstructor) CodeWithScope(code string, scope *Document) *Value
CodeWithScope creates a JavaScript code with scope value from the arguments.
func (ValueConstructor) DBPointer ¶ added in v0.0.2
func (ValueConstructor) DBPointer(ns string, oid objectid.ObjectID) *Value
DBPointer creates a dbpointer value from the arguments.
func (ValueConstructor) DateTime ¶ added in v0.0.2
func (ValueConstructor) DateTime(dt int64) *Value
DateTime creates a datetime value from the argument.
func (ValueConstructor) Decimal128 ¶ added in v0.0.2
func (ValueConstructor) Decimal128(d decimal.Decimal128) *Value
Decimal128 creates a decimal value from the argument.
func (ValueConstructor) Document ¶ added in v0.0.2
func (ValueConstructor) Document(d *Document) *Value
Document creates a subdocument value from the argument.
func (ValueConstructor) DocumentFromElements ¶ added in v0.0.2
func (ValueConstructor) DocumentFromElements(elems ...*Element) *Value
DocumentFromElements creates a subdocument element from the given elements.
func (ValueConstructor) DocumentFromReader ¶ added in v0.0.2
func (ValueConstructor) DocumentFromReader(r Reader) *Value
DocumentFromReader creates a subdocument element from the given value.
func (ValueConstructor) Double ¶ added in v0.0.2
func (ValueConstructor) Double(f float64) *Value
Double creates a double element with the given value.
func (ValueConstructor) Int32 ¶ added in v0.0.2
func (ValueConstructor) Int32(i int32) *Value
Int32 creates a int32 value from the argument.
func (ValueConstructor) Int64 ¶ added in v0.0.2
func (ValueConstructor) Int64(i int64) *Value
Int64 creates a int64 value from the argument.
func (ValueConstructor) JavaScript ¶ added in v0.0.2
func (ValueConstructor) JavaScript(code string) *Value
JavaScript creates a JavaScript code value from the argument.
func (ValueConstructor) MaxKey ¶ added in v0.0.2
func (ValueConstructor) MaxKey() *Value
MaxKey creates a maxkey value from the argument.
func (ValueConstructor) MinKey ¶ added in v0.0.2
func (ValueConstructor) MinKey() *Value
MinKey creates a minkey value from the argument.
func (ValueConstructor) Null ¶ added in v0.0.2
func (ValueConstructor) Null() *Value
Null creates a null value from the argument.
func (ValueConstructor) ObjectID ¶ added in v0.0.2
func (ValueConstructor) ObjectID(oid objectid.ObjectID) *Value
ObjectID creates a objectid value from the argument.
func (ValueConstructor) Regex ¶ added in v0.0.2
func (ValueConstructor) Regex(pattern, options string) *Value
Regex creates a regex value from the arguments.
func (ValueConstructor) String ¶ added in v0.0.2
func (ValueConstructor) String(val string) *Value
String creates a string element with the given value.
func (ValueConstructor) Symbol ¶ added in v0.0.2
func (ValueConstructor) Symbol(symbol string) *Value
Symbol creates a symbol value from the argument.
func (ValueConstructor) Timestamp ¶ added in v0.0.2
func (ValueConstructor) Timestamp(t uint32, i uint32) *Value
Timestamp creates a timestamp value from the arguments.
func (ValueConstructor) Undefined ¶ added in v0.0.2
func (ValueConstructor) Undefined() *Value
Undefined creates a undefined element.
type ValueMarshaler ¶
ValueMarshaler describes a type that can marshal itself into a bson.Value.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package elements holds the logic to encode and decode the BSON element types from native Go to BSON binary and vice versa.
|
Package elements holds the logic to encode and decode the BSON element types from native Go to BSON binary and vice versa. |