MongoDB C++ Driver mongocxx-3.0.0
Loading...
Searching...
No Matches
sub_array.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/basic/helpers.hpp>
18#include <bsoncxx/builder/concatenate.hpp>
19#include <bsoncxx/builder/core.hpp>
20
21#include <bsoncxx/config/prelude.hpp>
22
23namespace bsoncxx {
24BSONCXX_INLINE_NAMESPACE_BEGIN
25namespace builder {
26namespace basic {
27
28namespace impl {
29
30template <typename T>
31void value_append(core* core, T&& t);
32
33} // namespace impl
34
39class BSONCXX_API sub_array {
40 public:
41
45 BSONCXX_INLINE sub_array(core* core) : _core(core) {
46 }
47
51 template <typename Arg, typename... Args>
52 BSONCXX_INLINE void append(Arg&& a, Args&&... args) {
53 append_(std::forward<Arg>(a));
54 append(std::forward<Args>(args)...);
55 }
56
60 BSONCXX_INLINE
61 void append() {
62 }
63
64 private:
65 //
66 // Appends a BSON value.
67 //
68 template <typename T>
69 BSONCXX_INLINE void append_(T&& t) {
70 impl::value_append(_core, std::forward<T>(t));
71 }
72
73 //
74 // Concatenates another bson array directly.
75 //
76 BSONCXX_INLINE
77 void append_(concatenate_array array) {
78 _core->concatenate(array.view());
79 }
80
81 core* _core;
82};
83
84} // namespace basic
85} // namespace builder
86BSONCXX_INLINE_NAMESPACE_END
87} // namespace bsoncxx
88
89#include <bsoncxx/config/postlude.hpp>
An internal class of builder::basic.
Definition sub_array.hpp:39
sub_array(core *core)
Default constructor.
Definition sub_array.hpp:45
void append()
Inductive base-case for the variadic append(...)
Definition sub_array.hpp:61
void append(Arg &&a, Args &&... args)
Appends multiple BSON values.
Definition sub_array.hpp:52
A low-level interface for constructing BSON documents and arrays.
Definition core.hpp:42
Container to concatenate an array.
Definition concatenate.hpp:62
array::view view() const
Accessor that provides a view of the wrapped concatenate array.
Definition concatenate.hpp:85