MongoDB C++ Driver mongocxx-3.0.0
Loading...
Searching...
No Matches
value_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/core.hpp>
18#include <bsoncxx/builder/stream/array_context.hpp>
19#include <bsoncxx/builder/stream/closed_context.hpp>
20#include <bsoncxx/builder/stream/helpers.hpp>
21#include <bsoncxx/util/functor.hpp>
22
23#include <bsoncxx/config/prelude.hpp>
24
25namespace bsoncxx {
26BSONCXX_INLINE_NAMESPACE_BEGIN
27namespace builder {
28namespace stream {
29
47template <class base>
49 public:
50
57 BSONCXX_INLINE value_context(core* core) : _core(core) {
58 }
59
67 template <class T>
68 BSONCXX_INLINE
69 typename std::enable_if<!util::is_functor<T, void(single_context)>::value, base>::type
70 operator<<(T&& t) {
71 _core->append(std::forward<T>(t));
72 return unwrap();
73 }
74
82 template <typename T>
83 BSONCXX_INLINE
84 typename std::enable_if<util::is_functor<T, void(single_context)>::value, base>::type
85 operator<<(T&& func) {
86 func(*this);
87 return unwrap();
88 }
89
96 BSONCXX_INLINE key_context<base> operator<<(const open_document_type) {
97 _core->open_document();
98 return wrap_document();
99 }
100
107 BSONCXX_INLINE array_context<base> operator<<(const open_array_type) {
108 _core->open_array();
109 return wrap_array();
110 }
111
117 operator single_context();
118
119#if !defined(_MSC_VER)
120 // TODO(MSVC): Causes an ICE under VS2015U1
121 static_assert(
122 std::is_same<value_context, decltype(std::declval<value_context>() << 1 << "str")>::value,
123 "value_context must be templatized on a key_context");
124#endif
125
126 private:
127 BSONCXX_INLINE base unwrap() {
128 return base(_core);
129 }
130
131 BSONCXX_INLINE array_context<base> wrap_array() {
132 return array_context<base>(_core);
133 }
134
135 BSONCXX_INLINE key_context<base> wrap_document() {
136 return key_context<base>(_core);
137 }
138
139 core* _core;
140};
141
142} // namespace stream
143} // namespace builder
144BSONCXX_INLINE_NAMESPACE_END
145} // namespace bsoncxx
146
147#include <bsoncxx/config/postlude.hpp>
A low-level interface for constructing BSON documents and arrays.
Definition core.hpp:42
void open_document()
Opens a sub-document within this BSON datum.
void append(const types::b_double &value)
Append a BSON double.
void open_array()
Opens a sub-array within this BSON datum.
A stream context which expects a key, which can later be followed by value, then more key/value pairs...
Definition key_context.hpp:48
A stream context which appends a single value.
Definition single_context.hpp:36
A stream context which expects a value, which can later be followed by more key/value pairs.
Definition value_context.hpp:48
std::enable_if<!util::is_functor< T, void(single_context)>::value, base >::type operator<<(T &&t)
<< operator for accepting a real value and appending it to the core builder.
Definition value_context.hpp:70
value_context(core *core)
Create a value_context given a core builder.
Definition value_context.hpp:57