Yoba Perl
hash_entry.cpp
1 #include "yobaperl/hash_entry.hpp"
2 #include "yobaperl/hash.hpp"
3 
4 namespace yoba {
5 
6 
7 
8 HashEntry::HashEntry(const Hash & hash, HE * he)
9  : _hash(hash),
10  _he(he)
11 {
12 }
13 
15  : _hash(to_copy._hash),
16  _he(to_copy._he)
17 {
18 }
19 
21  : _hash(to_move._hash),
22  _he(to_move._he)
23 {
24 }
25 
26 
27 
28 std::string HashEntry::getKey() const
29 {
30  return std::string(HeKEY(getHE()), HeKLEN(getHE()));
31 }
32 
34 {
35  return Scalar(_hash.getPerl(), HeVAL(getHE()), true);
36 }
37 
38 std::string HashEntry::toString() const
39 {
40  return getKey() + " => " + getValue().toString();
41 }
42 
43 std::pair<std::string, Scalar> HashEntry::toPair() const
44 {
45  return std::make_pair(getKey(), getValue());
46 }
47 
48 
49 
50 HE * HashEntry::getHE() const
51 {
52  YOBAPERL_ASSERT(_he);
53  return _he;
54 }
55 
57 {
58  return HeHASH(getHE());
59 }
60 
61 
62 
63 bool HashEntry::operator== (const HashEntry & other) const
64 {
65  return getHE() == other.getHE();
66 }
67 
68 bool HashEntry::operator!= (const HashEntry & other) const
69 {
70  return !(*this == other);
71 }
72 
73 std::ostream & operator<< (std::ostream & stream, const HashEntry & entry)
74 {
75  return stream << entry.toString();
76 }
77 
78 
79 
80 } // namespace yoba
U32 getHashCode() const
Internal hash code.
Definition: hash_entry.cpp:56
Key-value pair.
Definition: hash_entry.hpp:17
HashEntry(const HashEntry &to_copy)
Copy constructor.
Definition: hash_entry.cpp:14
Definition: array.cpp:5
std::string toString() const
Convert scalar value to C++ string.
Definition: scalar.cpp:74
Perl & getPerl() const
Get Perl instance.
Definition: variable.cpp:46
std::pair< std::string, Scalar > toPair() const
Convert to C++ pair.
Definition: hash_entry.cpp:43
std::string getKey() const
Get key string.
Definition: hash_entry.cpp:28
HE * getHE() const
Raw hash entry.
Definition: hash_entry.cpp:50
Scalar getValue() const
Get value.
Definition: hash_entry.cpp:33
std::string toString() const
Convert to C++ string.
Definition: hash_entry.cpp:38
Scalar reference
Definition: scalar.hpp:24