2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 06:06:41 -04:00
|
|
|
|
2012-04-18 09:22:25 -04:00
|
|
|
#ifndef DICTIONARY_H
|
|
|
|
|
#define DICTIONARY_H
|
|
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
|
#include "base/object.hpp"
|
|
|
|
|
#include "base/value.hpp"
|
2014-08-25 09:12:39 -04:00
|
|
|
#include <boost/range/iterator.hpp>
|
2013-03-16 16:18:53 -04:00
|
|
|
#include <map>
|
2015-01-29 06:38:25 -05:00
|
|
|
#include <vector>
|
2013-03-16 16:18:53 -04:00
|
|
|
|
2012-04-18 09:22:25 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2018-01-11 05:17:38 -05:00
|
|
|
typedef std::vector<std::pair<String, Value> > DictionaryData;
|
|
|
|
|
|
2012-05-15 04:58:14 -04:00
|
|
|
/**
|
|
|
|
|
* A container that holds key-value pairs.
|
2012-05-18 16:21:28 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup base
|
2012-05-15 04:58:14 -04:00
|
|
|
*/
|
2018-01-04 00:11:04 -05:00
|
|
|
class Dictionary final : public Object
|
2012-04-18 09:22:25 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2014-11-02 18:44:04 -05:00
|
|
|
DECLARE_OBJECT(Dictionary);
|
2012-04-18 09:22:25 -04:00
|
|
|
|
2012-09-19 06:32:39 -04:00
|
|
|
/**
|
|
|
|
|
* An iterator that can be used to iterate over dictionary elements.
|
|
|
|
|
*/
|
2013-03-16 16:18:53 -04:00
|
|
|
typedef std::map<String, Value>::iterator Iterator;
|
2012-08-02 03:38:08 -04:00
|
|
|
|
2014-05-11 00:00:34 -04:00
|
|
|
typedef std::map<String, Value>::size_type SizeType;
|
|
|
|
|
|
2016-08-30 17:01:54 -04:00
|
|
|
typedef std::map<String, Value>::value_type Pair;
|
2013-11-30 11:42:50 -05:00
|
|
|
|
2018-01-11 05:17:38 -05:00
|
|
|
Dictionary() = default;
|
|
|
|
|
Dictionary(const DictionaryData& other);
|
|
|
|
|
Dictionary(DictionaryData&& other);
|
|
|
|
|
Dictionary(std::initializer_list<Pair> init);
|
|
|
|
|
|
2012-08-02 03:38:08 -04:00
|
|
|
Value Get(const String& key) const;
|
2015-03-31 05:45:38 -04:00
|
|
|
bool Get(const String& key, Value *result) const;
|
2018-08-07 07:55:41 -04:00
|
|
|
void Set(const String& key, Value value, bool overrideFrozen = false);
|
2012-08-02 03:38:08 -04:00
|
|
|
bool Contains(const String& key) const;
|
2013-03-01 06:07:52 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
Iterator Begin();
|
|
|
|
|
Iterator End();
|
2012-04-20 07:49:04 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
size_t GetLength() const;
|
2012-05-21 17:42:54 -04:00
|
|
|
|
2018-08-07 07:55:41 -04:00
|
|
|
void Remove(const String& key, bool overrideFrozen = false);
|
2015-03-10 08:45:29 -04:00
|
|
|
|
2018-08-07 07:55:41 -04:00
|
|
|
void Remove(Iterator it, bool overrideFrozen = false);
|
2012-07-09 04:09:53 -04:00
|
|
|
|
2018-08-07 07:55:41 -04:00
|
|
|
void Clear(bool overrideFrozen = false);
|
2015-03-05 14:50:27 -05:00
|
|
|
|
2014-03-20 08:02:02 -04:00
|
|
|
void CopyTo(const Dictionary::Ptr& dest) const;
|
2018-01-03 22:25:35 -05:00
|
|
|
Dictionary::Ptr ShallowClone() const;
|
2012-09-03 04:28:14 -04:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
std::vector<String> GetKeys() const;
|
2015-01-29 06:38:25 -05:00
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
static Object::Ptr GetPrototype();
|
2017-12-13 06:54:14 -05:00
|
|
|
|
2018-01-03 23:12:56 -05:00
|
|
|
Object::Ptr Clone() const override;
|
2014-12-12 09:19:23 -05:00
|
|
|
|
2018-01-03 23:12:56 -05:00
|
|
|
String ToString() const override;
|
2015-10-26 06:05:24 -04:00
|
|
|
|
2018-01-30 06:19:34 -05:00
|
|
|
void Freeze();
|
|
|
|
|
|
2018-01-03 23:12:56 -05:00
|
|
|
Value GetFieldByName(const String& field, bool sandboxed, const DebugInfo& debugInfo) const override;
|
2018-08-07 07:55:41 -04:00
|
|
|
void SetFieldByName(const String& field, const Value& value, bool overrideFrozen, const DebugInfo& debugInfo) override;
|
2018-01-03 23:12:56 -05:00
|
|
|
bool HasOwnField(const String& field) const override;
|
|
|
|
|
bool GetOwnField(const String& field, Value *result) const override;
|
2016-04-18 05:29:43 -04:00
|
|
|
|
2012-05-21 17:42:54 -04:00
|
|
|
private:
|
2013-03-16 16:18:53 -04:00
|
|
|
std::map<String, Value> m_Data; /**< The data for the dictionary. */
|
2018-01-30 06:19:34 -05:00
|
|
|
bool m_Frozen{false};
|
2012-04-18 09:22:25 -04:00
|
|
|
};
|
|
|
|
|
|
2018-01-04 02:54:18 -05:00
|
|
|
Dictionary::Iterator begin(const Dictionary::Ptr& x);
|
|
|
|
|
Dictionary::Iterator end(const Dictionary::Ptr& x);
|
2012-07-16 16:00:50 -04:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-03 00:01:02 -05:00
|
|
|
extern template class std::map<icinga::String, icinga::Value>;
|
2012-07-16 16:00:50 -04:00
|
|
|
|
2012-04-18 09:22:25 -04:00
|
|
|
#endif /* DICTIONARY_H */
|