1 #include "yobaperl/hash.hpp" 2 #include "yobaperl/perl.hpp" 3 #include "yobaperl/scalar.hpp" 10 :
Variable(perl, reinterpret_cast<SV *>(hv), increase_refcount)
18 return HvUSEDKEYS(
getHV());
28 return hv_exists(
getHV(), key.c_str(), key.length());
35 SV ** elements = hv_fetch(
getHV(), key.c_str(), key.length(), NULL);
36 YOBAPERL_ASSERT(elements);
38 SV * element = *elements;
39 YOBAPERL_ASSERT(element);
41 return Scalar(_perl, element,
true);
45 std::string error =
"Hash entry not exists (key: " + key +
")";
47 if(_perl.isExceptionsEnabled())
50 if(_perl.isWarningsEnabled())
51 warn(
"%s", error.c_str());
59 _store(key, value.
getSV());
65 insert(pair.first, pair.second);
71 for(
auto it = hashmap.cbegin(); it != hashmap.cend(); it++)
72 insert(it->first, it->second);
80 SV * result = hv_delete(
getHV(), key.c_str(),
static_cast<U32
>(key.length()), 0);
81 YOBAPERL_ASSERT(result);
82 return Scalar(_perl, result,
true);
86 std::string error =
"Hash entry not exists (key: " + key +
")";
88 if(_perl.isExceptionsEnabled())
91 if(_perl.isWarningsEnabled())
92 warn(
"%s", error.c_str());
106 std::stringstream ss;
125 std::unordered_map<std::string, Scalar> result;
131 result.insert((*it).toPair());
140 return Scalar(_perl, newRV_inc(MUTABLE_SV(
getHV())),
false);
167 return reinterpret_cast<HV *
>(
getSV());
172 Hash::operator bool()
const 179 return Scalar(_perl, *hv_fetch(
getHV(), key.c_str(), key.length(), NULL),
true);
184 return (*
this)[std::string(key)];
189 void Hash::_store(
const std::string & key, SV * value)
191 SvREFCNT_inc_NN(value);
192 hv_store(
getHV(), key.c_str(), key.length(), value, 0);
195 I32 Hash::_interInit()
const 197 return hv_iterinit(
getHV());
200 HE * Hash::_interNext()
const 202 return hv_iternext(
getHV());
SV * getSV() const
Get raw scalar.
Hash makeCopy() const
Copy each element to new hash.
Scalar get(const std::string &key)
Fetch element.
std::string toString() const
Convert to C++ string.
Hash(Perl &perl, HV *hv, bool increase_refcount)
Constructor.
Hash & clear()
Remove all elements.
bool isExists(const std::string &key) const
Check element exists.
std::string getKey() const
Get key string.
Hash & insert(const std::string &key, const Scalar &value)
Add element.
HashIterator Iterator
Type alias.
bool isEmpty() const
Check if hash is empty.
Scalar makeCopy() const
Create copy.
Scalar makeRef() const
Take reference.
Base class for perl variables.
Scalar newScalar()
Create anonymous empty scalar.
HV * getHV() const
Raw hash.
Scalar getValue() const
Get value.
int getId() const
Perl object id.
Iterator begin() const
Forward iterator.
std::unordered_map< std::string, Scalar > toMap() const
Convert to C++ hash map.
Scalar remove(const std::string &key)
Remove element and return.
I32 getSize() const
Elements count.
Scalar operator[](const std::string &key) noexcept
Unsafe version of get()
Hash newHash()
Create anonymous empty hash.