123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- // Copyright 2015 MongoDB Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #pragma once
- #include <chrono>
- #include <memory>
- #include <bsoncxx/document/view.hpp>
- #include <bsoncxx/stdx/optional.hpp>
- #include <bsoncxx/string/view_or_value.hpp>
- #include <mongocxx/stdx.hpp>
- #include <bsoncxx/document/value.hpp>
- #include <bsoncxx/document/view_or_value.hpp>
- #include <mongocxx/config/prelude.hpp>
- namespace mongocxx {
- MONGOCXX_INLINE_NAMESPACE_BEGIN
- class collection;
- namespace options {
- ///
- /// Class representing the optional arguments to a MongoDB create index operation.
- ///
- /// @see https://docs.mongodb.com/master/reference/command/createIndexes
- ///
- class MONGOCXX_API index {
- public:
- ///
- /// Base class representing the optional storage engine options for indexes.
- ///
- class MONGOCXX_API base_storage_options {
- public:
- virtual ~base_storage_options();
- private:
- friend class options::index;
- MONGOCXX_PRIVATE virtual int type() const = 0;
- };
- ///
- /// Class representing the optional WiredTiger storage engine options for indexes.
- ///
- class MONGOCXX_API wiredtiger_storage_options final : public base_storage_options {
- public:
- ~wiredtiger_storage_options() override;
- ///
- /// Set the WiredTiger configuration string.
- ///
- /// @param config_string
- /// The WiredTiger configuration string.
- ///
- void config_string(bsoncxx::string::view_or_value config_string);
- ///
- /// The current config_string setting.
- ///
- /// @return The current config_string.
- ///
- const stdx::optional<bsoncxx::string::view_or_value>& config_string() const;
- private:
- friend collection;
- MONGOCXX_PRIVATE int type() const override;
- stdx::optional<bsoncxx::string::view_or_value> _config_string;
- };
- index();
- ///
- /// Whether or not to build the index in the background so that building the index does not
- /// block other database activities. The default is to build indexes in the foreground
- ///
- /// @param background
- /// Whether or not to build the index in the background.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/tutorial/build-indexes-in-the-background/
- ///
- index& background(bool background);
- ///
- /// The current background setting.
- ///
- /// @return The current background.
- ///
- const stdx::optional<bool>& background() const;
- ///
- /// Whether or not to create a unique index so that the collection will not accept insertion of
- /// documents where the index key or keys match an existing value in the index.
- ///
- /// @param unique
- /// Whether or not to create a unique index.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/core/index-unique/
- ///
- index& unique(bool unique);
- ///
- /// The current unique setting.
- ///
- /// @return The current unique.
- ///
- const stdx::optional<bool>& unique() const;
- ///
- /// Whether or not the index is hidden from the query planner. A hidden index is not evaluated
- /// as part of query plan selection.
- ///
- /// @param hidden
- /// Whether or not to create a hidden index.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/core/index-hidden/
- ///
- index& hidden(bool hidden);
- ///
- /// The current hidden setting.
- ///
- /// @return The current hidden.
- ///
- const stdx::optional<bool>& hidden() const;
- ///
- /// The name of the index.
- ///
- /// @param name
- /// The name of the index.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& name(bsoncxx::string::view_or_value name);
- ///
- /// The current name setting.
- ///
- /// @return The current name.
- ///
- const stdx::optional<bsoncxx::string::view_or_value>& name() const;
- ///
- /// Sets the collation for this index.
- ///
- /// @param collation
- /// The new collation.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see
- /// https://docs.mongodb.com/master/reference/collation/
- ///
- index& collation(bsoncxx::document::view collation);
- ///
- /// Retrieves the current collation for this index.
- ///
- /// @return
- /// The current collation.
- ///
- /// @see
- /// https://docs.mongodb.com/master/reference/collation/
- ///
- const stdx::optional<bsoncxx::document::view>& collation() const;
- ///
- /// Whether or not to create a sparse index. Sparse indexes only reference documents with the
- /// indexed fields.
- ///
- /// @param sparse
- /// Whether or not to create a sparse index.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/core/index-sparse/
- ///
- index& sparse(bool sparse);
- ///
- /// The current sparse setting.
- ///
- /// @return The current sparse setting.
- ///
- const stdx::optional<bool>& sparse() const;
- ///
- /// Optionally used only in MongoDB 3.0.0 and higher. Specifies the storage engine options for
- /// the index.
- ///
- /// @param storage_options
- /// The storage engine options for the index.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& storage_options(std::unique_ptr<base_storage_options> storage_options);
- ///
- /// Optionally used only in MongoDB 3.0.0 and higher. Specifies the WiredTiger-specific storage
- /// engine options for the index.
- ///
- /// @param storage_options
- /// The storage engine options for the index.
- ///
- index& storage_options(std::unique_ptr<wiredtiger_storage_options> storage_options);
- ///
- /// Set a value, in seconds, as a TTL to control how long MongoDB retains documents in this
- /// collection.
- ///
- /// @param seconds
- /// The amount of time, in seconds, to retain documents.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- /// @see https://docs.mongodb.com/master/core/index-ttl/
- ///
- index& expire_after(std::chrono::seconds seconds);
- ///
- /// The current expire_after setting.
- ///
- /// @return The current expire_after value.
- ///
- const stdx::optional<std::chrono::seconds>& expire_after() const;
- ///
- /// Sets the index version.
- ///
- /// @param v
- /// The index version.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& version(std::int32_t v);
- ///
- /// The current index version.
- ///
- /// @return The current index version.
- ///
- const stdx::optional<std::int32_t>& version() const;
- ///
- /// For text indexes, sets the weight document. The weight document contains field and weight
- /// pairs.
- ///
- /// @param weights
- /// The weight document for text indexes.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& weights(bsoncxx::document::view weights);
- ///
- /// The current weights setting.
- ///
- /// @return The current weights.
- ///
- const stdx::optional<bsoncxx::document::view>& weights() const;
- ///
- /// For text indexes, the language that determines the list of stop words and the rules for the
- /// stemmer and tokenizer.
- ///
- /// @param default_language
- /// The default language used when creating text indexes.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& default_language(bsoncxx::string::view_or_value default_language);
- ///
- /// The current default_language setting.
- ///
- /// @return The current default_language.
- ///
- const stdx::optional<bsoncxx::string::view_or_value>& default_language() const;
- ///
- /// For text indexes, the name of the field, in the collection’s documents, that contains the
- /// override language for the document.
- ///
- /// @param language_override
- /// The name of the field that contains the override language for text indexes.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& language_override(bsoncxx::string::view_or_value language_override);
- ///
- /// The current name of the field that contains the override language for text indexes.
- ///
- /// @return The name of the field that contains the override language for text indexes.
- ///
- const stdx::optional<bsoncxx::string::view_or_value>& language_override() const;
- ///
- /// Sets the document for the partial filter expression for partial indexes.
- ///
- /// @param partial_filter_expression
- /// The partial filter expression document.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& partial_filter_expression(bsoncxx::document::view partial_filter_expression);
- ///
- /// The current partial_filter_expression setting.
- ///
- /// @return The current partial_filter_expression.
- ///
- const stdx::optional<bsoncxx::document::view>& partial_filter_expression() const;
- ///
- /// For 2dsphere indexes, the 2dsphere index version number. Version can be either 1 or 2.
- ///
- /// @param twod_sphere_version
- /// The 2dsphere index version number.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& twod_sphere_version(std::uint8_t twod_sphere_version);
- ///
- /// The current twod_sphere_version setting.
- ///
- /// @return The current twod_sphere_version.
- ///
- const stdx::optional<std::uint8_t>& twod_sphere_version() const;
- ///
- /// For 2d indexes, the precision of the stored geohash value of the location data.
- ///
- /// @param twod_bits_precision
- /// The precision of the stored geohash value.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& twod_bits_precision(std::uint8_t twod_bits_precision);
- ///
- /// The current precision of the stored geohash value of the location data.
- ///
- /// @return The precision of the stored geohash value of the location data.
- ///
- const stdx::optional<std::uint8_t>& twod_bits_precision() const;
- ///
- /// For 2d indexes, the lower inclusive boundary for the longitude and latitude values.
- ///
- /// @param twod_location_min
- /// The lower inclusive boundary.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& twod_location_min(double twod_location_min);
- ///
- /// The current lower inclusive boundary for the longitude and latitude values.
- ///
- /// @return The lower inclusive boundary for the longitude and latitude values.
- ///
- const stdx::optional<double>& twod_location_min() const;
- ///
- /// For 2d indexes, the upper inclusive boundary for the longitude and latitude values.
- ///
- /// @param twod_location_max
- /// The upper inclusive boundary.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- index& twod_location_max(double twod_location_max);
- ///
- /// The current upper inclusive boundary for the longitude and latitude values.
- ///
- /// @return The upper inclusive boundary for the longitude and latitude values.
- ///
- const stdx::optional<double>& twod_location_max() const;
- ///
- /// For geoHaystack indexes, specify the number of units within which to group the location
- /// values; i.e. group in the same bucket those location values that are within the specified
- /// number of units to each other.
- ///
- /// @see https://docs.mongodb.com/master/core/geohaystack/
- ///
- /// @param haystack_bucket_size
- /// The geoHaystack bucket size.
- ///
- /// @deprecated
- /// This option is deprecated.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- MONGOCXX_DEPRECATED index& haystack_bucket_size(double haystack_bucket_size);
- index& haystack_bucket_size_deprecated(double haystack_bucket_size);
- ///
- /// The current haystack_bucket_size setting.
- ///
- /// @return The current haystack_bucket_size.
- ///
- /// @deprecated
- /// This method is deprecated.
- ///
- MONGOCXX_DEPRECATED const stdx::optional<double>& haystack_bucket_size() const;
- const stdx::optional<double>& haystack_bucket_size_deprecated() const;
- ///
- /// Conversion operator that provides a view of the options in document form.
- ///
- /// @exception mongocxx::logic_error if an invalid expireAfterSeconds field is provided.
- ///
- /// @return A view of the current builder contents.
- ///
- operator bsoncxx::document::view_or_value();
- private:
- friend collection;
- stdx::optional<bool> _background;
- stdx::optional<bool> _unique;
- stdx::optional<bool> _hidden;
- stdx::optional<bsoncxx::string::view_or_value> _name;
- stdx::optional<bsoncxx::document::view> _collation;
- stdx::optional<bool> _sparse;
- std::unique_ptr<base_storage_options> _storage_options;
- stdx::optional<std::chrono::seconds> _expire_after;
- stdx::optional<std::int32_t> _version;
- stdx::optional<bsoncxx::document::view> _weights;
- stdx::optional<bsoncxx::string::view_or_value> _default_language;
- stdx::optional<bsoncxx::string::view_or_value> _language_override;
- stdx::optional<bsoncxx::document::view> _partial_filter_expression;
- stdx::optional<std::uint8_t> _twod_sphere_version;
- stdx::optional<std::uint8_t> _twod_bits_precision;
- stdx::optional<double> _twod_location_min;
- stdx::optional<double> _twod_location_max;
- stdx::optional<double> _haystack_bucket_size;
- //
- // Return the current storage_options setting.
- //
- const std::unique_ptr<base_storage_options>& storage_options() const;
- };
- } // namespace options
- MONGOCXX_INLINE_NAMESPACE_END
- } // namespace mongocxx
- #include <mongocxx/config/postlude.hpp>
|