2008-03-06 10:46:43 -06:00
|
|
|
// x-----------------------------------------------------------------x
|
|
|
|
// | |
|
|
|
|
// | C O R I O L I S |
|
|
|
|
// | I s o b a r - Hurricane / Python Interface |
|
|
|
|
// | |
|
|
|
|
// | Author : Sophie BELLOEIL |
|
|
|
|
// | E-mail : Sophie.Belloeil@asim.lip6.fr |
|
|
|
|
// | =============================================================== |
|
|
|
|
// | C++ Module : "./PyHorizontal.cpp" |
|
|
|
|
// | *************************************************************** |
|
|
|
|
// | U p d a t e s |
|
|
|
|
// | |
|
|
|
|
// x-----------------------------------------------------------------x
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-05-21 17:46:29 -05:00
|
|
|
#include "hurricane/isobar/PyNet.h"
|
|
|
|
#include "hurricane/isobar/PyLayer.h"
|
|
|
|
#include "hurricane/isobar/PyHorizontal.h"
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
namespace Isobar {
|
|
|
|
|
|
|
|
|
2008-03-28 04:48:47 -05:00
|
|
|
using namespace Hurricane;
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
|
|
|
|
# undef ACCESS_OBJECT
|
|
|
|
# undef ACCESS_CLASS
|
|
|
|
# define ACCESS_OBJECT _baseObject._baseObject._baseObject._object
|
|
|
|
# define ACCESS_CLASS(_pyObject) &(_pyObject->_baseObject._baseObject._baseObject)
|
|
|
|
# define METHOD_HEAD(function) GENERIC_METHOD_HEAD_SUB(Horizontal,horizontal,function)
|
|
|
|
|
|
|
|
|
|
|
|
// x=================================================================x
|
|
|
|
// | "PyHorizontal" Python Module Code Part |
|
|
|
|
// x=================================================================x
|
|
|
|
|
|
|
|
# if defined(__PYTHON_MODULE__)
|
|
|
|
|
|
|
|
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
// | "PyHorizontal" Attribute Methods |
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
|
|
|
|
|
2008-03-17 08:54:33 -05:00
|
|
|
// Standart destroy (Attribute).
|
|
|
|
DBoDestroyAttribute(PyHorizontal_destroy, PyHorizontal)
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// PyHorizontal Attribute Method table.
|
|
|
|
|
|
|
|
PyMethodDef PyHorizontal_Methods[] =
|
2008-03-17 08:54:33 -05:00
|
|
|
{ { "destroy" , (PyCFunction)PyHorizontal_destroy , METH_NOARGS
|
|
|
|
, "destroy associated hurricane object, the python object remains." }
|
2008-03-06 10:46:43 -06:00
|
|
|
, {NULL, NULL, 0, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
// | "PyHorizontal" Object Methods |
|
|
|
|
// x-------------------------------------------------------------x
|
2008-12-11 06:25:02 -06:00
|
|
|
|
2008-03-06 10:46:43 -06:00
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// Attribute Method : "PyHorizontal_new ()"
|
|
|
|
|
|
|
|
static PyObject* PyHorizontal_new(PyTypeObject *type, PyObject *args, PyObject *kwds) {
|
|
|
|
trace << "PyHorizontal_new()" << endl;
|
2008-12-11 06:25:02 -06:00
|
|
|
Horizontal* horizontal = NULL;
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
HTRY
|
2008-12-11 06:25:02 -06:00
|
|
|
PyNet* pyNet=NULL;
|
|
|
|
PyComponent *pySource = NULL, *pyTarget = NULL;
|
|
|
|
PyLayer* pyLayer = NULL;
|
|
|
|
long y = 0, width = 0, dxSource = 0, dxTarget = 0;
|
|
|
|
if (PyArg_ParseTuple(args,"O!O!l|lll:Horizontal.New", &PyTypeNet, &pyNet,
|
|
|
|
&PyTypeLayer, &pyLayer, &y, &width, &dxSource, &dxTarget)) {
|
|
|
|
horizontal = Horizontal::create(PYNET_O(pyNet), PYLAYER_O(pyLayer), y, width, dxSource, dxTarget);
|
|
|
|
} else if (PyArg_ParseTuple(args,"O!O!O!l|lll:Horizontal.New",
|
|
|
|
&PyTypeComponent, &pySource, &PyTypeComponent, &pyTarget,
|
|
|
|
&PyTypeLayer, &pyLayer,
|
|
|
|
&y, &width, &dxSource, &dxTarget)) {
|
|
|
|
horizontal = Horizontal::create(PYCOMPONENT_O(pySource), PYCOMPONENT_O(pyTarget), PYLAYER_O(pyLayer),
|
|
|
|
y, width, dxSource, dxTarget);
|
|
|
|
} else {
|
2008-03-06 10:46:43 -06:00
|
|
|
PyErr_SetString ( ConstructorError, "invalid number of parameters for Horizontal constructor." );
|
2008-10-14 13:44:20 -05:00
|
|
|
return NULL;
|
2008-03-06 10:46:43 -06:00
|
|
|
}
|
|
|
|
HCATCH
|
|
|
|
|
|
|
|
return PyHorizontal_Link ( horizontal );
|
|
|
|
}
|
|
|
|
|
|
|
|
DBoDeleteMethod(Horizontal)
|
|
|
|
PyTypeObjectLinkPyType(Horizontal)
|
|
|
|
PyTypeObjectConstructor(Horizontal)
|
|
|
|
|
|
|
|
|
2008-03-17 08:54:33 -05:00
|
|
|
#else // End of Python Module Code Part.
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
// x=================================================================x
|
|
|
|
// | "PyHorizontal" Shared Library Code Part |
|
|
|
|
// x=================================================================x
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Link/Creation Method.
|
2008-10-12 08:37:33 -05:00
|
|
|
DBoLinkCreateMethod(Horizontal)
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// PyHorizontal Object Definitions.
|
|
|
|
|
2008-10-12 08:37:33 -05:00
|
|
|
PyTypeObjectDefinitions(Horizontal)
|
2008-03-06 10:46:43 -06:00
|
|
|
|
2008-03-17 08:54:33 -05:00
|
|
|
#endif // End of Shared Library Code Part.
|
2008-03-06 10:46:43 -06:00
|
|
|
|
|
|
|
|
|
|
|
} // End of extern "C".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // End of Isobar namespace.
|
|
|
|
|