-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylingual.hpp
111 lines (91 loc) · 2.74 KB
/
pylingual.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#ifndef __PYLINGUAL_HPP__
#define __PYLINGUAL_HPP__
#include<vector>
#include<iostream>
#include<algorithm>
#include<iterator>
#include<string>
#include<map>
#include <boost/python.hpp>
#include <Python.h>
#include <converters.hpp>
#include <error_handle.hpp>
#include <pylingual_exception.hpp>
using namespace std;
//class pylingual_exception;
class pylingual {
public:
pylingual();
~pylingual() { ; }
template<typename T>
void Register(const char* varname, T&& var) {
main_module.attr(varname) = var;
}
template<typename... Args>
void function(const char* pyname, Args&&... args) {
if (functions.count(pyname)>0) {
functions[pyname](std::forward<Args>(args)...);
} else {
throw pylingual_unregistered();
}
}
template<typename T>
boost::python::object VecToList(vector<T> _vec){
Vector_to_python_list<T> Converter;
auto List = Converter.convert(_vec);
boost::python::object ListObj(handle<>(boost::python::borrowed(List)));
return ListObj;
}
template<typename T>
vector<T> ListToVec(boost::python::object _list){
vector<T> Vec;
for (int i=0;i<len(_list);i++) {
Vec.push_back(extract<T>(_list[i]));
}
return Vec;
}
template<typename T>
T get(const char* var_to_extract) {
return extract<T>(main_module.attr(var_to_extract));
}
template<typename T>
void call(const char* code_to_execute,char* var_to_extract,vector<T> &output) {
exec(code_to_execute,main_namespace);
auto buffer = main_module.attr(var_to_extract);
output = ListToVec<T>(buffer);
}
void call(const char* code_to_execute) {
exec(code_to_execute,main_namespace);
}
void import(const char* module, const char* function) {
if (modules.count(module)>0){
auto imported_function = modules[module].attr(function);
functions[function] = imported_function;
}else {
auto python_module = boost::python::import(module);
auto imported_function = python_module.attr(function);
modules[module] = python_module;
functions[function] = imported_function;
}
}
private:
boost::python::object module;
boost::python::object main_module;
boost::python::object main_namespace;
boost::python::object built_in;
map<const char*,boost::python::object> modules;
map<const char*,boost::python::object> functions;
};
pylingual::pylingual() {
PyImport_AppendInittab("std", &initstd);
Py_Initialize();
// See PyImport_AppendInittab // BOOST_PYTHON_MODULE
module = boost::python::import("std");
modules["std"]=module;
main_module = boost::python::import("__main__");
modules["__main__"]=main_module;
main_namespace = main_module.attr("__dict__");
built_in = boost::python::import("__builtin__");
modules["__builtin__"]=built_in;
}
#endif