123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- // 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 <cstddef>
- #include <cstdint>
- #include <iterator>
- #include <bsoncxx/document/element.hpp>
- #include <bsoncxx/stdx/string_view.hpp>
- #include <bsoncxx/config/prelude.hpp>
- namespace bsoncxx {
- BSONCXX_INLINE_NAMESPACE_BEGIN
- namespace document {
- ///
- /// A read-only, non-owning view of a BSON document.
- ///
- class BSONCXX_API view {
- public:
- class BSONCXX_API const_iterator;
- using iterator = const_iterator;
- ///
- /// Default constructs a view. The resulting view will be initialized to point at
- /// an empty BSON document.
- ///
- view();
- ///
- /// Constructs a view from a buffer. The caller is responsible for ensuring that
- /// the lifetime of the resulting view is a subset of the buffer's.
- ///
- /// @param data
- /// A buffer containing a valid BSON document.
- /// @param length
- /// The size of the buffer, in bytes.
- ///
- view(const std::uint8_t* data, std::size_t length);
- ///
- /// @returns A const_iterator to the first element of the document.
- ///
- const_iterator cbegin() const;
- ///
- /// @returns A const_iterator to the past-the-end element of the document.
- ///
- const_iterator cend() const;
- ///
- /// @returns A const_iterator to the first element of the document.
- ///
- const_iterator begin() const;
- ///
- /// @returns A const_iterator to the past-the-end element of the document.
- ///
- const_iterator end() const;
- ///
- /// Finds the first element of the document with the provided key. If there is
- /// no such element, the past-the-end iterator will be returned. The runtime of
- /// find() is linear in the length of the document. This method only searches
- /// the top-level document, and will not recurse to any subdocuments.
- ///
- /// @remark In BSON, keys are not required to be unique. If there are multiple
- /// elements with a matching key in the document, the first matching element from
- /// the start will be returned.
- ///
- /// @param key
- /// The key to search for.
- ///
- /// @return An iterator to the matching element, if found, or the past-the-end iterator.
- ///
- const_iterator find(stdx::string_view key) const;
- ///
- /// Finds the first element of the document with the provided key. If there is no
- /// such element, the invalid document::element will be returned. The runtime of operator[]
- /// is linear in the length of the document.
- ///
- /// @param key
- /// The key to search for.
- ///
- /// @return The matching element, if found, or the invalid element.
- ///
- element operator[](stdx::string_view key) const;
- ///
- /// Access the raw bytes of the underlying document.
- ///
- /// @return A (non-owning) pointer to the view's buffer.
- ///
- const std::uint8_t* data() const;
- ///
- /// Gets the length of the underlying buffer.
- ///
- /// @remark This is not the number of elements in the document.
- /// To compute the number of elements, use std::distance.
- ///
- /// @return The length of the document, in bytes.
- ///
- std::size_t length() const;
- ///
- /// Checks if the underlying document is empty, i.e. it is equivalent to
- /// the trivial document '{}'.
- ///
- /// @return true if the underlying document is empty.
- ///
- bool empty() const;
- ///
- /// @{
- ///
- /// Compare two document views for (in)-equality
- ///
- /// @relates view
- ///
- friend BSONCXX_API bool BSONCXX_CALL operator==(view, view);
- friend BSONCXX_API bool BSONCXX_CALL operator!=(view, view);
- ///
- /// @}
- ///
- private:
- const std::uint8_t* _data;
- std::size_t _length;
- };
- ///
- /// A const iterator over the contents of a document view.
- ///
- /// This iterator type provides a const forward iterator interface to document
- /// view elements.
- ///
- class BSONCXX_API view::const_iterator : public std::iterator<std::forward_iterator_tag,
- element,
- std::ptrdiff_t,
- const element*,
- const element&> {
- public:
- const_iterator();
- explicit const_iterator(const element& element);
- reference operator*();
- pointer operator->();
- const_iterator& operator++();
- const_iterator operator++(int);
- ///
- /// @{
- ///
- /// Compares two const_iterators for (in)-equality
- ///
- /// @relates view::const_iterator
- ///
- friend BSONCXX_API bool BSONCXX_CALL operator==(const const_iterator&, const const_iterator&);
- friend BSONCXX_API bool BSONCXX_CALL operator!=(const const_iterator&, const const_iterator&);
- ///
- /// @}
- ///
- private:
- element _element;
- };
- } // namespace document
- BSONCXX_INLINE_NAMESPACE_END
- } // namespace bsoncxx
- #include <bsoncxx/config/postlude.hpp>
|