forked from Kitware/ParaView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpqPythonShell.cxx
632 lines (553 loc) · 18.2 KB
/
pqPythonShell.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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
/*=========================================================================
Program: ParaView
Module: pqPythonShell.cxx
Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
All rights reserved.
ParaView is a free software; you can redistribute it and/or modify it
under the terms of the ParaView license version 1.2.
See License_v1.2.txt for the full ParaView license.
A copy of this license can be obtained by contacting
Kitware Inc.
28 Corporate Drive
Clifton Park, NY 12065
USA
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/
// Include vtkPython.h first to avoid python??_d.lib not found linking error on
// Windows debug builds.
#include "vtkPython.h"
#include "pqPythonShell.h"
#include "ui_pqPythonShell.h"
#include "pqApplicationCore.h"
#include "pqConsoleWidget.h"
#include "pqFileDialog.h"
#include "pqUndoStack.h"
#include "vtkCommand.h"
#include "vtkNew.h"
#include "vtkObjectFactory.h"
#include "vtkPVOptions.h"
#include "vtkPythonCompatibility.h"
#include "vtkPythonInteractiveInterpreter.h"
#include "vtkPythonInterpreter.h"
#include "vtkSmartPointer.h"
#include "vtkStdString.h"
#include "vtkStringOutputWindow.h"
#include "vtkWeakPointer.h"
#include <QAbstractItemView>
#include <QApplication>
#include <QCursor>
#include <QFile>
#include <QInputDialog>
#include <QPointer>
#include <QStringListModel>
#include <QTextCharFormat>
#include <QVBoxLayout>
#include <QtDebug>
#include <cassert>
QStringList pqPythonShell::Preamble;
class pqPythonShellCompleter : public pqConsoleWidgetCompleter
{
vtkWeakPointer<vtkPythonInteractiveInterpreter> Interpreter;
public:
pqPythonShellCompleter(pqPythonShell& p, vtkPythonInteractiveInterpreter* interp)
{
this->Interpreter = interp;
this->setParent(&p);
}
void updateCompletionModel(const QString& completion) override
{
// Start by clearing the model
this->setModel(0);
// Don't try to complete the empty string
if (completion.isEmpty())
{
return;
}
// Search backward through the string for usable characters
QString textToComplete;
for (int i = completion.length() - 1; i >= 0; --i)
{
QChar c = completion.at(i);
if (c.isLetterOrNumber() || c == '.' || c == '_')
{
textToComplete.prepend(c);
}
else
{
break;
}
}
// Split the string at the last dot, if one exists
QString lookup;
QString compareText = textToComplete;
int dot = compareText.lastIndexOf('.');
if (dot != -1)
{
lookup = compareText.mid(0, dot);
compareText = compareText.mid(dot + 1);
}
// Lookup python names
QStringList attrs;
if (!lookup.isEmpty() || !compareText.isEmpty())
{
attrs = this->getPythonAttributes(lookup);
}
// Initialize the completion model
if (!attrs.isEmpty())
{
this->setCompletionMode(QCompleter::PopupCompletion);
this->setModel(new QStringListModel(attrs, this));
this->setCaseSensitivity(Qt::CaseInsensitive);
this->setCompletionPrefix(compareText.toLower());
this->popup()->setCurrentIndex(this->completionModel()->index(0, 0));
}
}
/// Given a python variable name, lookup its attributes and return them in a
/// string list.
QStringList getPythonAttributes(const QString& pythonObjectName)
{
vtkPythonScopeGilEnsurer gilEnsurer;
if (this->Interpreter == NULL ||
this->Interpreter->GetInteractiveConsoleLocalsPyObject() == NULL)
{
return QStringList();
}
PyObject* object =
reinterpret_cast<PyObject*>(this->Interpreter->GetInteractiveConsoleLocalsPyObject());
Py_INCREF(object);
if (!pythonObjectName.isEmpty())
{
QStringList tmpNames = pythonObjectName.split('.');
for (int i = 0; i < tmpNames.size() && object; ++i)
{
QByteArray tmpName = tmpNames.at(i).toLocal8Bit();
PyObject* prevObj = object;
if (PyDict_Check(object))
{
object = PyDict_GetItemString(object, tmpName.data());
Py_XINCREF(object);
}
else
{
object = PyObject_GetAttrString(object, tmpName.data());
}
Py_DECREF(prevObj);
}
PyErr_Clear();
}
QStringList results;
if (object)
{
PyObject* keys = NULL;
bool is_dict = PyDict_Check(object);
if (is_dict)
{
keys = PyDict_Keys(object); // returns *new* reference.
}
else
{
keys = PyObject_Dir(object); // returns *new* reference.
}
if (keys)
{
PyObject* key;
PyObject* value;
QString keystr;
int nKeys = PyList_Size(keys);
for (int i = 0; i < nKeys; ++i)
{
key = PyList_GetItem(keys, i);
if (is_dict)
{
value = PyDict_GetItem(object, key); // Return value: Borrowed reference.
Py_XINCREF(value); // so we can use Py_DECREF later.
}
else
{
value = PyObject_GetAttr(object, key); // Return value: New reference.
}
if (!value)
{
continue;
}
results << PyString_AsString(key);
Py_DECREF(value);
// Clear out any errors that may have occurred.
PyErr_Clear();
}
Py_DECREF(keys);
}
Py_DECREF(object);
}
return results;
}
};
//-----------------------------------------------------------------------------
class pqPythonShellOutputWindow : public vtkOutputWindow
{
QPointer<pqPythonShell> Shell;
public:
static pqPythonShellOutputWindow* New();
vtkTypeMacro(pqPythonShellOutputWindow, vtkOutputWindow);
void SetShell(pqPythonShell* shell) { this->Shell = shell; }
void DisplayText(const char* txt) override
{
if (this->Shell)
{
this->Shell->printString(txt, pqPythonShell::OUTPUT);
}
}
void DisplayErrorText(const char* txt) override
{
if (this->Shell)
{
this->Shell->printString(txt, pqPythonShell::ERROR);
}
}
protected:
pqPythonShellOutputWindow() {}
~pqPythonShellOutputWindow() override {}
private:
pqPythonShellOutputWindow(const pqPythonShellOutputWindow&) = delete;
void operator=(const pqPythonShellOutputWindow&) = delete;
};
vtkStandardNewMacro(pqPythonShellOutputWindow);
//-----------------------------------------------------------------------------
class pqPythonShell::pqInternals
{
QPointer<pqPythonShell> Parent;
vtkNew<vtkPythonInteractiveInterpreter> Interpreter;
vtkNew<pqPythonShellOutputWindow> MessageCapture;
vtkSmartPointer<vtkOutputWindow> OldInstance;
bool OldCapture;
int ExecutionCounter;
bool InterpreterInitialized;
public:
Ui::PythonShell Ui;
pqInternals(pqPythonShell* self)
: Parent(self)
, Interpreter()
, OldCapture(false)
, ExecutionCounter(0)
, InterpreterInitialized(false)
{
this->MessageCapture->SetShell(self);
this->Ui.setupUi(self);
self->connect(this->Ui.clearButton, SIGNAL(clicked()), SLOT(clear()));
self->connect(this->Ui.resetButton, SIGNAL(clicked()), SLOT(reset()));
self->connect(this->Ui.runScriptButton, SIGNAL(clicked()), SLOT(runScript()));
}
/**
* Must be called before executing a Python snippet in the shell.
* Does several things:
* 1. ensures that Python interpreter is initialized.
* 2. ensures that the input/output streams are captured.
*/
void begin()
{
assert(this->ExecutionCounter >= 0);
if (this->ExecutionCounter == 0)
{
assert(this->OldInstance == nullptr);
emit this->Parent->executing(true);
if (this->isInterpreterInitialized() == false)
{
this->initializeInterpreter();
}
this->OldInstance = vtkOutputWindow::GetInstance();
vtkOutputWindow::SetInstance(this->MessageCapture);
this->OldCapture = vtkPythonInterpreter::GetCaptureStdin();
vtkPythonInterpreter::SetCaptureStdin(true);
}
this->ExecutionCounter++;
}
/**
* Must match a `begin` and should be called when done with Python snippet
* processing. Undoes all overrides set up in `begin`.
*/
void end()
{
this->ExecutionCounter--;
assert(this->ExecutionCounter >= 0);
if (this->ExecutionCounter == 0)
{
vtkPythonInterpreter::SetCaptureStdin(this->OldCapture);
this->OldCapture = false;
vtkOutputWindow::SetInstance(this->OldInstance);
this->OldInstance = nullptr;
emit this->Parent->executing(false);
}
}
bool isExecuting() const { return this->ExecutionCounter > 0; }
bool isInterpreterInitialized() const { return this->InterpreterInitialized; }
/**
* Resets the interpreter. Unlike `initializeInterpreter`, this will have no
* effect if the interpreter hasn't been initialized yet.
*/
void reset()
{
if (this->isInterpreterInitialized())
{
this->Parent->printString("\nresetting ...\n", pqPythonShell::ERROR);
this->initializeInterpreter();
}
}
vtkPythonInteractiveInterpreter* interpreter() const { return this->Interpreter; }
private:
/**
* Will initialize (or re-initialize) the interpreter.
*/
void initializeInterpreter()
{
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
vtkPythonInterpreter::Initialize();
assert(vtkPythonInterpreter::IsInitialized());
// Print the default Python interpreter greeting.
this->Parent->printString(
QString("\nPython %1 on %2\n").arg(Py_GetVersion()).arg(Py_GetPlatform()), OUTPUT);
// Note that we assume each line of the preamble is a complete statement
// (i.e., no multi-line statements):
for (const QString& line : pqPythonShell::preamble())
{
this->Parent->prompt();
this->Parent->printString(line + "\n");
this->Interpreter->Push(line.toLocal8Bit().data());
}
this->Parent->prompt();
const Ui::PythonShell& ui = this->Ui;
ui.clearButton->setEnabled(true);
ui.resetButton->setEnabled(true);
this->InterpreterInitialized = true;
QApplication::restoreOverrideCursor();
}
};
//-----------------------------------------------------------------------------
pqPythonShell::pqPythonShell(QWidget* parentObject, Qt::WindowFlags _flags)
: Superclass(parentObject, _flags)
, ConsoleWidget(nullptr)
, Prompt(pqPythonShell::PS1())
, Prompted(false)
, Internals(new pqPythonShell::pqInternals(this))
{
// The default preamble loads paraview.simple:
if (pqPythonShell::Preamble.empty())
{
pqPythonShell::Preamble += "from paraview.simple import *";
}
Ui::PythonShell& ui = this->Internals->Ui;
// install event filter to initialize Python on request.
// we use queued connection so that the cursor ends up after the prompt.
// Otherwise if user clicked for focus, the cursor will end up where ever the
// user clicked.
this->connect(
ui.consoleWidget, SIGNAL(consoleFocusInEvent()), SLOT(initialize()), Qt::QueuedConnection);
// Setup completer for the console widget.
pqPythonShellCompleter* completer =
new pqPythonShellCompleter(*this, this->Internals->interpreter());
ui.consoleWidget->setCompleter(completer);
// Accept user input from the console and push it into the Python interpreter.
this->connect(
ui.consoleWidget, SIGNAL(executeCommand(const QString&)), SLOT(pushScript(const QString&)));
this->Internals->interpreter()->AddObserver(
vtkCommand::AnyEvent, this, &pqPythonShell::HandleInterpreterEvents);
// show the prompt so user knows that there's a Python shell to use.
this->prompt();
}
//-----------------------------------------------------------------------------
pqPythonShell::~pqPythonShell()
{
this->Internals->interpreter()->RemoveObservers(vtkCommand::AnyEvent);
}
//-----------------------------------------------------------------------------
bool pqPythonShell::isExecuting() const
{
return this->Internals->isExecuting();
}
//-----------------------------------------------------------------------------
void pqPythonShell::initialize()
{
if (!this->Internals->isInterpreterInitialized())
{
this->Internals->begin();
this->Internals->end();
}
}
//-----------------------------------------------------------------------------
void pqPythonShell::reset()
{
this->Internals->reset();
}
//-----------------------------------------------------------------------------
void pqPythonShell::printString(const QString& text, pqPythonShell::PrintMode mode)
{
pqConsoleWidget* consoleWidget = this->Internals->Ui.consoleWidget;
QString string = text;
if (!string.isEmpty())
{
QTextCharFormat format = consoleWidget->getFormat();
switch (mode)
{
case OUTPUT:
format.setForeground(QColor(0, 150, 0));
break;
case ERROR:
format.setForeground(QColor(255, 0, 0));
break;
case STATUS:
default:
format.setForeground(QApplication::palette().highlight().color());
}
consoleWidget->setFormat(format);
consoleWidget->printString(string);
format.setForeground(QApplication::palette().windowText().color());
consoleWidget->setFormat(format);
this->Prompted = false;
// printString by itself should never affect the Prompt, just whether it
// needs to be shown.
}
}
//-----------------------------------------------------------------------------
void pqPythonShell::setPreamble(const QStringList& statements)
{
pqPythonShell::Preamble = statements;
}
//-----------------------------------------------------------------------------
const QStringList& pqPythonShell::preamble()
{
return pqPythonShell::Preamble;
}
//-----------------------------------------------------------------------------
bool pqPythonShell::prompt(const QString& indent)
{
if (!this->Prompted)
{
this->Prompted = true;
Ui::PythonShell& ui = this->Internals->Ui;
QTextCharFormat format = ui.consoleWidget->getFormat();
format.setForeground(QApplication::palette().windowText().color());
ui.consoleWidget->setFormat(format);
ui.consoleWidget->prompt(this->Prompt);
ui.consoleWidget->printCommand(indent);
return true;
}
return false;
}
//-----------------------------------------------------------------------------
void pqPythonShell::printMessage(const QString& text)
{
this->printString(text, STATUS);
this->prompt();
}
//-----------------------------------------------------------------------------
void pqPythonShell::clear()
{
this->Internals->Ui.consoleWidget->clear();
this->Prompted = false;
this->prompt();
}
//-----------------------------------------------------------------------------
void pqPythonShell::executeScript(const QString& script)
{
QString command = script;
command.replace("\r\n", "\n");
command.replace("\r", "\n");
this->Internals->begin();
this->Internals->interpreter()->RunStringWithConsoleLocals(command.toLocal8Bit().data());
this->Internals->end();
CLEAR_UNDO_STACK();
this->prompt();
}
//-----------------------------------------------------------------------------
void pqPythonShell::pushScript(const QString& script)
{
QString command = script;
command.replace("\r\n", "\n");
command.replace("\r", "\n");
QStringList lines = script.split("\n");
this->Prompted = false;
this->Internals->begin();
foreach (QString line, lines)
{
bool isMultilineStatement = this->Internals->interpreter()->Push(line.toLocal8Bit().data());
this->Prompt = isMultilineStatement ? pqPythonShell::PS2() : pqPythonShell::PS1();
}
this->Internals->end();
this->prompt();
CLEAR_UNDO_STACK();
}
//-----------------------------------------------------------------------------
void* pqPythonShell::consoleLocals()
{
// this ensures that the interpreter is initialized before we access its
// locals.
this->initialize();
return this->Internals->interpreter()->GetInteractiveConsoleLocalsPyObject();
}
//-----------------------------------------------------------------------------
void pqPythonShell::setFontSize(int fontSize)
{
pqConsoleWidget* consoleWidget = this->Internals->Ui.consoleWidget;
consoleWidget->setFontSize(fontSize);
}
//-----------------------------------------------------------------------------
void pqPythonShell::HandleInterpreterEvents(vtkObject*, unsigned long eventid, void* calldata)
{
if (!this->isExecuting())
{
// not our event. ignore it.
return;
}
switch (eventid)
{
case vtkCommand::UpdateEvent:
{
vtkStdString* strData = reinterpret_cast<vtkStdString*>(calldata);
bool ok;
QString inputText = QInputDialog::getText(this, tr("Enter Input requested by Python"),
tr("Input: "), QLineEdit::Normal, QString(), &ok);
if (ok)
{
*strData = inputText.toStdString();
}
}
break;
}
}
//-----------------------------------------------------------------------------
void pqPythonShell::runScript()
{
pqFileDialog dialog(
nullptr, this, tr("Run Script"), QString(), QString(tr("Python Script (*.py);;All files (*)")));
dialog.setObjectName("PythonShellRunScriptDialog");
dialog.setFileMode(pqFileDialog::ExistingFile);
if (dialog.exec() == QDialog::Accepted)
{
for (const QString& filename : dialog.getSelectedFiles())
{
QFile file(filename);
if (file.open(QIODevice::ReadOnly))
{
QByteArray code;
// First inject code to let the script know its own path
code.append(QString("__file__ = '%1'\n").arg(filename));
// Then append the file content
code.append(file.readAll());
this->executeScript(code.data());
}
else
{
qCritical() << "Error opening '" << filename << "'";
}
}
}
}