Yoba Perl
perl.hpp
1 #ifndef YOBAPERL_PERL_HPP
2 #define YOBAPERL_PERL_HPP
3 
4 #include "yobaperl/common.hpp"
5 #include "yobaperl/variable.hpp"
6 #include "yobaperl/scalar.hpp"
7 #include "yobaperl/array.hpp"
8 #include "yobaperl/hash.hpp"
9 #include "yobaperl/code.hpp"
10 #include "yobaperl/perl_exception.hpp"
11 #include "yobaperl/perl_stack.hpp"
12 #include "yobaperl/callbacks.hpp"
13 #include "yobaperl/pointer.hpp"
14 
15 namespace yoba {
16 
17 
18 
24 
25 
26 
27 //TODO perl_clone
32 class YOBAPERL_EXPORT Perl
33 {
34  friend class Scalar;
35  friend class Array;
36  friend class Hash;
37 
38 public:
39 
40 
41 
48  Perl(bool do_init = true);
49 
54  Perl(Perl && to_move);
55 
60  ~Perl();
61 
62 
63 
65 
70  Scalar newScalar();
71 
78  Scalar newNamedScalar(const std::string & name);
79 
86  template<typename ValueT>
87  Scalar newScalar(const ValueT & value);
88 
97  template<typename ValueT> Scalar newNamedScalar(const std::string & name, const ValueT & value);
98 
105  Array newArray();
106 
113  Array newArray(IV begin, IV end);
121  Array newNamedArray(const std::string & name);
122 
129  Array newNamedArray(const std::string & name, IV begin, IV end);
130 
139  template<typename ValueT>
140  Array newArray(const std::vector<ValueT> & values);
141  template<typename ValueT>
142  Array newArray(const std::initializer_list<ValueT> & values);
143 
152  template<typename ValueT>
153  Array newNamedArray(const std::string & name, const std::vector<ValueT> & values);
154  template<typename ValueT>
155  Array newNamedArray(const std::string & name, const std::initializer_list<ValueT> & values);
156 
163  Hash newHash();
164 
171  Hash newNamedHash(const std::string & name);
172 
179  template<typename ValueT>
180  Hash newHash(const std::unordered_map<std::string, ValueT> & map);
181 
188  template<typename ValueT>
189  Hash newNamedHash(const std::string & name, const std::unordered_map<std::string, ValueT> & map);
190 
197  Scalar newObject(const std::string & class_name);
198 
205  Scalar newObject(const std::string & class_name, const Scalar & param);
206 
213  Scalar newObject(const std::string & class_name, const Array & params);
214 
216 
217 
218 
220 
229  Scalar getScalar(const std::string & name);
230 
239  Array getArray(const std::string & name);
240 
249  Hash getHash(const std::string & name);
250 
259  Code getSubroutine(const std::string & name);
260 
267  Code getMethod(const std::string & name);
268 
277  ScalarPtr getScalarPtr(const std::string & name);
278 
287  ArrayPtr getArrayPtr(const std::string & name);
288 
297  HashPtr getHashPtr(const std::string & name);
298 
307  CodePtr getSubroutinePtr(const std::string & name);
308 
310 
311 
312 
314 
334  template<typename ReturnT = void>
335  ReturnT eval(const std::string & code);
336 
367  template<typename ReturnT, typename ParamT>
368  ReturnT call(const std::string & sub_name, const ParamT & param);
369  template<typename ReturnT = void>
370  ReturnT call(const std::string & sub_name);
371  template<typename ReturnT, typename ParamT>
372  ReturnT call(const Code & subroutine, const ParamT & param);
373  template<typename ReturnT = void>
374  ReturnT call(const Code & subroutine);
375 
376 
386  template<typename ReturnT, typename ParamT>
387  ReturnT callMethod(const std::string & sub_name, const Scalar & object, const ParamT & param);
388  template<typename ReturnT = void>
389  ReturnT callMethod(const std::string & sub_name, const Scalar & object);
390  template<typename ReturnT, typename ParamT>
391  ReturnT callMethod(const Code & subroutine, const Scalar & object, const ParamT & param);
392  template<typename ReturnT = void>
393  ReturnT callMethod(const Code & subroutine, const Scalar & object);
394 
396 
397 
398 
400 
401  Perl & registerVoidToVoid(const std::string & name, priv::Callbacks::VoidToVoidCB function);
402  Perl & registerVoidToScalar(const std::string & name, priv::Callbacks::VoidToScalarCB function);
403  Perl & registerScalarToVoid(const std::string & name, priv::Callbacks::ScalarToVoidCB function);
404  Perl & registerScalarToScalar(const std::string & name, priv::Callbacks::ScalarToScalarCB function);
405  CV * registerStatic(const std::string & sub_name, XSUBADDR_t function);
406 
408 
409 
410 
412 
419  Perl & init();
420 
427  Perl & lib(const std::string & path);
428 
437  Perl & use(const std::string & name);
438 
445  Perl & no(const std::string & name);
446 
459  Perl & require(const std::string & name);
460 
465  Perl & setExceptionsEnabled(bool state);
466 
471  Perl & setWarningsEnabled(bool state);
472 
479  bool hasError() const;
480  std::string getError() const;
481 
483 
484 
485 
487 
494  int getId() const;
495 
500  PerlInterpreter * getInterpreter() const;
501 
508  SV * getNamedSV(const std::string & name) const;
509 
516  AV * getNamedAV(const std::string & name) const;
517 
524  HV * getNamedHV(const std::string & name) const;
525 
532  CV * getNamedCV(const std::string & name) const;
533 
538  std::string deparse(const Code & code);
539 
546  Perl & setContext();
547 
549 
550 
551 
553 
567  VariablePtr operator[] (std::string query);
568 
570 
571 
572 
577  static Perl & getInstanceById(int perl_id);
578 
585  static Perl & getInstance(PerlInterpreter * _interpreter);
586 
587 
588 
589  bool isExceptionsEnabled() const;
590  bool isWarningsEnabled() const;
591  priv::Callbacks & getCallbacks();
592 
593 protected:
594  SV * _createSV(STRLEN size = 0);
595  AV * _createAV(SSize_t size = 0, SV ** elements = nullptr);
596  HV * _createHV();
597  SV * _getOrCreateNamedSV(const std::string & name) const;
598  AV * _getOrCreateNamedAV(const std::string & name) const;
599  HV * _getOrCreateNamedHV(const std::string & name) const;
600  SV * _getNamedSV(const std::string & name) const;
601  AV * _getNamedAV(const std::string & name) const;
602  HV * _getNamedHV(const std::string & name) const;
603  CV * _getNamedCV(const std::string & name) const;
604 
605 private:
606  PerlInterpreter * _interpreter = nullptr;
607  int _id;
608  static int _last_id;
609  static std::vector<Perl *> _perls;
610 
611  bool _is_system_initialized = false;
612  bool _is_exceptions_enabled = true;
613  bool _is_warnings_enabled = false;
614 
615  ScalarPtr _code_deparser;
616  priv::Callbacks _callbacks;
617 };
618 
619 #include "yobaperl/perl.tpp"
620 
621 
622 
623 } // namespace yoba
624 
625 #endif // YOBAPERL_PERL_HPP
Array reference
Definition: array.hpp:26
Definition: array.cpp:5
Hash reference
Definition: hash.hpp:22
Hash newHash(const std::unordered_map< std::string, ValueT > &map)
Create anonymous hash and fill.
Definition: perl.hpp:114
Main class.
Definition: perl.hpp:32
Subroutine reference
Definition: code.hpp:15
Scalar reference
Definition: scalar.hpp:24