MongoDB C++ Driver mongocxx-3.0.3
Loading...
Searching...
No Matches
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 <chrono>
18#include <memory>
19
20#include <bsoncxx/document/view.hpp>
21#include <bsoncxx/stdx/optional.hpp>
22#include <bsoncxx/string/view_or_value.hpp>
23#include <mongocxx/stdx.hpp>
24
25#include <mongocxx/config/prelude.hpp>
26
27namespace mongocxx {
28MONGOCXX_INLINE_NAMESPACE_BEGIN
29
30class collection;
31
32namespace options {
33
39class MONGOCXX_API index {
40 public:
44 class MONGOCXX_API base_storage_options {
45 public:
46 virtual ~base_storage_options();
47
48 private:
49 friend collection;
50 MONGOCXX_PRIVATE virtual int type() const = 0;
51 };
52
56 class MONGOCXX_API wiredtiger_storage_options final : public base_storage_options {
57 public:
59
67
73 const stdx::optional<bsoncxx::string::view_or_value>& config_string() const;
74
75 private:
76 friend collection;
77 MONGOCXX_PRIVATE int type() const override;
78 stdx::optional<bsoncxx::string::view_or_value> _config_string;
79 };
80
81 index();
82
92 index& background(bool background);
93
99 const stdx::optional<bool>& background() const;
100
110 index& unique(bool unique);
111
117 const stdx::optional<bool>& unique() const;
118
126
132 const stdx::optional<bsoncxx::string::view_or_value>& name() const;
133
143 index& sparse(bool sparse);
144
150 const stdx::optional<bool>& sparse() const;
151
159 index& storage_options(std::unique_ptr<base_storage_options> storage_options);
160
164 index& storage_options(std::unique_ptr<wiredtiger_storage_options> storage_options);
165
175 index& expire_after(std::chrono::seconds seconds);
176
182 const stdx::optional<std::chrono::seconds>& expire_after() const;
183
190 index& version(std::int32_t v);
191
197 const stdx::optional<std::int32_t>& version() const;
198
207
213 const stdx::optional<bsoncxx::document::view>& weights() const;
214
223
229 const stdx::optional<bsoncxx::string::view_or_value>& default_language() const;
230
239
245 const stdx::optional<bsoncxx::string::view_or_value>& language_override() const;
246
254
260 const stdx::optional<bsoncxx::document::view>& partial_filter_expression() const;
261
268 index& twod_sphere_version(std::uint8_t twod_sphere_version);
269
275 const stdx::optional<std::uint8_t>& twod_sphere_version() const;
276
283 index& twod_bits_precision(std::uint8_t twod_bits_precision);
284
290 const stdx::optional<std::uint8_t>& twod_bits_precision() const;
291
298 index& twod_location_min(double twod_location_min);
299
305 const stdx::optional<double>& twod_location_min() const;
306
313 index& twod_location_max(double twod_location_max);
314
320 const stdx::optional<double>& twod_location_max() const;
321
332 index& haystack_bucket_size(double haystack_bucket_size);
333
339 const stdx::optional<double>& haystack_bucket_size() const;
340
341 private:
342 friend collection;
343
344 stdx::optional<bool> _background;
345 stdx::optional<bool> _unique;
346 stdx::optional<bsoncxx::string::view_or_value> _name;
347 stdx::optional<bool> _sparse;
348 std::unique_ptr<base_storage_options> _storage_options;
349 stdx::optional<std::chrono::seconds> _expire_after;
350 stdx::optional<std::int32_t> _version;
351 stdx::optional<bsoncxx::document::view> _weights;
352 stdx::optional<bsoncxx::string::view_or_value> _default_language;
353 stdx::optional<bsoncxx::string::view_or_value> _language_override;
354 stdx::optional<bsoncxx::document::view> _partial_filter_expression;
355 stdx::optional<std::uint8_t> _twod_sphere_version;
356 stdx::optional<std::uint8_t> _twod_bits_precision;
357 stdx::optional<double> _twod_location_min;
358 stdx::optional<double> _twod_location_max;
359 stdx::optional<double> _haystack_bucket_size;
360
361 //
362 // Return the current storage_options setting.
363 //
364 const std::unique_ptr<base_storage_options>& storage_options() const;
365};
366
367} // namespace options
368MONGOCXX_INLINE_NAMESPACE_END
369} // namespace mongocxx
370
371#include <mongocxx/config/postlude.hpp>
A read-only, non-owning view of a BSON document.
Definition view.hpp:33
Class representing a view-or-value variant type for strings.
Definition view_or_value.hpp:36
Class representing server side document groupings within a MongoDB database.
Definition collection.hpp:74
Base class representing the optional storage engine options for indexes.
Definition index.hpp:44
Class representing the optional WiredTiger storage engine options for indexes.
Definition index.hpp:56
void config_string(bsoncxx::string::view_or_value config_string)
Set the WiredTiger configuration string.
const stdx::optional< bsoncxx::string::view_or_value > & config_string() const
The current config_string setting.
Class representing the optional arguments to a MongoDB create index operation.
Definition index.hpp:39
index & storage_options(std::unique_ptr< base_storage_options > storage_options)
Optionally used only in MongoDB 3.0.0 and higher.
const stdx::optional< std::int32_t > & version() const
The current index version.
index & partial_filter_expression(bsoncxx::document::view partial_filter_expression)
Sets the document for the partial filter expression for partial indexes.
index & default_language(bsoncxx::string::view_or_value default_language)
For text indexes, the language that determines the list of stop words and the rules for the stemmer a...
const stdx::optional< bsoncxx::document::view > & weights() const
The current weights setting.
const stdx::optional< double > & twod_location_min() const
The current lower inclusive boundary for the longitude and latitude values.
index & name(bsoncxx::string::view_or_value name)
The name of the index.
const stdx::optional< bsoncxx::string::view_or_value > & name() const
The current name setting.
const stdx::optional< bsoncxx::string::view_or_value > & default_language() const
The current default_language setting.
index & storage_options(std::unique_ptr< wiredtiger_storage_options > storage_options)
index & background(bool background)
Whether or not to build the index in the background so that building the index does not block other d...
const stdx::optional< double > & haystack_bucket_size() const
The current haystack_bucket_size setting.
index & sparse(bool sparse)
Whether or not to create a sparse index.
index & twod_bits_precision(std::uint8_t twod_bits_precision)
For 2d indexes, the precision of the stored geohash value of the location data.
const stdx::optional< bool > & background() const
The current background setting.
const stdx::optional< std::uint8_t > & twod_bits_precision() const
The current precision of the stored geohash value of the location data.
index & twod_location_max(double twod_location_max)
For 2d indexes, the upper inclusive boundary for the longitude and latitude values.
const stdx::optional< bsoncxx::document::view > & partial_filter_expression() const
The current partial_filter_expression setting.
index & haystack_bucket_size(double haystack_bucket_size)
For geoHaystack indexes, specify the number of units within which to group the location values; i....
const stdx::optional< std::uint8_t > & twod_sphere_version() const
The current twod_sphere_version setting.
const stdx::optional< double > & twod_location_max() const
The current upper inclusive boundary for the longitude and latitude values.
index & unique(bool unique)
Whether or not to create a unique index so that the collection will not accept insertion of documents...
const stdx::optional< bool > & unique() const
The current unique setting.
index & version(std::int32_t v)
Sets the index version.
index & weights(bsoncxx::document::view weights)
For text indexes, sets the weight document.
const stdx::optional< std::chrono::seconds > & expire_after() const
The current expire_after setting.
index & twod_sphere_version(std::uint8_t twod_sphere_version)
For 2dsphere indexes, the 2dsphere index version number.
const stdx::optional< bool > & sparse() const
The current sparse setting.
index & expire_after(std::chrono::seconds seconds)
Set a value, in seconds, as a TTL to control how long MongoDB retains documents in this collection.
const stdx::optional< bsoncxx::string::view_or_value > & language_override() const
The current name of the field that contains the override language for text indexes.
index & language_override(bsoncxx::string::view_or_value language_override)
For text indexes, the name of the field, in the collection’s documents, that contains the override la...
index & twod_location_min(double twod_location_min)
For 2d indexes, the lower inclusive boundary for the longitude and latitude values.