forked from Kitware/ParaView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtkCPPythonPipeline.cxx
112 lines (97 loc) · 3.46 KB
/
vtkCPPythonPipeline.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
/*=========================================================================
Program: ParaView
Module: vtkCPPythonPipeline.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 "vtkCPPythonPipeline.h"
#include "vtkPythonInterpreter.h"
#include <sstream>
extern "C" {
void vtkPVInitializePythonModules();
}
//----------------------------------------------------------------------------
namespace
{
void CatalystInitializePython()
{
static bool initialized = false;
if (initialized)
{
return;
}
initialized = true;
// register callback to initialize modules statically. The callback is
// empty when BUILD_SHARED_LIBS is ON.
vtkPVInitializePythonModules();
vtkPythonInterpreter::Initialize();
std::ostringstream loadPythonModules;
loadPythonModules << "import sys\n"
<< "import paraview\n"
<< "f1 = paraview.print_error\n"
<< "f2 = paraview.print_debug_info\n"
<< "def print_dummy(text):\n"
<< " pass\n"
<< "paraview.print_error = print_dummy\n"
<< "paraview.print_debug_info = print_dummy\n"
// we now import stuff that have warnings or errors that we know are bad
// when we're in a Catalyst edition. This fixes #18248.
<< "import paraview.servermanager\n"
<< "paraview.print_error = f1\n"
<< "paraview.print_debug_info = f2\n"
<< "from paraview.modules import vtkPVCatalyst\n";
vtkPythonInterpreter::RunSimpleString(loadPythonModules.str().c_str());
}
}
//----------------------------------------------------------------------------
vtkCPPythonPipeline::vtkCPPythonPipeline()
{
CatalystInitializePython();
}
//----------------------------------------------------------------------------
vtkCPPythonPipeline::~vtkCPPythonPipeline()
{
}
//----------------------------------------------------------------------------
void vtkCPPythonPipeline::FixEOL(std::string& str)
{
const std::string from = "\\n";
const std::string to = "\\\\n";
size_t start_pos = 0;
while ((start_pos = str.find(from, start_pos)) != std::string::npos)
{
str.replace(start_pos, from.length(), to);
start_pos += to.length();
}
// sanitize triple quotes while we are at it
const std::string from2 = "\"\"\"";
const std::string to2 = "'''";
start_pos = 0;
while ((start_pos = str.find(from2, start_pos)) != std::string::npos)
{
str.replace(start_pos, from2.length(), to2);
start_pos += to.length();
}
return;
}
//----------------------------------------------------------------------------
std::string vtkCPPythonPipeline::GetPythonAddress(void* pointer)
{
char addressOfPointer[1024];
#ifdef COPROCESSOR_WIN32_BUILD
sprintf_s(addressOfPointer, "%p", pointer);
#else
sprintf(addressOfPointer, "%p", pointer);
#endif
char* aplus = addressOfPointer;
if ((addressOfPointer[0] == '0') && ((addressOfPointer[1] == 'x') || addressOfPointer[1] == 'X'))
{
aplus += 2; // skip over "0x"
}
std::string value = aplus;
return value;
}