"Professional CMake" book suggest the following: "Targets should build successfully with or without compiler support for precompiled headers. It should be considered an optimization, not a requirement. In particular, do not explicitly include a precompile header (e.g. stdafx.h) in the source code, let CMake force-include an automatically generated precompile header on the compiler command line instead. This is more portable across the major compilers and is likely to be easier to maintain. It will also avoid warnings being generated from certain code checking tools like iwyu (include what you use)." Therefore, removed the "#include <PreCompiled.h>" from sources, also there is no need for the "#ifdef _PreComp_" anymore
584 lines
22 KiB
C++
584 lines
22 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2009 Werner Mayer <wmayer[at]users.sourceforge.net> *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include <functional>
|
|
|
|
#include <CXX/Objects.hxx>
|
|
#include "Application.h"
|
|
#include "Document.h"
|
|
#include "DocumentObject.h"
|
|
#include "DocumentObserverPython.h"
|
|
#include <Base/Interpreter.h>
|
|
|
|
|
|
using namespace App;
|
|
namespace sp = std::placeholders;
|
|
|
|
std::vector<DocumentObserverPython*> DocumentObserverPython::_instances;
|
|
|
|
void DocumentObserverPython::addObserver(const Py::Object& obj)
|
|
{
|
|
_instances.push_back(new DocumentObserverPython(obj));
|
|
}
|
|
|
|
void DocumentObserverPython::removeObserver(const Py::Object& obj)
|
|
{
|
|
DocumentObserverPython* obs = nullptr;
|
|
for (std::vector<DocumentObserverPython*>::iterator it = _instances.begin();
|
|
it != _instances.end();
|
|
++it) {
|
|
if ((*it)->inst == obj) {
|
|
obs = *it;
|
|
_instances.erase(it);
|
|
break;
|
|
}
|
|
}
|
|
|
|
delete obs;
|
|
}
|
|
|
|
DocumentObserverPython::DocumentObserverPython(const Py::Object& obj)
|
|
: inst(obj)
|
|
{
|
|
#define FC_PY_ELEMENT_ARG0(_name1, _name2) \
|
|
do { \
|
|
FC_PY_GetCallable(obj.ptr(), "slot" #_name1, py##_name1.py); \
|
|
if (!py##_name1.py.isNone()) \
|
|
py##_name1.slot = App::GetApplication().signal##_name2.connect( \
|
|
std::bind(&DocumentObserverPython::slot##_name1, this)); \
|
|
} while (0);
|
|
|
|
|
|
#define FC_PY_ELEMENT_ARG1(_name1, _name2) \
|
|
do { \
|
|
FC_PY_GetCallable(obj.ptr(), "slot" #_name1, py##_name1.py); \
|
|
if (!py##_name1.py.isNone()) \
|
|
py##_name1.slot = App::GetApplication().signal##_name2.connect( \
|
|
std::bind(&DocumentObserverPython::slot##_name1, this, sp::_1)); \
|
|
} while (0);
|
|
|
|
// NOLINTBEGIN
|
|
#define FC_PY_ELEMENT_ARG2(_name1, _name2) \
|
|
do { \
|
|
FC_PY_GetCallable(obj.ptr(), "slot" #_name1, py##_name1.py); \
|
|
if (!py##_name1.py.isNone()) \
|
|
py##_name1.slot = App::GetApplication().signal##_name2.connect( \
|
|
std::bind(&DocumentObserverPython::slot##_name1, this, sp::_1, sp::_2)); \
|
|
} while (0);
|
|
|
|
FC_PY_ELEMENT_ARG1(CreatedDocument, NewDocument)
|
|
FC_PY_ELEMENT_ARG1(DeletedDocument, DeleteDocument)
|
|
FC_PY_ELEMENT_ARG1(RelabelDocument, RelabelDocument)
|
|
FC_PY_ELEMENT_ARG1(ActivateDocument, ActiveDocument)
|
|
FC_PY_ELEMENT_ARG1(UndoDocument, UndoDocument)
|
|
FC_PY_ELEMENT_ARG1(RedoDocument, RedoDocument)
|
|
FC_PY_ELEMENT_ARG2(BeforeChangeDocument, BeforeChangeDocument)
|
|
FC_PY_ELEMENT_ARG2(ChangedDocument, ChangedDocument)
|
|
FC_PY_ELEMENT_ARG1(CreatedObject, NewObject)
|
|
FC_PY_ELEMENT_ARG1(DeletedObject, DeletedObject)
|
|
FC_PY_ELEMENT_ARG2(BeforeChangeObject, BeforeChangeObject)
|
|
FC_PY_ELEMENT_ARG2(ChangedObject, ChangedObject)
|
|
FC_PY_ELEMENT_ARG1(RecomputedObject, ObjectRecomputed)
|
|
FC_PY_ELEMENT_ARG1(BeforeRecomputeDocument, BeforeRecomputeDocument)
|
|
FC_PY_ELEMENT_ARG1(RecomputedDocument, Recomputed)
|
|
FC_PY_ELEMENT_ARG2(OpenTransaction, OpenTransaction)
|
|
FC_PY_ELEMENT_ARG1(CommitTransaction, CommitTransaction)
|
|
FC_PY_ELEMENT_ARG1(AbortTransaction, AbortTransaction)
|
|
FC_PY_ELEMENT_ARG0(Undo, Undo)
|
|
FC_PY_ELEMENT_ARG0(Redo, Redo)
|
|
FC_PY_ELEMENT_ARG1(BeforeCloseTransaction, BeforeCloseTransaction)
|
|
FC_PY_ELEMENT_ARG1(CloseTransaction, CloseTransaction)
|
|
FC_PY_ELEMENT_ARG2(StartSaveDocument, StartSaveDocument)
|
|
FC_PY_ELEMENT_ARG2(FinishSaveDocument, FinishSaveDocument)
|
|
FC_PY_ELEMENT_ARG1(AppendDynamicProperty, AppendDynamicProperty)
|
|
FC_PY_ELEMENT_ARG1(RemoveDynamicProperty, RemoveDynamicProperty)
|
|
FC_PY_ELEMENT_ARG2(ChangePropertyEditor, ChangePropertyEditor)
|
|
FC_PY_ELEMENT_ARG2(BeforeAddingDynamicExtension, BeforeAddingDynamicExtension)
|
|
FC_PY_ELEMENT_ARG2(AddedDynamicExtension, AddedDynamicExtension)
|
|
// NOLINTEND
|
|
}
|
|
|
|
DocumentObserverPython::~DocumentObserverPython() = default;
|
|
|
|
void DocumentObserverPython::slotCreatedDocument(const App::Document& Doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(Doc).getPyObject()));
|
|
Base::pyCall(pyCreatedDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotDeletedDocument(const App::Document& Doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(Doc).getPyObject()));
|
|
Base::pyCall(pyDeletedDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotRelabelDocument(const App::Document& Doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(Doc).getPyObject()));
|
|
Base::pyCall(pyRelabelDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotActivateDocument(const App::Document& Doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(Doc).getPyObject()));
|
|
Base::pyCall(pyActivateDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotUndoDocument(const App::Document& Doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(Doc).getPyObject()));
|
|
Base::pyCall(pyUndoDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
|
|
void DocumentObserverPython::slotRedoDocument(const App::Document& Doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(Doc).getPyObject()));
|
|
Base::pyCall(pyRedoDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotUndo()
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Base::pyCall(pyUndo.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotRedo()
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Base::pyCall(pyRedo.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotBeforeCloseTransaction(bool abort)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::Boolean(abort));
|
|
Base::pyCall(pyBeforeCloseTransaction.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotCloseTransaction(bool abort)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::Boolean(abort));
|
|
Base::pyCall(pyCloseTransaction.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotBeforeChangeDocument(const App::Document& Doc,
|
|
const App::Property& Prop)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(Doc).getPyObject()));
|
|
// If a property is touched but not part of a document object then its name is null.
|
|
// In this case the slot function must not be called.
|
|
const char* prop_name = Doc.getPropertyName(&Prop);
|
|
if (prop_name) {
|
|
args.setItem(1, Py::String(prop_name));
|
|
Base::pyCall(pyBeforeChangeDocument.ptr(), args.ptr());
|
|
}
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotChangedDocument(const App::Document& Doc,
|
|
const App::Property& Prop)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(Doc).getPyObject()));
|
|
// If a property is touched but not part of a document object then its name is null.
|
|
// In this case the slot function must not be called.
|
|
const char* prop_name = Doc.getPropertyName(&Prop);
|
|
if (prop_name) {
|
|
args.setItem(1, Py::String(prop_name));
|
|
Base::pyCall(pyChangedDocument.ptr(), args.ptr());
|
|
}
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotCreatedObject(const App::DocumentObject& Obj)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::DocumentObject&>(Obj).getPyObject()));
|
|
Base::pyCall(pyCreatedObject.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotDeletedObject(const App::DocumentObject& Obj)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::DocumentObject&>(Obj).getPyObject()));
|
|
Base::pyCall(pyDeletedObject.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotBeforeChangeObject(const App::DocumentObject& Obj,
|
|
const App::Property& Prop)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(const_cast<App::DocumentObject&>(Obj).getPyObject()));
|
|
// If a property is touched but not part of a document object then its name is null.
|
|
// In this case the slot function must not be called.
|
|
const char* prop_name = Obj.getPropertyName(&Prop);
|
|
if (prop_name) {
|
|
args.setItem(1, Py::String(prop_name));
|
|
Base::pyCall(pyBeforeChangeObject.ptr(), args.ptr());
|
|
}
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotChangedObject(const App::DocumentObject& Obj,
|
|
const App::Property& Prop)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(const_cast<App::DocumentObject&>(Obj).getPyObject()));
|
|
// If a property is touched but not part of a document object then its name is null.
|
|
// In this case the slot function must not be called.
|
|
const char* prop_name = Obj.getPropertyName(&Prop);
|
|
if (prop_name) {
|
|
args.setItem(1, Py::String(prop_name));
|
|
Base::pyCall(pyChangedObject.ptr(), args.ptr());
|
|
}
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotRecomputedObject(const App::DocumentObject& Obj)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::DocumentObject&>(Obj).getPyObject()));
|
|
Base::pyCall(pyRecomputedObject.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotRecomputedDocument(const App::Document& doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(doc).getPyObject()));
|
|
Base::pyCall(pyRecomputedDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotBeforeRecomputeDocument(const App::Document& doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(doc).getPyObject()));
|
|
Base::pyCall(pyBeforeRecomputeDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotOpenTransaction(const App::Document& doc, std::string str)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(doc).getPyObject()));
|
|
args.setItem(1, Py::String(str));
|
|
Base::pyCall(pyOpenTransaction.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotCommitTransaction(const App::Document& doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(doc).getPyObject()));
|
|
Base::pyCall(pyCommitTransaction.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotAbortTransaction(const App::Document& doc)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(1);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(doc).getPyObject()));
|
|
Base::pyCall(pyAbortTransaction.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotAppendDynamicProperty(const App::Property& Prop)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
auto container = Prop.getContainer();
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(container->getPyObject()));
|
|
// If a property is touched but not part of a document object then its name is null.
|
|
// In this case the slot function must not be called.
|
|
const char* prop_name = container->getPropertyName(&Prop);
|
|
if (prop_name) {
|
|
args.setItem(1, Py::String(prop_name));
|
|
Base::pyCall(pyAppendDynamicProperty.ptr(), args.ptr());
|
|
}
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotRemoveDynamicProperty(const App::Property& Prop)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
auto container = Prop.getContainer();
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(container->getPyObject()));
|
|
// If a property is touched but not part of a document object then its name is null.
|
|
// In this case the slot function must not be called.
|
|
const char* prop_name = container->getPropertyName(&Prop);
|
|
if (prop_name) {
|
|
args.setItem(1, Py::String(prop_name));
|
|
Base::pyCall(pyRemoveDynamicProperty.ptr(), args.ptr());
|
|
}
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotChangePropertyEditor(const App::Document&,
|
|
const App::Property& Prop)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
auto container = Prop.getContainer();
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(container->getPyObject()));
|
|
// If a property is touched but not part of a document object then its name is null.
|
|
// In this case the slot function must not be called.
|
|
const char* prop_name = container->getPropertyName(&Prop);
|
|
if (prop_name) {
|
|
args.setItem(1, Py::String(prop_name));
|
|
Base::pyCall(pyChangePropertyEditor.ptr(), args.ptr());
|
|
}
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotStartSaveDocument(const App::Document& doc,
|
|
const std::string& file)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(doc).getPyObject()));
|
|
args.setItem(1, Py::String(file));
|
|
Base::pyCall(pyStartSaveDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotFinishSaveDocument(const App::Document& doc,
|
|
const std::string& file)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(const_cast<App::Document&>(doc).getPyObject()));
|
|
args.setItem(1, Py::String(file));
|
|
Base::pyCall(pyFinishSaveDocument.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotBeforeAddingDynamicExtension(
|
|
const App::ExtensionContainer& extcont,
|
|
std::string extension)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(const_cast<App::ExtensionContainer&>(extcont).getPyObject()));
|
|
args.setItem(1, Py::String(extension));
|
|
Base::pyCall(pyBeforeAddingDynamicExtension.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|
|
|
|
void DocumentObserverPython::slotAddedDynamicExtension(const App::ExtensionContainer& extcont,
|
|
std::string extension)
|
|
{
|
|
Base::PyGILStateLocker lock;
|
|
try {
|
|
Py::Tuple args(2);
|
|
args.setItem(0, Py::asObject(const_cast<App::ExtensionContainer&>(extcont).getPyObject()));
|
|
args.setItem(1, Py::String(extension));
|
|
Base::pyCall(pyAddedDynamicExtension.ptr(), args.ptr());
|
|
}
|
|
catch (Py::Exception&) {
|
|
Base::PyException e; // extract the Python error text
|
|
e.reportException();
|
|
}
|
|
}
|