123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- #include "dictionary.h"
- #include "core/ordered_hash_map.h"
- #include "core/safe_refcount.h"
- #include "core/variant.h"
- struct DictionaryPrivate {
- SafeRefCount refcount;
- OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator> variant_map;
- };
- void Dictionary::get_key_list(List<Variant> *p_keys) const {
- if (_p->variant_map.empty())
- return;
- for (OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator>::Element E = _p->variant_map.front(); E; E = E.next()) {
- p_keys->push_back(E.key());
- }
- }
- Variant Dictionary::get_key_at_index(int p_index) const {
- int index = 0;
- for (OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator>::Element E = _p->variant_map.front(); E; E = E.next()) {
- if (index == p_index) {
- return E.key();
- }
- index++;
- }
- return Variant();
- }
- Variant Dictionary::get_value_at_index(int p_index) const {
- int index = 0;
- for (OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator>::Element E = _p->variant_map.front(); E; E = E.next()) {
- if (index == p_index) {
- return E.value();
- }
- index++;
- }
- return Variant();
- }
- Variant &Dictionary::operator[](const Variant &p_key) {
- return _p->variant_map[p_key];
- }
- const Variant &Dictionary::operator[](const Variant &p_key) const {
- return _p->variant_map[p_key];
- }
- const Variant *Dictionary::getptr(const Variant &p_key) const {
- OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator>::ConstElement E = ((const OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator> *)&_p->variant_map)->find(p_key);
- if (!E)
- return NULL;
- return &E.get();
- }
- Variant *Dictionary::getptr(const Variant &p_key) {
- OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator>::Element E = _p->variant_map.find(p_key);
- if (!E)
- return NULL;
- return &E.get();
- }
- Variant Dictionary::get_valid(const Variant &p_key) const {
- OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator>::ConstElement E = ((const OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator> *)&_p->variant_map)->find(p_key);
- if (!E)
- return Variant();
- return E.get();
- }
- Variant Dictionary::get(const Variant &p_key, const Variant &p_default) const {
- const Variant *result = getptr(p_key);
- if (!result) {
- return p_default;
- }
- return *result;
- }
- int Dictionary::size() const {
- return _p->variant_map.size();
- }
- bool Dictionary::empty() const {
- return !_p->variant_map.size();
- }
- bool Dictionary::has(const Variant &p_key) const {
- return _p->variant_map.has(p_key);
- }
- bool Dictionary::has_all(const Array &p_keys) const {
- for (int i = 0; i < p_keys.size(); i++) {
- if (!has(p_keys[i])) {
- return false;
- }
- }
- return true;
- }
- bool Dictionary::erase(const Variant &p_key) {
- return _p->variant_map.erase(p_key);
- }
- bool Dictionary::operator==(const Dictionary &p_dictionary) const {
- return _p == p_dictionary._p;
- }
- bool Dictionary::operator!=(const Dictionary &p_dictionary) const {
- return _p != p_dictionary._p;
- }
- void Dictionary::_ref(const Dictionary &p_from) const {
-
- if (!p_from._p->refcount.ref())
- return;
-
- if (p_from._p == _p) {
- _p->refcount.unref();
- return;
- }
- if (_p)
- _unref();
- _p = p_from._p;
- }
- void Dictionary::clear() {
- _p->variant_map.clear();
- }
- void Dictionary::_unref() const {
- ERR_FAIL_COND(!_p);
- if (_p->refcount.unref()) {
- memdelete(_p);
- }
- _p = NULL;
- }
- uint32_t Dictionary::hash() const {
- uint32_t h = hash_djb2_one_32(Variant::DICTIONARY);
- List<Variant> keys;
- get_key_list(&keys);
- for (List<Variant>::Element *E = keys.front(); E; E = E->next()) {
- h = hash_djb2_one_32(E->get().hash(), h);
- h = hash_djb2_one_32(operator[](E->get()).hash(), h);
- }
- return h;
- }
- Array Dictionary::keys() const {
- Array varr;
- varr.resize(size());
- if (_p->variant_map.empty())
- return varr;
- int i = 0;
- for (OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator>::Element E = _p->variant_map.front(); E; E = E.next()) {
- varr[i] = E.key();
- i++;
- }
- return varr;
- }
- Array Dictionary::values() const {
- Array varr;
- varr.resize(size());
- if (_p->variant_map.empty())
- return varr;
- int i = 0;
- for (OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator>::Element E = _p->variant_map.front(); E; E = E.next()) {
- varr[i] = E.get();
- i++;
- }
- return varr;
- }
- const Variant *Dictionary::next(const Variant *p_key) const {
- if (p_key == NULL) {
-
- if (_p->variant_map.front())
- return &_p->variant_map.front().key();
- return NULL;
- }
- OrderedHashMap<Variant, Variant, VariantHasher, VariantComparator>::Element E = _p->variant_map.find(*p_key);
- if (E && E.next())
- return &E.next().key();
- return NULL;
- }
- Dictionary Dictionary::duplicate(bool p_deep) const {
- Dictionary n;
- List<Variant> keys;
- get_key_list(&keys);
- for (List<Variant>::Element *E = keys.front(); E; E = E->next()) {
- n[E->get()] = p_deep ? operator[](E->get()).duplicate(p_deep) : operator[](E->get());
- }
- return n;
- }
- void Dictionary::operator=(const Dictionary &p_dictionary) {
- _ref(p_dictionary);
- }
- Dictionary::Dictionary(const Dictionary &p_from) {
- _p = NULL;
- _ref(p_from);
- }
- Dictionary::Dictionary() {
- _p = memnew(DictionaryPrivate);
- _p->refcount.init();
- }
- Dictionary::~Dictionary() {
- _unref();
- }
|