coriolis/kite/src/PyKite.cpp

105 lines
3.1 KiB
C++

// -*- C++ -*-
//
// This file is part of the Coriolis Software.
// Copyright (c) UPMC/LIP6 2012-2013, All Rights Reserved
//
// +-----------------------------------------------------------------+
// | C O R I O L I S |
// | K i t e - D e t a i l e d R o u t e r |
// | |
// | Author : Jean-Paul CHAPUT |
// | E-mail : Jean-Paul.Chaput@asim.lip6.fr |
// | =============================================================== |
// | C++ Module : "./PyKite.cpp" |
// +-----------------------------------------------------------------+
#include "hurricane/isobar/PyHurricane.h"
#include "hurricane/isobar/PyCell.h"
#include "kite/PyKiteEngine.h"
#include "kite/PyGraphicKiteEngine.h"
namespace Kite {
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__)
// x=================================================================x
// | "PyKite" Shared Library Code Part |
// x=================================================================x
# else // End of PyHurricane Shared Library Code Part.
// x=================================================================x
// | "PyKite" Python Module Code Part |
// x=================================================================x
extern "C" {
// x-------------------------------------------------------------x
// | "PyKite" Module Methods |
// x-------------------------------------------------------------x
static PyMethodDef PyKite_Methods[] =
{ {NULL, NULL, 0, NULL} /* sentinel */
};
// ---------------------------------------------------------------
// Module Initialization : "initKite ()"
DL_EXPORT(void) initKite () {
cdebug_log(40,0) << "initKite()" << endl;
PyKiteEngine_LinkPyType();
PyGraphicKiteEngine_LinkPyType();
PYTYPE_READY_SUB( KiteEngine , ToolEngine );
PYTYPE_READY_SUB( GraphicKiteEngine, GraphicTool );
PyObject* module = Py_InitModule( "Kite", PyKite_Methods );
if (module == NULL) {
cerr << "[ERROR]\n"
<< " Failed to initialize Kite module." << endl;
return;
}
Py_INCREF( &PyTypeKiteEngine );
PyModule_AddObject( module, "KiteEngine", (PyObject*)&PyTypeKiteEngine );
Py_INCREF( &PyTypeGraphicKiteEngine );
PyModule_AddObject( module, "GraphicKiteEngine", (PyObject*)&PyTypeGraphicKiteEngine );
PyObject* dictionnary = PyModule_GetDict( module );
PyObject* constant;
LoadObjectConstant( dictionnary, KtBuildGlobalRouting, "KtBuildGlobalRouting" );
LoadObjectConstant( dictionnary, KtLoadGlobalRouting , "KtLoadGlobalRouting" );
}
} // End of extern "C".
#endif // End of Python Module Code Part.
} // End of Kite namespace.