aboutsummaryrefslogblamecommitdiff
path: root/src/google/protobuf/map.h
blob: a9937b9b9674e38d3b423f6b2348d1b87dddc9ce (plain) (tree)
























































































































                                                                                        
                           































































































































































                                                                                    
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc.  All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//     * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#ifndef GOOGLE_PROTOBUF_MAP_H__
#define GOOGLE_PROTOBUF_MAP_H__

#include <vector>

#include <google/protobuf/map_type_handler.h>
#include <google/protobuf/stubs/hash.h>

namespace google {
namespace protobuf {

template <typename Key, typename T>
class Map;

template <typename Enum> struct is_proto_enum;

namespace internal {
template <typename K, typename V, FieldDescriptor::Type KeyProto,
          FieldDescriptor::Type ValueProto, int default_enum_value>
class MapField;
}

// This is the class for google::protobuf::Map's internal value_type. Instead of using
// std::pair as value_type, we use this class which provides us more control of
// its process of construction and destruction.
template <typename Key, typename T>
class MapPair {
 public:
  typedef Key first_type;
  typedef T second_type;

  MapPair(const Key& other_first, const T& other_second)
      : first(other_first), second(other_second) {}

  MapPair(const Key& other_first) : first(other_first), second() {}

  MapPair(const MapPair& other)
      : first(other.first), second(other.second) {}

  MapPair& operator=(const MapPair& other) {
    first = other.first;
    second = other.second;
    return *this;
  }

  ~MapPair() {}

  const Key first;
  T second;

 private:
  friend class Map<Key, T>;
};

// STL-like iterator implementation for google::protobuf::Map. Users should not refer to
// this class directly; use google::protobuf::Map<Key, T>::iterator instead.
template <typename Key, typename T>
class MapIterator {
 public:
  typedef MapPair<Key, T> value_type;
  typedef value_type* pointer;
  typedef value_type& reference;
  typedef MapIterator iterator;

  // constructor
  MapIterator(const typename hash_map<Key, value_type*>::iterator& it)
      : it_(it) {}
  MapIterator(const MapIterator& other) : it_(other.it_) {}
  MapIterator& operator=(const MapIterator& other) {
    it_ = other.it_;
    return *this;
  }

  // deferenceable
  reference operator*() const { return *it_->second; }
  pointer operator->() const { return it_->second; }

  // incrementable
  iterator& operator++() {
    ++it_;
    return *this;
  }
  iterator operator++(int) { return iterator(it_++); }

  // equality_comparable
  bool operator==(const iterator& x) const { return it_ == x.it_; }
  bool operator!=(const iterator& x) const { return it_ != x.it_; }

 private:
  typename hash_map<Key, value_type*>::iterator it_;

  friend class Map<Key, T>;
};

// google::protobuf::Map is an associative container type used to store protobuf map
// fields. Its interface is similar to std::unordered_map. Users should use this
// interface directly to visit or change map fields.
template <typename Key, typename T>
class Map {
  typedef internal::MapCppTypeHandler<T> ValueTypeHandler;
 public:
  typedef Key key_type;
  typedef T mapped_type;
  typedef MapPair<Key, T> value_type;

  typedef value_type* pointer;
  typedef const value_type* const_pointer;
  typedef value_type& reference;
  typedef const value_type& const_reference;

  typedef MapIterator<Key, T> iterator;
  typedef MapIterator<Key, T> const_iterator;

  typedef size_t size_type;
  typedef hash<Key> hasher;

  Map() : default_enum_value_(0) {}

  Map(const Map& other) {
    insert(other.begin(), other.end());
  }

  ~Map() { clear(); }

  // Iterators
  iterator begin() { return iterator(elements_.begin()); }
  iterator end() { return iterator(elements_.end()); }
  const_iterator begin() const {
    return const_iterator(
        const_cast<hash_map<Key, value_type*>&>(elements_).begin());
  }
  const_iterator end() const {
    return const_iterator(
        const_cast<hash_map<Key, value_type*>&>(elements_).end());
  }
  const_iterator cbegin() const { return begin(); }
  const_iterator cend() const { return end(); }

  // Capacity
  size_type size() const { return elements_.size(); }
  bool empty() const { return elements_.empty(); }

  // Element access
  T& operator[](const key_type& key) {
    value_type** value = &elements_[key];
    if (*value == NULL) {
      *value = new value_type(key);
      internal::MapValueInitializer<google::protobuf::is_proto_enum<T>::value,
                                    T>::Initialize((*value)->second,
                                                   default_enum_value_);
    }
    return (*value)->second;
  }
  const T& at(const key_type& key) const {
    const_iterator it = find(key);
    GOOGLE_CHECK(it != end());
    return it->second;
  }
  T& at(const key_type& key) {
    iterator it = find(key);
    GOOGLE_CHECK(it != end());
    return it->second;
  }

  // Lookup
  size_type count(const key_type& key) const {
    return elements_.count(key);
  }
  const_iterator find(const key_type& key) const {
    // When elements_ is a const instance, find(key) returns a const iterator.
    // However, to reduce code complexity, we use MapIterator for Map's both
    // const and non-const iterator, which only takes non-const iterator to
    // construct.
    return const_iterator(
        const_cast<hash_map<Key, value_type*>&>(elements_).find(key));
  }
  iterator find(const key_type& key) {
    return iterator(elements_.find(key));
  }

  // insert
  std::pair<iterator, bool> insert(const value_type& value) {
    iterator it = find(value.first);
    if (it != end()) {
      return std::pair<iterator, bool>(it, false);
    } else {
      return elements_.insert(
          std::pair<Key, value_type*>(value.first, new value_type(value)));
    }
  }
  template <class InputIt>
  void insert(InputIt first, InputIt last) {
    for (InputIt it = first; it != last; ++it) {
      iterator exist_it = find(it->first);
      if (exist_it == end()) {
        operator[](it->first) = it->second;
      }
    }
  }

  // Erase
  size_type erase(const key_type& key) {
    typename hash_map<Key, value_type*>::iterator it = elements_.find(key);
    if (it == elements_.end()) {
      return 0;
    } else {
      delete it->second;
      elements_.erase(it);
      return 1;
    }
  }
  void erase(iterator pos) {
    delete pos.it_->second;
    elements_.erase(pos.it_);
  }
  void erase(iterator first, iterator last) {
    for (iterator it = first; it != last;) {
      delete it.it_->second;
      elements_.erase((it++).it_);
    }
  }
  void clear() {
    for (iterator it = begin(); it != end(); ++it) {
      delete it.it_->second;
    }
    elements_.clear();
  }

  // Assign
  Map& operator=(const Map& other) {
    insert(other.begin(), other.end());
    return *this;
  }

 private:
  // Set default enum value only for proto2 map field whose value is enum type.
  void SetDefaultEnumValue(int default_enum_value) {
    default_enum_value_ = default_enum_value;
  }

  hash_map<Key, value_type*> elements_;
  int default_enum_value_;

  template <typename K, typename V, FieldDescriptor::Type KeyProto,
            FieldDescriptor::Type ValueProto, int default_enum>
  friend class LIBPROTOBUF_EXPORT internal::MapField;
};

}  // namespace protobuf

}  // namespace google
#endif  // GOOGLE_PROTOBUF_MAP_H__