2008-06-09 11:41:46 -05:00
|
|
|
|
|
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
//
|
|
|
|
|
// This file is part of the Coriolis Project.
|
|
|
|
|
// Copyright (C) Laboratoire LIP6 - Departement ASIM
|
|
|
|
|
// Universite Pierre et Marie Curie
|
|
|
|
|
//
|
|
|
|
|
// Main contributors :
|
|
|
|
|
// Christophe Alexandre <Christophe.Alexandre@lip6.fr>
|
|
|
|
|
// Sophie Belloeil <Sophie.Belloeil@lip6.fr>
|
|
|
|
|
// Hugo Cl<43>ment <Hugo.Clement@lip6.fr>
|
|
|
|
|
// Jean-Paul Chaput <Jean-Paul.Chaput@lip6.fr>
|
|
|
|
|
// Damien Dupuis <Damien.Dupuis@lip6.fr>
|
|
|
|
|
// Christian Masson <Christian.Masson@lip6.fr>
|
|
|
|
|
// Marek Sroka <Marek.Sroka@lip6.fr>
|
|
|
|
|
//
|
|
|
|
|
// The Coriolis Project is free software; you can redistribute it
|
|
|
|
|
// and/or modify it under the terms of the GNU General Public License
|
|
|
|
|
// as published by the Free Software Foundation; either version 2 of
|
|
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// The Coriolis Project 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 General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with the Coriolis Project; if not, write to the Free Software
|
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
// USA
|
|
|
|
|
//
|
|
|
|
|
// License-Tag
|
|
|
|
|
// Authors-Tag
|
|
|
|
|
// ===================================================================
|
|
|
|
|
//
|
|
|
|
|
// $Id$
|
|
|
|
|
//
|
|
|
|
|
// x-----------------------------------------------------------------x
|
|
|
|
|
// | |
|
|
|
|
|
// | C O R I O L I S |
|
|
|
|
|
// | I s o b a r - Hurricane / Python Interface |
|
|
|
|
|
// | |
|
|
|
|
|
// | Author : Jean-Paul CHAPUT |
|
|
|
|
|
// | E-mail : Jean-Paul.Chaput@asim.lip6.fr |
|
|
|
|
|
// | =============================================================== |
|
|
|
|
|
// | C++ Module : "./PyDbU.cpp" |
|
|
|
|
|
// | *************************************************************** |
|
|
|
|
|
// | U p d a t e s |
|
|
|
|
|
// | |
|
|
|
|
|
// x-----------------------------------------------------------------x
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "hurricane/isobar/PyDbU.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Isobar {
|
|
|
|
|
|
|
|
|
|
using namespace Hurricane;
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
2009-10-15 08:46:29 -05:00
|
|
|
|
#define LOAD_CONSTANT(CONSTANT_VALUE,CONSTANT_NAME) \
|
|
|
|
|
constant = PyInt_FromLong ( (long)CONSTANT_VALUE ); \
|
|
|
|
|
PyDict_SetItemString ( dictionnary, CONSTANT_NAME, constant ); \
|
|
|
|
|
Py_DECREF ( constant );
|
2008-06-09 11:41:46 -05:00
|
|
|
|
|
|
|
|
|
// x=================================================================x
|
|
|
|
|
// | "PyDbU" Python Module Code Part |
|
|
|
|
|
// x=================================================================x
|
|
|
|
|
|
|
|
|
|
#if defined(__PYTHON_MODULE__)
|
|
|
|
|
|
2009-10-15 08:46:29 -05:00
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
|
// | "PyDbU" Local Functions |
|
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
|
|
|
|
|
|
static DbU::SnapMode PyInt_AsSnapMode ( PyObject* object ) {
|
|
|
|
|
switch ( PyInt_AsLong(object) ) {
|
|
|
|
|
case DbU::Inferior : return ( DbU::Inferior );
|
|
|
|
|
case DbU::Superior : return ( DbU::Superior );
|
|
|
|
|
case DbU::Nearest : return ( DbU::Nearest );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ( DbU::Superior );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static DbU::UnitPower PyInt_AsUnitPower ( PyObject* object ) {
|
|
|
|
|
switch ( PyInt_AsLong(object) ) {
|
|
|
|
|
case DbU::Pico : return ( DbU::Pico );
|
|
|
|
|
case DbU::Nano : return ( DbU::Nano );
|
|
|
|
|
case DbU::Micro : return ( DbU::Micro );
|
|
|
|
|
case DbU::Milli : return ( DbU::Milli );
|
|
|
|
|
case DbU::Unity : return ( DbU::Unity );
|
|
|
|
|
case DbU::Kilo : return ( DbU::Kilo );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ( DbU::Micro );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
|
// | Global Constants Loading |
|
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
|
|
|
|
|
|
extern void DbULoadConstants ( PyObject* dictionnary ) {
|
|
|
|
|
PyObject* constant;
|
|
|
|
|
|
|
|
|
|
LOAD_CONSTANT ( DbU::Inferior, "SnapModeInferior" )
|
|
|
|
|
LOAD_CONSTANT ( DbU::Superior, "SnapModeSuperior" )
|
|
|
|
|
LOAD_CONSTANT ( DbU::Nearest , "SnapModeNearest" )
|
|
|
|
|
LOAD_CONSTANT ( DbU::Pico , "UnitPowerPico" )
|
|
|
|
|
LOAD_CONSTANT ( DbU::Nano , "UnitPowerNano" )
|
|
|
|
|
LOAD_CONSTANT ( DbU::Micro , "UnitPowerMicro" )
|
|
|
|
|
LOAD_CONSTANT ( DbU::Milli , "UnitPowerMilli" )
|
|
|
|
|
LOAD_CONSTANT ( DbU::Unity , "UnitPowerUnity" )
|
|
|
|
|
LOAD_CONSTANT ( DbU::Kilo , "UnitPowerKilo" )
|
|
|
|
|
}
|
2008-06-09 11:41:46 -05:00
|
|
|
|
|
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
|
// | "PyDbU" General Methods |
|
|
|
|
|
// x-------------------------------------------------------------x
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
// Module Method : "PyDbU_db ()"
|
|
|
|
|
|
|
|
|
|
extern PyObject* PyDbU_db ( PyObject* module, PyObject* args )
|
|
|
|
|
{
|
|
|
|
|
trace << "PyDbU_db ()" << endl;
|
|
|
|
|
|
|
|
|
|
PyObject* arg0;
|
|
|
|
|
DbU::Unit result = 0;
|
|
|
|
|
|
|
|
|
|
HTRY
|
|
|
|
|
|
2008-11-17 15:55:03 -06:00
|
|
|
|
__cs.init ( "DbU.db" );
|
2008-06-09 11:41:46 -05:00
|
|
|
|
if ( ! PyArg_ParseTuple(args,"|O&:DbU.db",Converter,&arg0) )
|
|
|
|
|
return ( NULL );
|
|
|
|
|
|
|
|
|
|
if ( __cs.getObjectIds() == INT_ARG ) { result = DbU::db ( PyInt_AsLong ( arg0 ) ); }
|
|
|
|
|
else {
|
|
|
|
|
PyErr_SetString ( ConstructorError, "invalid number of parameters or bad type for DbU.db converter." );
|
|
|
|
|
return ( NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HCATCH
|
|
|
|
|
|
|
|
|
|
return ( Py_BuildValue ( "i", result ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
2008-06-17 10:30:00 -05:00
|
|
|
|
// Module Method : "PyDbU_grid ()"
|
2008-06-09 11:41:46 -05:00
|
|
|
|
|
2008-06-17 10:30:00 -05:00
|
|
|
|
extern PyObject* PyDbU_grid ( PyObject* module, PyObject* args )
|
2008-06-09 11:41:46 -05:00
|
|
|
|
{
|
2008-06-17 10:30:00 -05:00
|
|
|
|
trace << "PyDbU_grid ()" << endl;
|
2008-06-09 11:41:46 -05:00
|
|
|
|
|
|
|
|
|
PyObject* arg0;
|
|
|
|
|
DbU::Unit result = 0;
|
|
|
|
|
|
|
|
|
|
HTRY
|
|
|
|
|
|
2008-11-17 15:55:03 -06:00
|
|
|
|
__cs.init ( "DbU.grid" );
|
2008-06-17 10:30:00 -05:00
|
|
|
|
if ( ! PyArg_ParseTuple(args,"|O&:DbU.grid",Converter,&arg0) )
|
2008-06-09 11:41:46 -05:00
|
|
|
|
return ( NULL );
|
|
|
|
|
|
2009-11-26 06:18:12 -06:00
|
|
|
|
if ( __cs.getObjectIds() == FLOAT_ARG ) { result = DbU::grid ( PyFloat_AsDouble ( arg0 ) ); }
|
|
|
|
|
else if ( __cs.getObjectIds() == INT_ARG ) { result = DbU::grid ( PyInt_AsLong ( arg0 ) ); }
|
2008-06-09 11:41:46 -05:00
|
|
|
|
else {
|
2008-06-17 10:30:00 -05:00
|
|
|
|
PyErr_SetString ( ConstructorError, "invalid number of parameters or bad type for DbU.grid converter." );
|
2008-06-09 11:41:46 -05:00
|
|
|
|
return ( NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HCATCH
|
|
|
|
|
|
|
|
|
|
return ( Py_BuildValue ( "i", result ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
// Module Method : "PyDbU_lambda ()"
|
|
|
|
|
|
|
|
|
|
extern PyObject* PyDbU_lambda ( PyObject* module, PyObject* args )
|
|
|
|
|
{
|
|
|
|
|
trace << "PyDbU_symbolic ()" << endl;
|
|
|
|
|
|
|
|
|
|
PyObject* arg0;
|
|
|
|
|
DbU::Unit result = 0;
|
|
|
|
|
|
|
|
|
|
HTRY
|
|
|
|
|
|
2008-11-17 15:55:03 -06:00
|
|
|
|
__cs.init ( "DbU.symbolic" );
|
2008-06-09 11:41:46 -05:00
|
|
|
|
if ( ! PyArg_ParseTuple(args,"|O&:DbU.symbolic",Converter,&arg0) )
|
|
|
|
|
return ( NULL );
|
|
|
|
|
|
|
|
|
|
if ( __cs.getObjectIds() == FLOAT_ARG ) { result = DbU::lambda ( PyFloat_AsDouble ( arg0 ) ); }
|
|
|
|
|
else {
|
|
|
|
|
PyErr_SetString ( ConstructorError, "invalid number of parameters or bad type for DbU.symbolic converter." );
|
|
|
|
|
return ( NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HCATCH
|
|
|
|
|
|
|
|
|
|
return ( Py_BuildValue ( "i", result ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
// Module Method : "PyDbU_getDb ()"
|
|
|
|
|
|
|
|
|
|
extern PyObject* PyDbU_getDb ( PyObject* module, PyObject* args )
|
|
|
|
|
{
|
|
|
|
|
trace << "PyDbU_getDb ()" << endl;
|
|
|
|
|
|
|
|
|
|
PyObject* arg0;
|
|
|
|
|
if ( ! ParseOneArg ( "Dbu.getDb", args,INT_ARG, &arg0 ) ) return ( NULL );
|
|
|
|
|
|
|
|
|
|
return ( Py_BuildValue("i",DbU::getDb(PyInt_AsLong(arg0))) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
2008-06-17 10:30:00 -05:00
|
|
|
|
// Module Method : "PyDbU_getGrid ()"
|
2008-06-09 11:41:46 -05:00
|
|
|
|
|
2008-06-17 10:30:00 -05:00
|
|
|
|
extern PyObject* PyDbU_getGrid ( PyObject* module, PyObject* args )
|
2008-06-09 11:41:46 -05:00
|
|
|
|
{
|
2008-06-17 10:30:00 -05:00
|
|
|
|
trace << "PyDbU_getGrid ()" << endl;
|
2008-06-09 11:41:46 -05:00
|
|
|
|
|
|
|
|
|
PyObject* arg0;
|
2008-06-17 10:30:00 -05:00
|
|
|
|
if ( ! ParseOneArg ( "Dbu.getGrid", args,INT_ARG, &arg0 ) ) return ( NULL );
|
2008-06-09 11:41:46 -05:00
|
|
|
|
|
2008-06-17 10:30:00 -05:00
|
|
|
|
return ( Py_BuildValue("d",DbU::getGrid(PyInt_AsLong(arg0))) );
|
2008-06-09 11:41:46 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
// Module Method : "PyDbU_getLambda ()"
|
|
|
|
|
|
|
|
|
|
extern PyObject* PyDbU_getLambda ( PyObject* module, PyObject* args )
|
|
|
|
|
{
|
|
|
|
|
trace << "PyDbU_getLambda ()" << endl;
|
|
|
|
|
|
|
|
|
|
PyObject* arg0;
|
|
|
|
|
if ( ! ParseOneArg ( "Dbu.getLambda", args,INT_ARG, &arg0 ) ) return ( NULL );
|
|
|
|
|
|
|
|
|
|
return ( Py_BuildValue("d",DbU::getLambda(PyInt_AsLong(arg0))) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-10-15 08:46:29 -05:00
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
// Module Method : "PyDbU_getPhysical ()"
|
|
|
|
|
|
|
|
|
|
extern PyObject* PyDbU_getPhysical ( PyObject* module, PyObject* args )
|
|
|
|
|
{
|
|
|
|
|
trace << "PyDbU_getPhysical ()" << endl;
|
|
|
|
|
|
|
|
|
|
PyObject* arg0;
|
|
|
|
|
PyObject* arg1;
|
|
|
|
|
if ( ! ParseTwoArg ( "Dbu.getPhysical", args,INTS2_ARG, &arg0, &arg1 ) ) return ( NULL );
|
|
|
|
|
|
|
|
|
|
return ( Py_BuildValue("d",DbU::getPhysical(PyInt_AsLong(arg0), PyInt_AsUnitPower(arg1))) );
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-09 11:41:46 -05:00
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
// Module Method : "PyDbU_getResolution ()"
|
|
|
|
|
|
|
|
|
|
extern PyObject* PyDbU_getResolution ( PyObject* module )
|
|
|
|
|
{
|
|
|
|
|
trace << "PyDbU_getResolution ()" << endl;
|
|
|
|
|
|
|
|
|
|
return ( Py_BuildValue("d",DbU::getResolution()) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-10-15 08:46:29 -05:00
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
// Module Method : "PyDbu_getOnPhysicalGrid ()"
|
|
|
|
|
|
|
|
|
|
extern PyObject* PyDbU_getOnPhysicalGrid ( PyObject* module, PyObject* args )
|
|
|
|
|
{
|
|
|
|
|
trace << "PyDbU_getOnPhysicalGrid ()" << endl;
|
|
|
|
|
|
|
|
|
|
PyObject* arg0;
|
|
|
|
|
PyObject* arg1;
|
2010-05-17 09:40:36 -05:00
|
|
|
|
DbU::Unit result = 0;
|
2009-10-15 08:46:29 -05:00
|
|
|
|
|
|
|
|
|
HTRY
|
|
|
|
|
__cs.init ( "DbU.getOnPhysicalGrid" );
|
|
|
|
|
if (!PyArg_ParseTuple(args, "O&|O&O&:DbU.getOnPhysicalGrid", Converter, &arg0, Converter, &arg1)) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( __cs.getObjectIds() == INTS2_ARG ) {
|
|
|
|
|
result = DbU::getOnPhysicalGrid ( PyInt_AsLong(arg0), PyInt_AsSnapMode(arg1) );
|
|
|
|
|
} else if ( __cs.getObjectIds() == INT_ARG ) {
|
|
|
|
|
result = DbU::getOnPhysicalGrid ( PyInt_AsLong(arg0) );
|
|
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
HCATCH
|
|
|
|
|
|
|
|
|
|
return ( Py_BuildValue ( "i", result ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-06-09 11:41:46 -05:00
|
|
|
|
#endif // End of Python Module Code Part.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // End of extern "C".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // End of Isobar namespace.
|
|
|
|
|
|