123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- // Copyright 2014 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 <cstdint>
- #include <map>
- #include <vector>
- #include <bsoncxx/document/value.hpp>
- #include <bsoncxx/document/view.hpp>
- #include <bsoncxx/types.hpp>
- #include <mongocxx/config/prelude.hpp>
- namespace mongocxx {
- MONGOCXX_INLINE_NAMESPACE_BEGIN
- namespace result {
- ///
- /// Class representing the result of a MongoDB bulk write operation.
- ///
- class MONGOCXX_API bulk_write {
- public:
- using id_map = std::map<std::size_t, bsoncxx::document::element>;
- // This constructor is public for testing purposes only
- explicit bulk_write(bsoncxx::document::value raw_response);
- ///
- /// Gets the number of documents that were inserted during this operation.
- ///
- /// @return The number of documents that were inserted.
- ///
- std::int32_t inserted_count() const;
- ///
- /// Gets the number of documents that were matched during this operation.
- ///
- /// @return The number of documents that were matched.
- ///
- std::int32_t matched_count() const;
- ///
- /// Gets the number of documents that were modified during this operation.
- ///
- /// @return The number of documents that were modified.
- ///
- /// @throws with server versions below 2.6 due to the field `nModified` not being returned.
- ///
- std::int32_t modified_count() const;
- ///
- /// Gets the number of documents that were deleted during this operation.
- ///
- /// @return The number of documents that were deleted.
- ///
- std::int32_t deleted_count() const;
- ///
- /// Gets the number of documents that were upserted during this operation.
- ///
- /// @return The number of documents that were upserted.
- ///
- std::int32_t upserted_count() const;
- ///
- /// Gets the ids of the upserted documents.
- ///
- /// @note The returned id_map must not be accessed after the bulk_write object is destroyed.
- /// @return A map from bulk write index to _id field for upserted documents.
- ///
- id_map upserted_ids() const;
- private:
- MONGOCXX_PRIVATE bsoncxx::document::view view() const;
- bsoncxx::document::value _response;
- friend MONGOCXX_API bool MONGOCXX_CALL operator==(const bulk_write&, const bulk_write&);
- friend MONGOCXX_API bool MONGOCXX_CALL operator!=(const bulk_write&, const bulk_write&);
- };
- } // namespace result
- MONGOCXX_INLINE_NAMESPACE_END
- } // namespace mongocxx
- #include <mongocxx/config/postlude.hpp>
|