22 #include <bsoncxx/builder/stream/document.hpp>
23 #include <bsoncxx/document/view_or_value.hpp>
24 #include <bsoncxx/stdx/optional.hpp>
25 #include <bsoncxx/string/view_or_value.hpp>
26 #include <mongocxx/bulk_write.hpp>
27 #include <mongocxx/cursor.hpp>
28 #include <mongocxx/insert_many_builder.hpp>
29 #include <mongocxx/options/aggregate.hpp>
30 #include <mongocxx/options/bulk_write.hpp>
31 #include <mongocxx/options/count.hpp>
32 #include <mongocxx/options/delete.hpp>
33 #include <mongocxx/options/distinct.hpp>
34 #include <mongocxx/options/find.hpp>
35 #include <mongocxx/options/find_one_and_delete.hpp>
36 #include <mongocxx/options/find_one_and_replace.hpp>
37 #include <mongocxx/options/find_one_and_update.hpp>
38 #include <mongocxx/options/index.hpp>
39 #include <mongocxx/options/insert.hpp>
40 #include <mongocxx/options/update.hpp>
41 #include <mongocxx/read_concern.hpp>
42 #include <mongocxx/read_preference.hpp>
43 #include <mongocxx/result/bulk_write.hpp>
44 #include <mongocxx/result/delete.hpp>
45 #include <mongocxx/result/insert_many.hpp>
46 #include <mongocxx/result/insert_one.hpp>
47 #include <mongocxx/result/replace_one.hpp>
48 #include <mongocxx/result/update.hpp>
49 #include <mongocxx/write_concern.hpp>
51 #include <mongocxx/config/prelude.hpp>
54 MONGOCXX_INLINE_NAMESPACE_BEGIN
113 explicit operator bool()
const noexcept;
151 template <
typename container_type>
152 MONGOCXX_INLINE stdx::optional<result::bulk_write>
bulk_write(
176 template <
typename write_model_iterator_type>
177 MONGOCXX_INLINE stdx::optional<result::bulk_write> bulk_write(
178 write_model_iterator_type begin, write_model_iterator_type end,
192 stdx::optional<result::bulk_write> bulk_write(
const class bulk_write& bulk_write);
238 stdx::optional<result::delete_result> delete_many(
255 stdx::optional<result::delete_result> delete_one(
318 stdx::optional<bsoncxx::document::value> find_one(
332 stdx::optional<bsoncxx::document::value> find_one_and_delete(
354 stdx::optional<bsoncxx::document::value> find_one_and_replace(
376 stdx::optional<bsoncxx::document::value> find_one_and_update(
392 stdx::optional<result::insert_one> insert_one(
416 template <
typename container_type>
417 MONGOCXX_INLINE stdx::optional<result::insert_many> insert_many(
443 template <
typename document_view_iterator_type>
444 MONGOCXX_INLINE stdx::optional<result::insert_many> insert_many(
445 document_view_iterator_type begin, document_view_iterator_type end,
456 cursor list_indexes()
const;
463 stdx::string_view name()
const;
497 class read_concern read_concern() const;
517 class read_preference read_preference() const;
534 stdx::optional<result::replace_one> replace_one(
590 class write_concern write_concern() const;
598 MONGOCXX_PRIVATE collection(
const database& database,
void* collection);
600 class MONGOCXX_PRIVATE impl;
602 MONGOCXX_PRIVATE impl& _get_impl();
603 MONGOCXX_PRIVATE
const impl& _get_impl()
const;
605 std::unique_ptr<impl> _impl;
608 template <
typename container_type>
611 return bulk_write(requests.begin(), requests.end(), options);
614 template <
typename write_model_iterator_type>
616 write_model_iterator_type begin, write_model_iterator_type end,
620 std::for_each(begin, end, [&](
const model::write& current) { writes.
append(current); });
625 template <
typename container_type>
628 return insert_many(container.begin(), container.end(), options);
631 template <
typename document_view_iterator_type>
633 document_view_iterator_type begin, document_view_iterator_type end,
637 return op.insert(
this);
640 MONGOCXX_INLINE_NAMESPACE_END
643 #include <mongocxx/config/postlude.hpp>
void append(const model::write &operation)
Appends a single write to the bulk write operation.
Definition: bulk_write.hpp:22
Class to build an insert_many bulk write operation.
Definition: insert_many_builder.hpp:33
A read-only BSON document that owns its underlying buffer.
Definition: value.hpp:33
Class representing the optional arguments to a MongoDB query.
Definition: find.hpp:36
Class representing a pointer to the result set of a query on a MongoDB server.
Definition: cursor.hpp:35
Class representing the optional arguments to a MongoDB distinct command.
Definition: distinct.hpp:34
stdx::optional< result::bulk_write > bulk_write(const container_type &writes, const options::bulk_write &options=options::bulk_write())
Sends a container of writes to the server as a bulk write operation.
Definition: collection.hpp:609
Class representing the optional arguments to a MongoDB bulk write.
Definition: bulk_write.hpp:29
Class representing the optional arguments to a MongoDB insert operation.
Definition: insert.hpp:31
Class representing a MongoDB database.
Definition: database.hpp:43
Class representing the optional arguments to a MongoDB update operation.
Definition: update.hpp:31
Class representing a batch of write operations that can be sent to the server as a group...
Definition: bulk_write.hpp:41
Class representing the optional arguments to a MongoDB delete operation.
Definition: delete.hpp:30
Class representing a MongoDB aggregation pipeline.
Definition: pipeline.hpp:34
Class representing a preference for how the driver routes read operations to members of a replica set...
Definition: read_preference.hpp:54
Class representing the optional arguments to a MongoDB aggregation operation.
Definition: aggregate.hpp:34
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
Models a single write operation within a .
Definition: write.hpp:37
A class to represent the read concern.
Definition: read_concern.hpp:46
Class representing the optional arguments to a MongoDB find_and_modify replace operation.
Definition: find_one_and_replace.hpp:34
stdx::optional< result::insert_many > insert_many(const container_type &container, const options::insert &options=options::insert())
Inserts multiple documents into the collection.
Definition: collection.hpp:626
Class representing the optional arguments to a MongoDB find_and_modify delete operation.
Definition: find_one_and_delete.hpp:33
Class representing the server-side requirement for reporting the success of a write operation...
Definition: write_concern.hpp:54
Class representing the optional arguments to a MongoDB count command.
Definition: count.hpp:36
Class representing the optional arguments to a MongoDB find_and_modify update operation.
Definition: find_one_and_update.hpp:34
Class representing server side document groupings within a MongoDB database.
Definition: collection.hpp:74