Yoba Perl
variable.hpp
1 #ifndef YOBAPERL_VARIABLE_HPP
2 #define YOBAPERL_VARIABLE_HPP
3 
4 #include "yobaperl/common.hpp"
5 
6 namespace yoba {
7 
8 class Perl;
9 class Scalar;
10 class Array;
11 class Hash;
12 class Code;
13 
14 
15 
20 class YOBAPERL_EXPORT Variable
21 {
22 public:
23 
24 
25 
30  Variable(Perl & perl, SV * sv, bool increase_refcount);
31 
38  Variable(const Variable & to_copy);
39 
46  Variable(Variable && to_move);
47 
54  virtual ~Variable();
55 
56 
57 
59 
64  virtual std::string toString() const = 0;
65 
70  void setReadOnly(bool state);
71 
76  bool isReadOnly() const;
77 
82  Perl & getPerl() const;
83 
85 
86 
87 
89 
94  SV * getSV() const;
95 
102  SV * detachSV();
103 
110  SV * detachMortalSV();
111 
116  U32 getRefcount() const;
117 
122  void increaseRefcount();
123 
128  void decreaseRefcount();
129 
134  void dump() const;
135 
137 
138 
139 
141 
146  bool operator== (const Variable & other);
147  bool operator!= (const Variable & other);
148 
155  friend std::ostream & operator<< (std::ostream & stream, const Variable & var);
156 
158 
159 
160 
161 protected:
162  Perl & _perl;
163  PerlInterpreter * _interpreter = nullptr;
164  SV * _sv = nullptr; // Can be SV, AV, HV, CV
165 };
166 
167 
168 
169 } // namespace yoba
170 
171 #endif // YOBAPERL_VARIABLE_HPP
Definition: array.cpp:5
Base class for perl variables.
Definition: variable.hpp:20
Main class.
Definition: perl.hpp:32