/****************************************************************************** * Icinga 2 * * Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/) * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * * as published by the Free Software Foundation; either version 2 * * of the License, or (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the Free Software Foundation * * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * ******************************************************************************/ #ifndef DICTIONARY_H #define DICTIONARY_H #include "base/i2-base.hpp" #include "base/object.hpp" #include "base/value.hpp" #include #include #include namespace icinga { typedef std::vector > DictionaryData; /** * A container that holds key-value pairs. * * @ingroup base */ class Dictionary final : public Object { public: DECLARE_OBJECT(Dictionary); /** * An iterator that can be used to iterate over dictionary elements. */ typedef std::map::iterator Iterator; typedef std::map::size_type SizeType; typedef std::map::value_type Pair; Dictionary() = default; Dictionary(const DictionaryData& other); Dictionary(DictionaryData&& other); Dictionary(std::initializer_list init); Value Get(const String& key) const; bool Get(const String& key, Value *result) const; void Set(const String& key, Value value); bool Contains(const String& key) const; Iterator Begin(); Iterator End(); size_t GetLength() const; void Remove(const String& key); void Remove(Iterator it); void Clear(); void CopyTo(const Dictionary::Ptr& dest) const; Dictionary::Ptr ShallowClone() const; std::vector GetKeys() const; static Object::Ptr GetPrototype(); Object::Ptr Clone() const override; String ToString() const override; Value GetFieldByName(const String& field, bool sandboxed, const DebugInfo& debugInfo) const override; void SetFieldByName(const String& field, const Value& value, const DebugInfo& debugInfo) override; bool HasOwnField(const String& field) const override; bool GetOwnField(const String& field, Value *result) const override; private: std::map m_Data; /**< The data for the dictionary. */ }; Dictionary::Iterator begin(const Dictionary::Ptr& x); Dictionary::Iterator end(const Dictionary::Ptr& x); } extern template class std::map; #endif /* DICTIONARY_H */