1 #ifndef YOBAPERL_PERL_HPP 2 #define YOBAPERL_PERL_HPP 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" 48 Perl(
bool do_init =
true);
78 Scalar newNamedScalar(
const std::string & name);
86 template<
typename ValueT>
87 Scalar newScalar(
const ValueT & value);
97 template<
typename ValueT>
Scalar newNamedScalar(
const std::string & name,
const ValueT & value);
113 Array newArray(IV begin, IV end);
121 Array newNamedArray(
const std::string & name);
129 Array newNamedArray(
const std::string & name, IV begin, IV end);
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);
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);
171 Hash newNamedHash(
const std::string & name);
179 template<
typename ValueT>
180 Hash newHash(
const std::unordered_map<std::string, ValueT> & map);
188 template<
typename ValueT>
189 Hash newNamedHash(
const std::string & name,
const std::unordered_map<std::string, ValueT> & map);
197 Scalar newObject(
const std::string & class_name);
205 Scalar newObject(
const std::string & class_name,
const Scalar & param);
213 Scalar newObject(
const std::string & class_name,
const Array & params);
229 Scalar getScalar(
const std::string & name);
239 Array getArray(
const std::string & name);
249 Hash getHash(
const std::string & name);
259 Code getSubroutine(
const std::string & name);
267 Code getMethod(
const std::string & name);
277 ScalarPtr getScalarPtr(
const std::string & name);
287 ArrayPtr getArrayPtr(
const std::string & name);
297 HashPtr getHashPtr(
const std::string & name);
307 CodePtr getSubroutinePtr(
const std::string & name);
334 template<
typename ReturnT =
void>
335 ReturnT eval(
const std::string & code);
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);
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);
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);
427 Perl & lib(
const std::string & path);
437 Perl & use(
const std::string & name);
445 Perl & no(
const std::string & name);
459 Perl & require(
const std::string & name);
465 Perl & setExceptionsEnabled(
bool state);
471 Perl & setWarningsEnabled(
bool state);
479 bool hasError()
const;
480 std::string getError()
const;
500 PerlInterpreter * getInterpreter()
const;
508 SV * getNamedSV(
const std::string & name)
const;
516 AV * getNamedAV(
const std::string & name)
const;
524 HV * getNamedHV(
const std::string & name)
const;
532 CV * getNamedCV(
const std::string & name)
const;
538 std::string deparse(
const Code & code);
577 static Perl & getInstanceById(
int perl_id);
585 static Perl & getInstance(PerlInterpreter * _interpreter);
589 bool isExceptionsEnabled()
const;
590 bool isWarningsEnabled()
const;
591 priv::Callbacks & getCallbacks();
594 SV * _createSV(STRLEN size = 0);
595 AV * _createAV(SSize_t size = 0, SV ** elements =
nullptr);
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;
606 PerlInterpreter * _interpreter =
nullptr;
609 static std::vector<Perl *> _perls;
611 bool _is_system_initialized =
false;
612 bool _is_exceptions_enabled =
true;
613 bool _is_warnings_enabled =
false;
616 priv::Callbacks _callbacks;
619 #include "yobaperl/perl.tpp" 625 #endif // YOBAPERL_PERL_HPP
Hash newHash(const std::unordered_map< std::string, ValueT > &map)
Create anonymous hash and fill.