summaryrefslogtreecommitdiff
path: root/src/mongo/bson/mutable/element.cpp
blob: 79de5b073ec505bc12d56229bf92eb080eefe81d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/* Copyright 2013 10gen Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "mongo/platform/basic.h"

#include "mongo/bson/mutable/element.h"

#include "mongo/bson/mutable/algorithm.h"
#include "mongo/bson/mutable/document.h"

namespace mongo {
namespace mutablebson {

    // Many of the methods of Element are actually implemented in document.cpp, since they need
    // access to the firewalled implementation of Document.

    Status Element::pushFront(Element e) {
        return addChild(e, true);
    }

    Status Element::pushBack(Element e) {
        return addChild(e, false);
    }

    Status Element::popFront() {
        Element left = leftChild();
        if (!left.ok())
            return Status(ErrorCodes::EmptyArrayOperation, "popFront on empty");
        return left.remove();
    }

    Status Element::popBack() {
        Element right = rightChild();
        if (!right.ok())
            return Status(ErrorCodes::EmptyArrayOperation, "popBack on empty");
        return right.remove();
    }

    Element Element::operator[](size_t n) const {
        return getNthChild(*this, n);
    }

    Element Element::operator[](const StringData& name) const {
        return findFirstChildNamed(*this, name);
    }

    Status Element::appendDouble(const StringData& fieldName, double value) {
        return pushBack(getDocument().makeElementDouble(fieldName, value));
    }

    Status Element::appendString(const StringData& fieldName, const StringData& value) {
        return pushBack(getDocument().makeElementString(fieldName, value));
    }

    Status Element::appendObject(const StringData& fieldName, const BSONObj& value) {
        return pushBack(getDocument().makeElementObject(fieldName, value));
    }

    Status Element::appendArray(const StringData& fieldName, const BSONObj& value) {
        return pushBack(getDocument().makeElementArray(fieldName, value));
    }

    Status Element::appendBinary(const StringData& fieldName,
                                 uint32_t len, mongo::BinDataType binType,
                                 const void* data) {
        return pushBack(getDocument().makeElementBinary(fieldName, len, binType, data));
    }

    Status Element::appendUndefined(const StringData& fieldName) {
        return pushBack(getDocument().makeElementUndefined(fieldName));
    }

    Status Element::appendOID(const StringData& fieldName, const OID value) {
        return pushBack(getDocument().makeElementOID(fieldName, value));
    }

    Status Element::appendBool(const StringData& fieldName, bool value) {
        return pushBack(getDocument().makeElementBool(fieldName, value));
    }

    Status Element::appendDate(const StringData& fieldName, Date_t value) {
        return pushBack(getDocument().makeElementDate(fieldName, value));
    }

    Status Element::appendNull(const StringData& fieldName) {
        return pushBack(getDocument().makeElementNull(fieldName));
    }

    Status Element::appendRegex(const StringData& fieldName,
                                const StringData& re, const StringData& flags) {
        return pushBack(getDocument().makeElementRegex(fieldName, re, flags));
    }

    Status Element::appendDBRef(const StringData& fieldName,
                                const StringData& ns, const OID oid) {
        return pushBack(getDocument().makeElementDBRef(fieldName, ns, oid));
    }

    Status Element::appendCode(const StringData& fieldName, const StringData& value) {
        return pushBack(getDocument().makeElementCode(fieldName, value));
    }

    Status Element::appendSymbol(const StringData& fieldName, const StringData& value) {
        return pushBack(getDocument().makeElementSymbol(fieldName, value));
    }

    Status Element::appendCodeWithScope(const StringData& fieldName,
                                        const StringData& code, const BSONObj& scope) {
        return pushBack(getDocument().makeElementCodeWithScope(fieldName, code, scope));
    }

    Status Element::appendInt(const StringData& fieldName, int32_t value) {
        return pushBack(getDocument().makeElementInt(fieldName, value));
    }

    Status Element::appendTimestamp(const StringData& fieldName, OpTime value) {
        return pushBack(getDocument().makeElementTimestamp(fieldName, value));
    }

    Status Element::appendLong(const StringData& fieldName, int64_t value) {
        return pushBack(getDocument().makeElementLong(fieldName, value));
    }

    Status Element::appendMinKey(const StringData& fieldName) {
        return pushBack(getDocument().makeElementMinKey(fieldName));
    }

    Status Element::appendMaxKey(const StringData& fieldName) {
        return pushBack(getDocument().makeElementMaxKey(fieldName));
    }

    Status Element::appendElement(const BSONElement& value) {
        return pushBack(getDocument().makeElement(value));
    }

    Status Element::appendSafeNum(const StringData& fieldName, SafeNum value) {
        return pushBack(getDocument().makeElementSafeNum(fieldName, value));
    }

    std::string Element::toString() const {
        if (hasValue()) {
            return getValue().toString();
        } else if (isType(mongo::Object)) {
            BSONObjBuilder builder;
            writeTo(&builder);
            BSONObj obj = builder.obj();
            return obj.firstElement().toString();
        } else if (isType(mongo::Array)) {
            BSONArrayBuilder builder;
            writeArrayTo(&builder);
            BSONArray arr = builder.arr();
            return arr.firstElement().toString();
        } else {
            return "corrupted element";
        }
    }

} // namespace mutablebson
} // namespace mongo