MongoDB C++ Driver  mongocxx-3.9.0
All Classes Namespaces Functions Typedefs Enumerations Enumerator Friends Pages
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/array/value.hpp>
18 #include <bsoncxx/array/view.hpp>
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/single_context.hpp>
23 #include <bsoncxx/builder/stream/value_context.hpp>
24 
25 #include <bsoncxx/config/prelude.hpp>
26 
27 namespace bsoncxx {
28 inline namespace v_noabi {
29 namespace builder {
30 namespace stream {
31 
40 class array : public array_context<> {
41  public:
45  BSONCXX_INLINE array() : array_context<>(&_core), _core(true) {}
46 
50  BSONCXX_INLINE bsoncxx::array::view view() const {
51  return _core.view_array();
52  }
53 
57  BSONCXX_INLINE operator bsoncxx::array::view() const {
58  return view();
59  }
60 
70  BSONCXX_INLINE bsoncxx::array::value extract() {
71  return _core.extract_array();
72  }
73 
77  BSONCXX_INLINE void clear() {
78  _core.clear();
79  }
80 
81  private:
82  core _core;
83 };
84 
85 } // namespace stream
86 } // namespace builder
87 } // namespace v_noabi
88 } // namespace bsoncxx
89 
90 #include <bsoncxx/config/postlude.hpp>
A low-level interface for constructing BSON documents and arrays.
Definition: core.hpp:43
void clear()
Deletes the contents of the underlying BSON datum.
array::view view_array() const
Gets a view over the array.
array::value extract_array()
Transfers ownership of the underlying document to the caller.
A stream context which expects any number of values.
Definition: array_context.hpp:52
A streaming interface for constructing a BSON array.
Definition: array.hpp:40
bsoncxx::array::view view() const
Definition: array.hpp:50
array()
Default constructor.
Definition: array.hpp:45
bsoncxx::array::value extract()
Transfer ownership of the underlying array to the caller.
Definition: array.hpp:70
void clear()
Reset the underlying BSON to an empty array.
Definition: array.hpp:77
The top-level namespace for bsoncxx library entities.
Definition: element.hpp:24