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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
#include "python_udf.h"
#include "python_function_factory.h"
#include <yql/essentials/public/udf/udf_version.h>
#include <yql/essentials/udfs/common/python/bindings/py_utils.h>
#include <util/generic/vector.h>
#include <util/system/execpath.h>
namespace {
#if PY_MAJOR_VERSION >= 3
#define PYTHON_PROGRAMM_NAME L"YQL::Python3"
#else
#define PYTHON_PROGRAMM_NAME "YQL::Python2"
#endif
int AddToPythonPath(const TVector<TStringBuf>& pathVals)
{
char pathVar[] = "path"; // PySys_{Get,Set}Object take a non-const char* arg
TPyObjectPtr sysPath(PySys_GetObject(pathVar), TPyObjectPtr::ADD_REF);
if (!sysPath) return -1;
for (const auto& val: pathVals) {
TPyObjectPtr pyStr = PyRepr(val.data());
int rc = PyList_Append(sysPath.Get(), pyStr.Get());
if (rc != 0) {
return rc;
}
}
return PySys_SetObject(pathVar, sysPath.Get());
}
void InitArcadiaPythonRuntime()
{
// Arcadia static python import hook resides in __res module
// It modifies sys.meta_path upon import
TPyObjectPtr mod(PyImport_ImportModule("__res"));
Y_ABORT_UNLESS(mod, "Can't import arcadia python runtime");
}
//////////////////////////////////////////////////////////////////////////////
// TPythonModule
//////////////////////////////////////////////////////////////////////////////
class TPythonModule: public IUdfModule
{
public:
TPythonModule(const TString& resourceName, EPythonFlavor pythonFlavor, bool standalone = true)
: ResourceName(resourceName), Standalone(standalone)
{
if (Standalone) {
Py_SetProgramName(PYTHON_PROGRAMM_NAME);
PrepareYqlModule();
Py_Initialize();
}
InitYqlModule(pythonFlavor, standalone);
const auto rc = PyRun_SimpleString(STANDART_STREAM_PROXY_INJECTION_SCRIPT);
Y_ABORT_UNLESS(rc >= 0, "Can't setup module");
if (pythonFlavor == EPythonFlavor::Arcadia) {
InitArcadiaPythonRuntime();
}
#ifndef _win_
if (Standalone) {
TVector<TStringBuf> paths;
if (pythonFlavor == EPythonFlavor::System) {
paths.push_back(TStringBuf("/usr/lib/python2.7/dist-packages"));
}
paths.push_back(TStringBuf("."));
const auto r = AddToPythonPath(paths);
Y_ABORT_UNLESS(r >= 0, "Can't add dist-packages into sys.path");
}
#endif
char executableVar[] = "executable"; // PySys_{Get,Set}Object take a non-const char* arg
TPyObjectPtr pyExecutableStr = PyRepr(GetExecPath().data());
Y_ABORT_UNLESS(PySys_SetObject(executableVar, pyExecutableStr.Get()) >= 0, "Can't set sys.executable");
if (Standalone) {
PyEval_InitThreads();
MainThreadState_ = PyEval_SaveThread();
}
}
~TPythonModule() {
if (Standalone) {
PyEval_RestoreThread(MainThreadState_);
Py_Finalize();
}
}
void CleanupOnTerminate() const final {
PyCleanup();
}
void GetAllFunctions(IFunctionsSink&) const final {}
void BuildFunctionTypeInfo(
const TStringRef& name,
TType* userType,
const TStringRef& typeConfig,
ui32 flags,
IFunctionTypeInfoBuilder& builder) const final
{
Y_UNUSED(typeConfig);
if (flags & TFlags::TypesOnly) {
return;
}
try {
auto typeHelper = builder.TypeInfoHelper();
if (ETypeKind::Callable != typeHelper->GetTypeKind(userType)) {
return builder.SetError(TStringRef::Of("Expected callable type"));
}
const auto pos = builder.GetSourcePosition();
builder.Implementation(new TPythonFunctionFactory(name, ResourceName, userType, std::move(typeHelper), pos));
} catch (const yexception& e) {
builder.SetError(TStringBuf(e.what()));
}
}
private:
TString ResourceName;
bool Standalone;
PyThreadState* MainThreadState_;
};
//////////////////////////////////////////////////////////////////////////////
// TStubModule
//////////////////////////////////////////////////////////////////////////////
class TStubModule: public IUdfModule {
void GetAllFunctions(IFunctionsSink&) const final {}
void BuildFunctionTypeInfo(
const TStringRef& /*name*/,
TType* /*userType*/,
const TStringRef& /*typeConfig*/,
ui32 flags,
IFunctionTypeInfoBuilder& /*builder*/) const final
{
Y_DEBUG_ABORT_UNLESS(flags & TFlags::TypesOnly,
"in stub module this function can be called only for types loading");
}
void CleanupOnTerminate() const final {}
};
} // namespace
void NKikimr::NUdf::RegisterYqlPythonUdf(
IRegistrator& registrator,
ui32 flags,
TStringBuf moduleName,
TStringBuf resourceName,
EPythonFlavor pythonFlavor)
{
if (flags & IRegistrator::TFlags::TypesOnly) {
registrator.AddModule(moduleName, new TStubModule);
} else {
registrator.AddModule(
moduleName,
NKikimr::NUdf::GetYqlPythonUdfModule(resourceName, pythonFlavor, true)
);
}
}
TUniquePtr<NKikimr::NUdf::IUdfModule> NKikimr::NUdf::GetYqlPythonUdfModule(
TStringBuf resourceName, NKikimr::NUdf::EPythonFlavor pythonFlavor,
bool standalone
) {
return new TPythonModule(TString(resourceName), pythonFlavor, standalone);
}
|