101 lines
2.9 KiB
C++
101 lines
2.9 KiB
C++
|
|
// -*- C++ -*-
|
|
//
|
|
// This file is part of the Coriolis Software.
|
|
// Copyright (c) UPMC/LIP6 2014-2018, All Rights Reserved
|
|
//
|
|
// +-----------------------------------------------------------------+
|
|
// | C O R I O L I S |
|
|
// | E t e s i a n - A n a l y t i c P l a c e r |
|
|
// | |
|
|
// | Author : Jean-Paul CHAPUT |
|
|
// | E-mail : Jean-Paul.Chaput@asim.lip6.fr |
|
|
// | =============================================================== |
|
|
// | C++ Module : "./PyEtesian.cpp" |
|
|
// +-----------------------------------------------------------------+
|
|
|
|
|
|
#include "hurricane/isobar/PyHurricane.h"
|
|
#include "hurricane/isobar/PyCell.h"
|
|
#include "etesian/PyEtesianEngine.h"
|
|
#include "etesian/PyGraphicEtesianEngine.h"
|
|
|
|
|
|
namespace Etesian {
|
|
|
|
using std::cerr;
|
|
using std::endl;
|
|
using Hurricane::tab;
|
|
using Isobar::__cs;
|
|
using Isobar::getPyHash;
|
|
using CRL::PyTypeToolEngine;
|
|
using CRL::PyTypeGraphicTool;
|
|
|
|
|
|
#if !defined(__PYTHON_MODULE__)
|
|
|
|
// +=================================================================+
|
|
// | "PyEtesian" Shared Library Code Part |
|
|
// +=================================================================+
|
|
|
|
|
|
# else // End of PyHurricane Shared Library Code Part.
|
|
|
|
|
|
// +=================================================================+
|
|
// | "PyEtesian" Python Module Code Part |
|
|
// +=================================================================+
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
// +-------------------------------------------------------------+
|
|
// | "PyEtesian" Module Methods |
|
|
// +-------------------------------------------------------------+
|
|
|
|
|
|
static PyMethodDef PyEtesian_Methods[] =
|
|
{ {NULL, NULL, 0, NULL} /* sentinel */
|
|
};
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
// Module Initialization : "initEtesian ()"
|
|
|
|
DL_EXPORT(void) initEtesian () {
|
|
cdebug_log(34,0) << "initEtesian()" << endl;
|
|
|
|
PyEtesianEngine_LinkPyType();
|
|
PyGraphicEtesianEngine_LinkPyType();
|
|
|
|
PYTYPE_READY_SUB( EtesianEngine , ToolEngine );
|
|
PYTYPE_READY_SUB( GraphicEtesianEngine, GraphicTool );
|
|
|
|
|
|
PyObject* module = Py_InitModule( "Etesian", PyEtesian_Methods );
|
|
if (module == NULL) {
|
|
cerr << "[ERROR]\n"
|
|
<< " Failed to initialize Etesian module." << endl;
|
|
return;
|
|
}
|
|
|
|
Py_INCREF( &PyTypeEtesianEngine );
|
|
PyModule_AddObject( module, "EtesianEngine", (PyObject*)&PyTypeEtesianEngine );
|
|
Py_INCREF( &PyTypeGraphicEtesianEngine );
|
|
PyModule_AddObject( module, "GraphicEtesianEngine", (PyObject*)&PyTypeGraphicEtesianEngine );
|
|
|
|
PyEtesianEngine_postModuleInit();
|
|
}
|
|
|
|
|
|
} // End of extern "C".
|
|
|
|
|
|
#endif // End of Python Module Code Part.
|
|
|
|
|
|
} // End of Etesian namespace.
|