MongoDB C++ Driver  mongocxx-3.0.1
index.hpp
1 // Copyright 2015 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 <memory>
18 
19 #include <bsoncxx/document/view.hpp>
20 #include <bsoncxx/stdx/optional.hpp>
21 #include <bsoncxx/string/view_or_value.hpp>
22 #include <mongocxx/stdx.hpp>
23 
24 #include <mongocxx/config/prelude.hpp>
25 
26 namespace mongocxx {
27 MONGOCXX_INLINE_NAMESPACE_BEGIN
28 
29 class collection;
30 
31 namespace options {
32 
38 class MONGOCXX_API index {
39  public:
43  class MONGOCXX_API base_storage_options {
44  public:
45  virtual ~base_storage_options();
46 
47  private:
48  friend collection;
49  MONGOCXX_PRIVATE virtual int type() const = 0;
50  };
51 
55  class MONGOCXX_API wiredtiger_storage_options final : public base_storage_options {
56  public:
57  ~wiredtiger_storage_options() override;
58 
65  void config_string(bsoncxx::string::view_or_value config_string);
66 
72  const stdx::optional<bsoncxx::string::view_or_value>& config_string() const;
73 
74  private:
75  friend collection;
76  MONGOCXX_PRIVATE int type() const override;
77  stdx::optional<bsoncxx::string::view_or_value> _config_string;
78  };
79 
80  index();
81 
91  void background(bool background);
92 
98  const stdx::optional<bool>& background() const;
99 
109  void unique(bool unique);
110 
116  const stdx::optional<bool>& unique() const;
117 
124  void name(bsoncxx::string::view_or_value name);
125 
131  const stdx::optional<bsoncxx::string::view_or_value>& name() const;
132 
142  void sparse(bool sparse);
143 
149  const stdx::optional<bool>& sparse() const;
150 
158  void storage_options(std::unique_ptr<base_storage_options> storage_options);
159 
163  void storage_options(std::unique_ptr<wiredtiger_storage_options> storage_options);
164 
174  void expire_after_seconds(std::int32_t expire_after_seconds);
175 
181  const stdx::optional<std::int32_t>& expire_after_seconds() const;
182 
189  void version(std::int32_t v);
190 
196  const stdx::optional<std::int32_t>& version() const;
197 
205  void weights(bsoncxx::document::view weights);
206 
212  const stdx::optional<bsoncxx::document::view>& weights() const;
213 
221  void default_language(bsoncxx::string::view_or_value default_language);
222 
228  const stdx::optional<bsoncxx::string::view_or_value>& default_language() const;
229 
237  void language_override(bsoncxx::string::view_or_value language_override);
238 
244  const stdx::optional<bsoncxx::string::view_or_value>& language_override() const;
245 
252  void partial_filter_expression(bsoncxx::document::view partial_filter_expression);
253 
259  const stdx::optional<bsoncxx::document::view>& partial_filter_expression() const;
260 
267  void twod_sphere_version(std::uint8_t twod_sphere_version);
268 
274  const stdx::optional<std::uint8_t>& twod_sphere_version() const;
275 
282  void twod_bits_precision(std::uint8_t twod_bits_precision);
283 
289  const stdx::optional<std::uint8_t>& twod_bits_precision() const;
290 
297  void twod_location_min(double twod_location_min);
298 
304  const stdx::optional<double>& twod_location_min() const;
305 
312  void twod_location_max(double twod_location_max);
313 
319  const stdx::optional<double>& twod_location_max() const;
320 
331  void haystack_bucket_size(double haystack_bucket_size);
332 
338  const stdx::optional<double>& haystack_bucket_size() const;
339 
340  private:
341  friend collection;
342 
343  stdx::optional<bool> _background;
344  stdx::optional<bool> _unique;
345  stdx::optional<bsoncxx::string::view_or_value> _name;
346  stdx::optional<bool> _sparse;
347  std::unique_ptr<base_storage_options> _storage_options;
348  stdx::optional<std::int32_t> _expire_after_seconds;
349  stdx::optional<std::int32_t> _version;
350  stdx::optional<bsoncxx::document::view> _weights;
351  stdx::optional<bsoncxx::string::view_or_value> _default_language;
352  stdx::optional<bsoncxx::string::view_or_value> _language_override;
353  stdx::optional<bsoncxx::document::view> _partial_filter_expression;
354  stdx::optional<std::uint8_t> _twod_sphere_version;
355  stdx::optional<std::uint8_t> _twod_bits_precision;
356  stdx::optional<double> _twod_location_min;
357  stdx::optional<double> _twod_location_max;
358  stdx::optional<double> _haystack_bucket_size;
359 
360  //
361  // Return the current storage_options setting.
362  //
363  const std::unique_ptr<base_storage_options>& storage_options() const;
364 };
365 
366 } // namespace options
367 MONGOCXX_INLINE_NAMESPACE_END
368 } // namespace mongocxx
369 
370 #include <mongocxx/config/postlude.hpp>
Definition: bulk_write.hpp:22
A read-only, non-owning view of a BSON document.
Definition: view.hpp:33
Base class representing the optional storage engine options for indexes.
Definition: index.hpp:43
Class representing a view-or-value variant type for strings.
Definition: view_or_value.hpp:36
Class representing the optional arguments to a MongoDB create index operation.
Definition: index.hpp:38
Class representing the optional WiredTiger storage engine options for indexes.
Definition: index.hpp:55
Class representing server side document groupings within a MongoDB database.
Definition: collection.hpp:74