Yoba Perl
variable.cpp
1 #include "yobaperl/variable.hpp"
2 #include "yobaperl/perl.hpp"
3 
4 namespace yoba {
5 
6 
7 
8 Variable::Variable(Perl & perl, SV * sv, bool increase_refcount)
9  : _perl(perl),
10  _interpreter(perl.getInterpreter()),
11  _sv(sv)
12 {
13  YOBAPERL_ASSERT(sv);
14  if(increase_refcount)
16 }
17 
18 Variable::Variable(const Variable & to_copy)
19  : _perl(to_copy._perl),
20  _interpreter(to_copy._interpreter),
21  _sv(to_copy._sv)
22 {
23  YOBAPERL_ASSERT(to_copy._sv);
25 }
26 
28  : _perl(to_move._perl),
29  _interpreter(to_move._interpreter),
30  _sv(to_move._sv)
31 {
32  YOBAPERL_ASSERT(to_move._sv);
33  to_move._sv = nullptr; // Skip destructor
34 }
35 
37 {
38  if(_sv)
39  {
41  }
42 }
43 
44 
45 
47 {
48  return _perl;
49 }
50 
51 void Variable::setReadOnly(bool state)
52 {
53  state ? SvREADONLY_on(getSV()) : SvREADONLY_off(getSV());
54 }
55 
57 {
58  return SvREADONLY(getSV());
59 }
60 
61 
62 
63 SV * Variable::getSV() const
64 {
65  YOBAPERL_ASSERT(_sv);
66  YOBAPERL_ASSERT(_sv != &PL_sv_undef);
67  return _sv;
68 }
69 
71 {
72  SV * sv = getSV();
73  _sv = nullptr;
74  return sv;
75 }
76 
78 {
79  SV * sv = detachSV();
80  return sv_2mortal(sv);
81 }
82 
84 {
85  return SvREFCNT(getSV());
86 }
87 
89 {
90  SvREFCNT_inc_NN(getSV());
91 }
92 
94 {
95  SvREFCNT_dec_NN(getSV());
96 }
97 
98 void Variable::dump() const
99 {
100  sv_dump(getSV());
101 }
102 
103 
104 
105 bool Variable::operator== (const Variable & other)
106 {
107  return getSV() == other.getSV();
108 }
109 
110 bool Variable::operator!= (const Variable & other)
111 {
112  return !(*this == other);
113 }
114 
115 std::ostream & operator<< (std::ostream & stream, const Variable & var)
116 {
117  return stream << var.toString();
118 }
119 
120 
121 
122 } // namespace yoba
SV * getSV() const
Get raw scalar.
Definition: variable.cpp:63
SV * detachSV()
Nullify object and return SV.
Definition: variable.cpp:70
Definition: array.cpp:5
virtual std::string toString() const =0
Convert to C++ string.
virtual ~Variable()
Destructor.
Definition: variable.cpp:36
Perl & getPerl() const
Get Perl instance.
Definition: variable.cpp:46
void setReadOnly(bool state)
Add/remove readonly flag.
Definition: variable.cpp:51
void dump() const
Dump SV data to stderr.
Definition: variable.cpp:98
bool operator==(const Variable &other)
Compare SV pointers.
Definition: variable.cpp:105
SV * detachMortalSV()
Nullify object and return mortalized SV.
Definition: variable.cpp:77
void increaseRefcount()
Increase SV reference count.
Definition: variable.cpp:88
Base class for perl variables.
Definition: variable.hpp:20
void decreaseRefcount()
Decrease SV reference count.
Definition: variable.cpp:93
Main class.
Definition: perl.hpp:32
Variable(Perl &perl, SV *sv, bool increase_refcount)
Constructor.
Definition: variable.cpp:8
U32 getRefcount() const
Get SV reference count.
Definition: variable.cpp:83
bool isReadOnly() const
Check if SV has readonly flag.
Definition: variable.cpp:56
friend std::ostream & operator<<(std::ostream &stream, const Variable &var)
Operator for streams.
Definition: variable.cpp:115