MongoDB C++ Driver mongocxx-3.10.1
Loading...
Searching...
No Matches
single_context.hpp
1// Copyright 2014 MongoDB Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#pragma once
16
17#include <bsoncxx/builder/stream/single_context-fwd.hpp>
18
19#include <bsoncxx/builder/core.hpp>
20#include <bsoncxx/builder/stream/array_context.hpp>
21#include <bsoncxx/builder/stream/key_context.hpp>
22#include <bsoncxx/builder/stream/value_context.hpp>
23
24#include <bsoncxx/config/prelude.hpp>
25
26namespace bsoncxx {
27namespace v_noabi {
28namespace builder {
29namespace stream {
30
39 public:
46 BSONCXX_INLINE single_context(core* core) : _core(core) {}
47
54 _core->open_document();
55
56 return wrap_document();
57 }
58
64 BSONCXX_INLINE array_context<> operator<<(open_array_type) {
65 _core->open_array();
66
67 return wrap_array();
68 }
69
77 template <class T>
78 BSONCXX_INLINE void operator<<(T&& t) {
79 _core->append(std::forward<T>(t));
80 }
81
82 private:
83 BSONCXX_INLINE array_context<> wrap_array() {
84 return array_context<>(_core);
85 }
86
87 BSONCXX_INLINE key_context<> wrap_document() {
88 return key_context<>(_core);
89 }
90
91 core* _core;
92};
93
97template <class T>
99 return single_context(_core);
100}
101
105template <class T>
107 return single_context(_core);
108}
109
110} // namespace stream
111} // namespace builder
112} // namespace v_noabi
113} // namespace bsoncxx
114
115#include <bsoncxx/config/postlude.hpp>
A low-level interface for constructing BSON documents and arrays.
Definition core.hpp:45
core & append(const types::b_double &value)
Appends a BSON double.
core & open_document()
Opens a sub-document within this BSON datum.
core & open_array()
Opens a sub-array within this BSON datum.
A stream context which appends a single value.
Definition single_context.hpp:38
key_context operator<<(open_document_type)
<< operator for opening a new subdocument in the core builder.
Definition single_context.hpp:53
void operator<<(T &&t)
<< operator for accepting a real value and appending it to the core builder.
Definition single_context.hpp:78
A stream context which expects a value, which can later be followed by more key/value pairs.
Definition value_context.hpp:50
The top-level namespace for bsoncxx library entities.
Definition element-fwd.hpp:19
The type of a stream manipulator to open a subdocument.
Definition helpers.hpp:32