forked from Kitware/ParaView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtkCPPythonScriptPipeline.cxx
234 lines (194 loc) · 7.66 KB
/
vtkCPPythonScriptPipeline.cxx
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/*=========================================================================
Program: ParaView
Module: vtkCPPythonScriptPipeline.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkCPPythonScriptPipeline.h"
#include "vtkCPDataDescription.h"
#include "vtkMultiProcessController.h"
#include "vtkObjectFactory.h"
#include "vtkPythonInterpreter.h"
#include <algorithm>
#include <random>
#include <sstream>
#include <string>
#include <vtksys/SystemTools.hxx>
//----------------------------------------------------------------------------
namespace
{
// Generate a random module name for the python script
std::string random_string()
{
std::string str("abcdefghijklmnopqrstuvwxyz");
std::random_device rd;
std::mt19937 generator(rd());
std::shuffle(str.begin(), str.end(), generator);
return str.substr(0, 10);
}
}
vtkStandardNewMacro(vtkCPPythonScriptPipeline);
//----------------------------------------------------------------------------
vtkCPPythonScriptPipeline::vtkCPPythonScriptPipeline()
{
this->PythonScriptName = nullptr;
}
//----------------------------------------------------------------------------
vtkCPPythonScriptPipeline::~vtkCPPythonScriptPipeline()
{
this->SetPythonScriptName(nullptr);
}
//----------------------------------------------------------------------------
int vtkCPPythonScriptPipeline::Initialize(const char* fileName)
{
// only process 0 checks if the file exists and broadcasts that information
// to the other processes
int fileExists = 0;
vtkMultiProcessController* controller = vtkMultiProcessController::GetGlobalController();
if (controller->GetLocalProcessId() == 0)
{
fileExists = vtksys::SystemTools::FileExists(fileName, true);
}
controller->Broadcast(&fileExists, 1, 0);
if (fileExists == 0)
{
vtkErrorMacro("Could not find file " << fileName);
return 0;
}
// for now do not check on filename extension:
// vtksys::SystemTools::GetFilenameLastExtension(FileName) == ".py" == 0)
std::string fileNamePath = vtksys::SystemTools::GetFilenamePath(fileName);
std::string fileNameName = vtksys::SystemTools::GetFilenameWithoutExtension(
vtksys::SystemTools::GetFilenameName(fileName));
// Replace the module name with a random string to avoid illegal syntax
std::string moduleName(::random_string());
// need to save the script name as it is used as the name of the module
this->SetPythonScriptName(moduleName.c_str());
// only process 0 reads the actual script and then broadcasts it out
char* scriptText = nullptr;
// we need to add the script path to PYTHONPATH
char* scriptPath = nullptr;
int rank = controller->GetLocalProcessId();
int scriptSizes[2] = { 0, 0 };
if (rank == 0)
{
std::string line;
std::ifstream myfile(fileName);
std::string desiredString;
if (myfile.is_open())
{
while (getline(myfile, line))
{
this->FixEOL(line);
desiredString.append(line).append("\n");
}
myfile.close();
}
if (fileNamePath.empty())
{
fileNamePath = ".";
}
scriptSizes[0] = static_cast<int>(fileNamePath.size() + 1);
scriptPath = new char[scriptSizes[0]];
memcpy(scriptPath, fileNamePath.c_str(), sizeof(char) * scriptSizes[0]);
scriptSizes[1] = static_cast<int>(desiredString.size() + 1);
scriptText = new char[scriptSizes[1]];
memcpy(scriptText, desiredString.c_str(), sizeof(char) * scriptSizes[1]);
}
controller->Broadcast(scriptSizes, 2, 0);
if (rank != 0)
{
scriptPath = new char[scriptSizes[0]];
scriptText = new char[scriptSizes[1]];
}
controller->Broadcast(scriptPath, scriptSizes[0], 0);
controller->Broadcast(scriptText, scriptSizes[1], 0);
vtkPythonInterpreter::PrependPythonPath(scriptPath);
// The code below creates a module from the scriptText string.
// This requires the manual creation of a module object like this:
//
// import types
// _foo = types.ModuleType('foo')
// _foo.__file__ = 'foo.pyc'
// import sys
// sys.module['foo'] = _foo
// _source= scriptText
// _code = compile(_source, 'foo.py', 'exec')
// exec _code in _foo.__dict__
// del _source
// del _code
// import foo
std::ostringstream loadPythonModules;
loadPythonModules << "import types" << std::endl;
loadPythonModules << "_" << moduleName << " = types.ModuleType('" << moduleName << "')"
<< std::endl;
loadPythonModules << "_" << moduleName << ".__file__ = '" << moduleName << ".pyc'" << std::endl;
loadPythonModules << "import sys" << std::endl;
loadPythonModules << "sys.modules['" << moduleName << "'] = _" << moduleName << std::endl;
loadPythonModules << "_source = \"\"\"" << std::endl;
loadPythonModules << scriptText;
loadPythonModules << "\"\"\"" << std::endl;
loadPythonModules << "_code = compile(_source, \"" << fileNameName << ".py\", \"exec\")"
<< std::endl;
loadPythonModules << "exec(_code, _" << moduleName << ".__dict__)" << std::endl;
loadPythonModules << "del _source" << std::endl;
loadPythonModules << "del _code" << std::endl;
loadPythonModules << moduleName << " = ";
loadPythonModules << "__import__('" << fileNameName << "')" << std::endl;
delete[] scriptPath;
delete[] scriptText;
vtkPythonInterpreter::RunSimpleString(loadPythonModules.str().c_str());
return 1;
}
//----------------------------------------------------------------------------
int vtkCPPythonScriptPipeline::RequestDataDescription(vtkCPDataDescription* dataDescription)
{
if (!dataDescription)
{
vtkWarningMacro("dataDescription is NULL.");
return 0;
}
// check the script to see if it should be run...
vtkStdString dataDescriptionString = this->GetPythonAddress(dataDescription);
std::ostringstream pythonInput;
pythonInput << "dataDescription = vtkPVCatalyst.vtkCPDataDescription('" << dataDescriptionString
<< "')\n"
<< this->PythonScriptName << ".RequestDataDescription(dataDescription)\n";
vtkPythonInterpreter::RunSimpleString(pythonInput.str().c_str());
return dataDescription->GetIfAnyGridNecessary() ? 1 : 0;
}
//----------------------------------------------------------------------------
int vtkCPPythonScriptPipeline::CoProcess(vtkCPDataDescription* dataDescription)
{
if (!dataDescription)
{
vtkWarningMacro("DataDescription is NULL.");
return 0;
}
vtkStdString dataDescriptionString = this->GetPythonAddress(dataDescription);
std::ostringstream pythonInput;
pythonInput << "dataDescription = vtkPVCatalyst.vtkCPDataDescription('" << dataDescriptionString
<< "')\n"
<< this->PythonScriptName << ".DoCoProcessing(dataDescription)\n";
vtkPythonInterpreter::RunSimpleString(pythonInput.str().c_str());
return 1;
}
//----------------------------------------------------------------------------
int vtkCPPythonScriptPipeline::Finalize()
{
std::ostringstream pythonInput;
pythonInput << "if hasattr(" << this->PythonScriptName << ", 'Finalize'):\n"
<< " " << this->PythonScriptName << ".Finalize()\n";
vtkPythonInterpreter::RunSimpleString(pythonInput.str().c_str());
return 1;
}
//----------------------------------------------------------------------------
void vtkCPPythonScriptPipeline::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "PythonScriptName: " << this->PythonScriptName << "\n";
}