ISCE_INSAR/components/stdproc/orbit/fdmocomp/bindings/fdmocompmodule.cpp

295 lines
7.9 KiB
C++

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Copyright 2013 California Institute of Technology. ALL RIGHTS RESERVED.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// United States Government Sponsorship acknowledged. This software is subject to
// U.S. export control laws and regulations and has been classified as 'EAR99 NLR'
// (No [Export] License Required except when exporting to an embargoed country,
// end user, or in support of a prohibited end use). By downloading this software,
// the user agrees to comply with all applicable U.S. export laws and regulations.
// The user has the responsibility to obtain export licenses, or other export
// authority as may be required before exporting this software to any 'EAR99'
// embargoed foreign country or citizen of those countries.
//
// Author: Giangi Sacco
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#include <Python.h>
#include "fdmocompmodule.h"
#include <cmath>
#include <sstream>
#include <iostream>
#include <string>
#include <stdint.h>
#include <vector>
using namespace std;
static const char * const __doc__ = "Python extension for fdmocomp";
PyModuleDef moduledef = {
// header
PyModuleDef_HEAD_INIT,
// name of the module
"fdmocomp",
// module documentation string
__doc__,
// size of the per-interpreter state of the module;
// -1 if this state is global
-1,
fdmocomp_methods,
};
// initialization function for the module
// *must* be called PyInit_fdmocomp
PyMODINIT_FUNC
PyInit_fdmocomp()
{
// create the module using moduledef struct defined above
PyObject * module = PyModule_Create(&moduledef);
// check whether module creation succeeded and raise an exception if not
if (!module) {
return module;
}
// otherwise, we have an initialized module
// and return the newly created module
return module;
}
PyObject * allocate_fdArray_C(PyObject* self, PyObject* args)
{
int dim1 = 0;
if(!PyArg_ParseTuple(args, "i", &dim1))
{
return NULL;
}
allocate_fdArray_f(&dim1);
return Py_BuildValue("i", 0);
}
PyObject * deallocate_fdArray_C(PyObject* self, PyObject* args)
{
deallocate_fdArray_f();
return Py_BuildValue("i", 0);
}
PyObject * allocate_vsch_C(PyObject* self, PyObject* args)
{
int dim1 = 0;
int dim2 = 0;
if(!PyArg_ParseTuple(args, "ii", &dim1, &dim2))
{
return NULL;
}
allocate_vsch_f(&dim1, &dim2);
return Py_BuildValue("i", 0);
}
PyObject * deallocate_vsch_C(PyObject* self, PyObject* args)
{
deallocate_vsch_f();
return Py_BuildValue("i", 0);
}
PyObject * fdmocomp_C(PyObject* self, PyObject* args)
{
fdmocomp_f();
return Py_BuildValue("i", 0);
}
PyObject * setStartingRange_C(PyObject* self, PyObject* args)
{
double var;
if(!PyArg_ParseTuple(args, "d", &var))
{
return NULL;
}
setStartingRange_f(&var);
return Py_BuildValue("i", 0);
}
PyObject * setLookSide_C(PyObject* self, PyObject *args)
{
int var;
if(!PyArg_ParseTuple(args,"i",&var))
{
return NULL;
}
setLookSide_f(&var);
return Py_BuildValue("i",0);
}
PyObject * setPRF_C(PyObject* self, PyObject* args)
{
double var;
if(!PyArg_ParseTuple(args, "d", &var))
{
return NULL;
}
setPRF_f(&var);
return Py_BuildValue("i", 0);
}
PyObject * setRadarWavelength_C(PyObject* self, PyObject* args)
{
double var;
if(!PyArg_ParseTuple(args, "d", &var))
{
return NULL;
}
setRadarWavelength_f(&var);
return Py_BuildValue("i", 0);
}
PyObject * setWidth_C(PyObject* self, PyObject* args)
{
int var;
if(!PyArg_ParseTuple(args, "i", &var))
{
return NULL;
}
setWidth_f(&var);
return Py_BuildValue("i", 0);
}
PyObject * setHeigth_C(PyObject* self, PyObject* args)
{
int var;
if(!PyArg_ParseTuple(args, "i", &var))
{
return NULL;
}
setHeigth_f(&var);
return Py_BuildValue("i", 0);
}
PyObject * setPlatformHeigth_C(PyObject* self, PyObject* args)
{
int var;
if(!PyArg_ParseTuple(args, "i", &var))
{
return NULL;
}
setPlatformHeigth_f(&var);
return Py_BuildValue("i", 0);
}
PyObject * setRangeSamplingRate_C(PyObject* self, PyObject* args)
{
double var;
if(!PyArg_ParseTuple(args, "d", &var))
{
return NULL;
}
setRangeSamplingRate_f(&var);
return Py_BuildValue("i", 0);
}
PyObject * setRadiusOfCurvature_C(PyObject* self, PyObject* args)
{
double var;
if(!PyArg_ParseTuple(args, "d", &var))
{
return NULL;
}
setRadiusOfCurvature_f(&var);
return Py_BuildValue("i", 0);
}
PyObject * setDopplerCoefficients_C(PyObject* self, PyObject* args)
{
int dim1 = 0;
PyObject * list;
if(!PyArg_ParseTuple(args, "Oi", &list,&dim1))
{
return NULL;
}
if(!PyList_Check(list))
{
cout << "Error in file " << __FILE__ << " at line " << __LINE__ <<
". Expecting a list type object" << endl;
exit(1);
}
double * vectorV = new double[dim1];
for(int i = 0; i < dim1; ++i)
{
PyObject * listEl = PyList_GetItem(list,i);
if(listEl == NULL)
{
cout << "Error in file " << __FILE__ << " at line " << __LINE__ <<
". Cannot retrieve list element" << endl;
exit(1);
}
vectorV[i] = (double) PyFloat_AsDouble(listEl);
if(PyErr_Occurred() != NULL)
{
cout << "Error in file " << __FILE__ << " at line " << __LINE__ <<
". Cannot convert Py Object to C " << endl;
exit(1);
}
}
setDopplerCoefficients_f(vectorV, &dim1);
delete [] vectorV;
return Py_BuildValue("i", 0);
}
PyObject * setSchVelocity_C(PyObject* self, PyObject* args)
{
PyObject * list;
int dim1 = 0;
int dim2 = 0;
if(!PyArg_ParseTuple(args, "Oii", &list, &dim1, &dim2))
{
return NULL;
}
if(!PyList_Check(list))
{
cout << "Error in file " << __FILE__ << " at line " << __LINE__ <<
". Expecting a list type object" << endl;
exit(1);
}
double * vectorV = new double[dim1*dim2];
for(int i = 0; i < dim1; ++i)
{
PyObject * listEl = PyList_GetItem(list,i);
if(!PyList_Check(listEl))
{
cout << "Error in file " << __FILE__ << " at line " << __LINE__ <<
". Expecting a list type object" << endl;
exit(1);
}
for(int j = 0; j < dim2; ++j)
{
PyObject * listElEl = PyList_GetItem(listEl,j);
if(listElEl == NULL)
{
cout << "Error in file " << __FILE__ << " at line " <<
__LINE__ << ". Cannot retrieve list element" << endl;
exit(1);
}
vectorV[dim2*i + j] = (double) PyFloat_AsDouble(listElEl);
if(PyErr_Occurred() != NULL)
{
cout << "Error in file " << __FILE__ << " at line " <<
__LINE__ << ". Cannot convert Py Object to C " << endl;
exit(1);
}
}
}
setSchVelocity_f(vectorV, &dim1, &dim2);
delete [] vectorV;
return Py_BuildValue("i", 0);
}
PyObject * getCorrectedDoppler_C(PyObject* self, PyObject* args)
{
double var;
getCorrectedDoppler_f(&var);
return Py_BuildValue("d",var);
}
// end of file