1 #include "yobaperl/variable.hpp" 2 #include "yobaperl/perl.hpp" 10 _interpreter(perl.getInterpreter()),
19 : _perl(to_copy._perl),
20 _interpreter(to_copy._interpreter),
23 YOBAPERL_ASSERT(to_copy._sv);
28 : _perl(to_move._perl),
29 _interpreter(to_move._interpreter),
32 YOBAPERL_ASSERT(to_move._sv);
33 to_move._sv =
nullptr;
53 state ? SvREADONLY_on(
getSV()) : SvREADONLY_off(
getSV());
58 return SvREADONLY(
getSV());
66 YOBAPERL_ASSERT(_sv != &PL_sv_undef);
80 return sv_2mortal(sv);
85 return SvREFCNT(
getSV());
90 SvREFCNT_inc_NN(
getSV());
95 SvREFCNT_dec_NN(
getSV());
110 bool Variable::operator!= (
const Variable & other)
112 return !(*
this == other);
SV * getSV() const
Get raw scalar.
SV * detachSV()
Nullify object and return SV.
virtual std::string toString() const =0
Convert to C++ string.
virtual ~Variable()
Destructor.
Perl & getPerl() const
Get Perl instance.
void setReadOnly(bool state)
Add/remove readonly flag.
void dump() const
Dump SV data to stderr.
bool operator==(const Variable &other)
Compare SV pointers.
SV * detachMortalSV()
Nullify object and return mortalized SV.
void increaseRefcount()
Increase SV reference count.
Base class for perl variables.
void decreaseRefcount()
Decrease SV reference count.
Variable(Perl &perl, SV *sv, bool increase_refcount)
Constructor.
U32 getRefcount() const
Get SV reference count.
bool isReadOnly() const
Check if SV has readonly flag.
friend std::ostream & operator<<(std::ostream &stream, const Variable &var)
Operator for streams.