MongoDB C++ Driver
legacy-1.1.2
|
C++ representation of a "BSON" object – that is, an extended JSON-style object in a binary representation. More...
#include <bsonobj.h>
Classes | |
struct | Hasher |
Functor compatible with std::hash for std::unordered_{map,set} Warning: The hash function is subject to change. More... | |
Public Types | |
enum | |
Readable representation of a BSON object in an extended JSON-style notation. More... | |
Public Member Functions | |
BSONObj () | |
Construct an empty BSONObj – that is, {}. More... | |
BSONObj (const char *bsonData) | |
Construct a BSONObj from data in the proper format. More... | |
BSONObj & | operator= (BSONObj otherCopy) |
Provide assignment semantics. More... | |
void | swap (BSONObj &other) |
Swap this BSONObj with 'other'. | |
bool | isOwned () const |
A BSONObj can use a buffer it "owns" or one it does not. More... | |
BSONObj | getOwned () const |
assure the data buffer is under the control of this BSONObj and not a remote buffer More... | |
BSONObj | copy () const |
std::string | jsonString (JsonStringFormat format=Strict, int pretty=0, bool isArray=false) const |
Properly formatted JSON string. More... | |
int | addFields (BSONObj &from, std::set< std::string > &fields) |
note: addFields always adds _id even if not specified | |
BSONObj | removeField (const StringData &name) const |
remove specified field and return a new object with the remaining fields. More... | |
int | nFields () const |
returns # of top level fields in the object note: iterates to count the fields | |
int | getFieldNames (std::set< std::string > &fields) const |
adds the field names to the fields set. More... | |
BSONElement | getFieldDotted (const StringData &name) const |
void | getFieldsDotted (const StringData &name, BSONElementSet &ret, bool expandLastArray=true) const |
Like getFieldDotted(), but expands arrays and returns all matching objects. More... | |
BSONElement | getFieldDottedOrArray (const char *&name) const |
Like getFieldDotted(), but returns first array encountered while traversing the dotted fields of name. More... | |
BSONElement | getField (const StringData &name) const |
Get the field of the specified name. More... | |
void | getFields (unsigned n, const char **fieldNames, BSONElement *fields) const |
Get several fields at once. More... | |
BSONElement | operator[] (const StringData &field) const |
Get the field of the specified name. More... | |
bool | hasField (const StringData &name) const |
bool | hasElement (const StringData &name) const |
const char * | getStringField (const StringData &name) const |
BSONObj | getObjectField (const StringData &name) const |
int | getIntField (const StringData &name) const |
bool | getBoolField (const StringData &name) const |
BSONObj | extractFieldsUnDotted (const BSONObj &pattern) const |
BSONObj | extractFields (const BSONObj &pattern, bool fillWithNull=false) const |
extract items from object which match a pattern object. More... | |
bool | couldBeArray () const |
arrays are bson objects with numeric and increasing field names More... | |
const char * | objdata () const |
int | objsize () const |
bool | isValid () const |
performs a cursory check on the object's size only. More... | |
bool | okForStorage () const |
bool | okForStorageAsRoot () const |
Same as above with the following extra restrictions Not valid if: More... | |
Status | storageValidEmbedded (const bool deep=true) const |
Validates that this can be stored as an embedded document See details above in okForStorage. More... | |
Status | storageValid (const bool deep=true) const |
Validates that this can be stored as a document (in a collection) See details above in okForStorageAsRoot. More... | |
bool | isEmpty () const |
std::string | hexDump () const |
Alternative output format. | |
int | woCompare (const BSONObj &r, const Ordering &o, bool considerFieldName=true) const |
wo='well ordered'. More... | |
int | woCompare (const BSONObj &r, const BSONObj &ordering=BSONObj(), bool considerFieldName=true) const |
wo='well ordered'. More... | |
int | woSortOrder (const BSONObj &r, const BSONObj &sortKey, bool useDotted=false) const |
bool | isPrefixOf (const BSONObj &otherObj) const |
bool | isFieldNamePrefixOf (const BSONObj &otherObj) const |
bool | binaryEqual (const BSONObj &r) const |
This is "shallow equality" – ints and doubles won't match. More... | |
BSONElement | firstElement () const |
const char * | firstElementFieldName () const |
faster than firstElement().fieldName() - for the first element we can easily find the fieldname without computing the element size. | |
bool | getObjectID (BSONElement &e) const |
Get the _id field from the object. More... | |
BSONObj | replaceFieldNames (const BSONObj &obj) const |
Return new object with the field names replaced by those in the passed object. More... | |
bool | valid () const |
true unless corrupt | |
void | elems (std::vector< BSONElement > &) const |
add all elements of the object to the specified vector | |
void | elems (std::list< BSONElement > &) const |
add all elements of the object to the specified list | |
BSONObjIterator | begin () const |
use something like this: for( BSONObj::iterator i = myObj.begin(); i.more(); ) { BSONElement e = i.next(); ... More... | |
Static Public Member Functions | |
static BSONObj | takeOwnership (char *holderPrefixedData) |
Given a pointer to a region of un-owned memory containing BSON data, prefixed by sufficient space for a BSONObj::Holder object, return a BSONObj that owns the memory. More... | |
C++ representation of a "BSON" object – that is, an extended JSON-style object in a binary representation.
See bsonspec.org.
Note that BSONObj's have a smart pointer capability built in – so you can pass them around by value. The reference counts used to implement this do not use locking, so copying and destroying BSONObj's are not thread-safe operations.
BSON object format:
code <unsigned totalsize>=""> {<byte bsontype>=""><cstring fieldname>=""><Data>}* EOO
totalSize includes itself.
Data: Bool: <byte> EOO: nothing follows Undefined: nothing follows OID: an OID object NumberDouble: <double> NumberInt: <int32> String: <unsigned32 strsizewithnull>=""><cstring> Date: <8bytes> Regex: <cstring regex>=""><cstring options>=""> Object: a nested object, leading with its entire size, which terminates with EOO. Array: same as object DBRef: <strlen> <cstring ns>=""> <oid> DBRef: a database reference: basically a collection name plus an Object ID BinData: <int len>=""> <byte subtype>=""> <byte[len] data> Code: a function (not a closure): same format as String. Symbol: a language symbol (say a python symbol). same format as String. Code With Scope: <total size>=""><String><Object>
anonymous enum |
Readable representation of a BSON object in an extended JSON-style notation.
This is an abbreviated representation which might be used for logging.
|
inline |
Construct an empty BSONObj – that is, {}.
|
inlineexplicit |
Construct a BSONObj from data in the proper format.
Use this constructor when something else owns bsonData's buffer
BSONObjIterator mongo::BSONObj::begin | ( | ) | const |
use something like this: for( BSONObj::iterator i = myObj.begin(); i.more(); ) { BSONElement e = i.next(); ...
}
|
inline |
This is "shallow equality" – ints and doubles won't match.
for a deep equality test use woCompare (which is slower).
BSONObj mongo::BSONObj::copy | ( | ) | const |
bool mongo::BSONObj::couldBeArray | ( | ) | const |
arrays are bson objects with numeric and increasing field names
extract items from object which match a pattern object.
e.g., if pattern is { x : 1, y : 1 }, builds an object with x and y elements of this object, if they are present. returns elements with original field names
pattern | a BSON obj indicating a set of (un-dotted) field names. Element values are ignored. |
Example: if this = {a : 4 , b : 5 , c : 6}) this.extractFieldsUnDotted({a : 1 , c : 1}) -> {"" : 4 , "" : 6 } this.extractFieldsUnDotted({b : "blah"}) -> {"" : 5}
|
inline |
bool mongo::BSONObj::getBoolField | ( | const StringData & | name | ) | const |
BSONElement mongo::BSONObj::getField | ( | const StringData & | name | ) | const |
Get the field of the specified name.
eoo() is true on the returned element if not found.
BSONElement mongo::BSONObj::getFieldDotted | ( | const StringData & | name | ) | const |
name | field to find. supports dot (".") notation to reach into embedded objects. for example "x.y" means "in the nested object in field x, retrieve field y" |
BSONElement mongo::BSONObj::getFieldDottedOrArray | ( | const char *& | name | ) | const |
Like getFieldDotted(), but returns first array encountered while traversing the dotted fields of name.
The name variable is updated to represent field names with respect to the returned element.
int mongo::BSONObj::getFieldNames | ( | std::set< std::string > & | fields | ) | const |
adds the field names to the fields set.
does NOT clear it (appends).
void mongo::BSONObj::getFields | ( | unsigned | n, |
const char ** | fieldNames, | ||
BSONElement * | fields | ||
) | const |
Get several fields at once.
This is faster than separate getField() calls as the size of elements iterated can then be calculated only once each.
n | number of fieldNames, and number of elements in the fields array |
fields | if a field is found its element is stored in its corresponding position in this array. if not found the array element is unchanged. |
void mongo::BSONObj::getFieldsDotted | ( | const StringData & | name, |
BSONElementSet & | ret, | ||
bool | expandLastArray = true |
||
) | const |
Like getFieldDotted(), but expands arrays and returns all matching objects.
Turning off expandLastArray allows you to retrieve nested array objects instead of their contents.
int mongo::BSONObj::getIntField | ( | const StringData & | name | ) | const |
BSONObj mongo::BSONObj::getObjectField | ( | const StringData & | name | ) | const |
bool mongo::BSONObj::getObjectID | ( | BSONElement & | e | ) | const |
Get the _id field from the object.
For good performance drivers should assure that _id is the first element of the object; however, correct operation is assured regardless.
BSONObj mongo::BSONObj::getOwned | ( | ) | const |
const char* mongo::BSONObj::getStringField | ( | const StringData & | name | ) | const |
|
inline |
|
inline |
|
inline |
bool mongo::BSONObj::isFieldNamePrefixOf | ( | const BSONObj & | otherObj | ) | const |
otherObj |
|
inline |
A BSONObj can use a buffer it "owns" or one it does not.
OWNED CASE If the BSONObj owns the buffer, the buffer can be shared among several BSONObj's (by assignment). In this case the buffer is basically implemented as a shared_ptr. Since BSONObj's are typically immutable, this works well.
UNOWNED CASE A BSONObj can also point to BSON data in some other data structure it does not "own" or free later. For example, in a memory mapped file. In this case, it is important the original data stays in scope for as long as the BSONObj is in use. If you think the original data may go out of scope, call BSONObj::getOwned() to promote your BSONObj to having its own copy.
On a BSONObj assignment, if the source is unowned, both the source and dest will have unowned pointers to the original buffer after the assignment.
If you are not sure about ownership but need the buffer to last as long as the BSONObj, call getOwned(). getOwned() is a no-op if the buffer is already owned. If not already owned, a malloc and memcpy will result.
Most ways to create BSONObj's create 'owned' variants. Unowned versions can be created with: (1) specifying true for the ifree parameter in the constructor (2) calling BSONObjBuilder::done(). Use BSONObjBuilder::obj() to get an owned copy (3) retrieving a subobject retrieves an unowned pointer into the parent BSON object
bool mongo::BSONObj::isPrefixOf | ( | const BSONObj & | otherObj | ) | const |
otherObj |
|
inline |
performs a cursory check on the object's size only.
std::string mongo::BSONObj::jsonString | ( | JsonStringFormat | format = Strict , |
int | pretty = 0 , |
||
bool | isArray = false |
||
) | const |
Properly formatted JSON string.
pretty | if true we try to add some lf's and indentation |
|
inline |
|
inline |
|
inline |
|
inline |
Same as above with the following extra restrictions Not valid if:
Provide assignment semantics.
We use the value taking form so that we can use copy and swap, and consume both lvalue and rvalue references.
|
inline |
Get the field of the specified name.
eoo() is true on the returned element if not found.
BSONObj mongo::BSONObj::removeField | ( | const StringData & | name | ) | const |
remove specified field and return a new object with the remaining fields.
slowish as builds a full new object
Return new object with the field names replaced by those in the passed object.
|
inline |
Validates that this can be stored as a document (in a collection) See details above in okForStorageAsRoot.
If 'deep' is true then validation is done to children
If not valid a user readable status message is returned.
|
inline |
Validates that this can be stored as an embedded document See details above in okForStorage.
If 'deep' is true then validation is done to children
If not valid a user readable status message is returned.
|
inlinestatic |
Given a pointer to a region of un-owned memory containing BSON data, prefixed by sufficient space for a BSONObj::Holder object, return a BSONObj that owns the memory.
This class will call free(holderPrefixedData), so it must have been allocated in a way that makes that valid.
int mongo::BSONObj::woCompare | ( | const BSONObj & | r, |
const Ordering & | o, | ||
bool | considerFieldName = true |
||
) | const |
wo='well ordered'.
fields must be in same order in each object. Ordering is with respect to the signs of the elements and allows ascending / descending key mixing.
int mongo::BSONObj::woCompare | ( | const BSONObj & | r, |
const BSONObj & | ordering = BSONObj() , |
||
bool | considerFieldName = true |
||
) | const |
wo='well ordered'.
fields must be in same order in each object. Ordering is with respect to the signs of the elements and allows ascending / descending key mixing.
int mongo::BSONObj::woSortOrder | ( | const BSONObj & | r, |
const BSONObj & | sortKey, | ||
bool | useDotted = false |
||
) | const |
useDotted | whether to treat sort key fields as possibly dotted and expand into them |