123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- // Copyright 2018-present 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 <bsoncxx/document/view_or_value.hpp>
- #include <bsoncxx/string/view_or_value.hpp>
- #include <bsoncxx/types.hpp>
- #include <mongocxx/stdx.hpp>
- #include <mongocxx/config/prelude.hpp>
- namespace mongocxx {
- MONGOCXX_INLINE_NAMESPACE_BEGIN
- class client;
- class collection;
- class database;
- namespace options {
- class MONGOCXX_API change_stream {
- public:
- change_stream();
- ///
- /// Sets the fullDocument stage for the $changeStream.
- ///
- /// The allowed values are: ‘default’, ‘updateLookup’.
- /// If none set, defaults to ‘default’.
- ///
- /// When set to ‘updateLookup’, the change stream will include both a delta describing the
- /// changes to
- /// the document, as well as a copy of the entire document that was changed from some time after
- /// the change occurred. This will be stored in the "fullDocument" field of the notification.
- ///
- /// @param full_doc
- /// The fullDocument setting to use on this stream.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- change_stream& full_document(bsoncxx::string::view_or_value full_doc);
- ///
- /// Gets the current fullDocument setting.
- ///
- /// @return
- /// The current fullDocument setting.
- ///
- const bsoncxx::stdx::optional<bsoncxx::string::view_or_value>& full_document() const;
- ///
- /// Sets the number of documents to return per batch.
- ///
- /// @param batch_size
- /// The size of the batches to request.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- change_stream& batch_size(std::int32_t batch_size);
- ///
- /// The current batch size setting.
- ///
- /// @return
- /// The current batch size.
- ///
- const stdx::optional<std::int32_t>& batch_size() const;
- ///
- /// Specifies the logical starting point for the new change stream.
- ///
- /// The value returned by calling change_stream::get_resume_token can be used here.
- ///
- /// start_after, resume_after, and start_at_operation_time are mutually exclusive options.
- /// Setting more than one of these will result in a server error.
- ///
- /// @param resume_after
- /// The resumeToken to use when starting the change stream.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- change_stream& resume_after(bsoncxx::document::view_or_value resume_after);
- ///
- /// Retrieves the current resumeToken for this change stream.
- ///
- /// @return
- /// The current resumeToken.
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& resume_after() const;
- ///
- /// Specifies the logical starting point of the new change stream. The new stream will
- /// return the first notification after the given token.
- ///
- /// The value returned by calling change_stream::get_resume_token can be used here.
- ///
- /// Unlike resumeAfter, this can resume notifications after an "invalidate" event.
- ///
- /// start_after, resume_after, and start_at_operation_time are mutually exclusive options.
- /// Setting more than one of these will result in a server error.
- ///
- /// @param token
- /// The token representing the logical starting point of the change stream.
- ///
- /// @return
- /// A reference to the object on which this function is being called.
- ///
- change_stream& start_after(bsoncxx::document::view_or_value token);
- ///
- /// Retrieves the current startAfter token for this change stream.
- ///
- /// @return
- /// The current startAfter token.
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& start_after() const;
- ///
- /// Sets the collation for this operation.
- ///
- /// @param collation
- /// The new collation.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- change_stream& collation(bsoncxx::document::view_or_value collation);
- ///
- /// Retrieves the current collation for this operation.
- ///
- /// @return
- /// The current collation.
- ///
- const stdx::optional<bsoncxx::document::view_or_value>& collation() const;
- ///
- /// Sets the maximum amount of time for for the server to wait on new documents to satisfy a
- /// change stream query.
- ///
- /// @param max_time
- /// The max amount of time (in milliseconds) for the server to wait on new documents.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- change_stream& max_await_time(std::chrono::milliseconds max_time);
- ///
- /// The current max_time setting.
- ///
- /// @return
- /// The current max time (in milliseconds).
- ///
- const stdx::optional<std::chrono::milliseconds>& max_await_time() const;
- ///
- /// Specifies the logical starting point for the new change stream. Changes are returned at or
- /// after the specified operation time.
- ///
- /// start_after, resume_after, and start_at_operation_time are mutually exclusive options.
- /// Setting more than one of these will result in a server error.
- ///
- /// @param timestamp
- /// The starting operation time.
- ///
- /// @return
- /// A reference to the object on which this member function is being called. This facilitates
- /// method chaining.
- ///
- change_stream& start_at_operation_time(bsoncxx::types::b_timestamp timestamp);
- private:
- friend class ::mongocxx::client;
- friend class ::mongocxx::collection;
- friend class ::mongocxx::database;
- bsoncxx::document::value as_bson() const;
- stdx::optional<bsoncxx::string::view_or_value> _full_document;
- stdx::optional<std::int32_t> _batch_size;
- stdx::optional<bsoncxx::document::view_or_value> _collation;
- stdx::optional<bsoncxx::document::view_or_value> _resume_after;
- stdx::optional<bsoncxx::document::view_or_value> _start_after;
- stdx::optional<std::chrono::milliseconds> _max_await_time;
- // _start_at_operation_time is not wrapped in a stdx::optional because of a longstanding bug in
- // the MNMLSTC polyfill that has been fixed on master, but not in the latest release:
- // https://github.com/mnmlstc/core/pull/23
- bsoncxx::types::b_timestamp _start_at_operation_time;
- bool _start_at_operation_time_set = false;
- };
- } // namespace options
- MONGOCXX_INLINE_NAMESPACE_END
- } // namespace mongocxx
- #include <mongocxx/config/postlude.hpp>
|