1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/*
* python/var - DB-All.e Var python bindings
*
* Copyright (C) 2013 ARPA-SIM <urpsim@smr.arpa.emr.it>
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author: Enrico Zini <enrico@enricozini.com>
*/
#include "var.h"
#include "common.h"
#include "varinfo.h"
using namespace std;
using namespace dballe::python;
using namespace wreport;
extern "C" {
static PyObject* dpy_Var_code(dpy_Var* self, void* closure) { return format_varcode(self->var.code()); }
static PyObject* dpy_Var_isset(dpy_Var* self, void* closure) {
if (self->var.isset())
Py_RETURN_TRUE;
else
Py_RETURN_FALSE;
}
static PyObject* dpy_Var_info(dpy_Var* self, void* closure) {
return (PyObject*)varinfo_create(self->var.info());
}
static PyGetSetDef dpy_Var_getsetters[] = {
{"code", (getter)dpy_Var_code, NULL, "variable code", NULL },
{"isset", (getter)dpy_Var_isset, NULL, "true if the value is set", NULL },
{"info", (getter)dpy_Var_info, NULL, "Varinfo for this variable", NULL },
{NULL}
};
static PyObject* dpy_Var_enqi(dpy_Var* self)
{
try {
return PyInt_FromLong(self->var.enqi());
} catch (wreport::error& e) {
return raise_wreport_exception(e);
} catch (std::exception& se) {
return raise_std_exception(se);
}
}
static PyObject* dpy_Var_enqd(dpy_Var* self)
{
try {
return PyFloat_FromDouble(self->var.enqd());
} catch (wreport::error& e) {
return raise_wreport_exception(e);
} catch (std::exception& se) {
return raise_std_exception(se);
}
}
static PyObject* dpy_Var_enqc(dpy_Var* self)
{
try {
return PyString_FromString(self->var.enqc());
} catch (wreport::error& e) {
return raise_wreport_exception(e);
} catch (std::exception& se) {
return raise_std_exception(se);
}
}
static PyObject* dpy_Var_enq(dpy_Var* self)
{
return var_value_to_python(self->var);
}
static PyObject* dpy_Var_get(dpy_Var* self, PyObject* args, PyObject* kw)
{
static char* kwlist[] = { "default", NULL };
PyObject* def = Py_None;
if (!PyArg_ParseTupleAndKeywords(args, kw, "|O", kwlist, &def))
return NULL;
if (self->var.isset())
return var_value_to_python(self->var);
else
{
Py_INCREF(def);
return def;
}
}
static PyObject* dpy_Var_format(dpy_Var* self, PyObject* args, PyObject* kw)
{
static char* kwlist[] = { "default", NULL };
const char* def = "";
if (!PyArg_ParseTupleAndKeywords(args, kw, "|s", kwlist, &def))
return NULL;
std::string f = self->var.format(def);
return PyString_FromString(f.c_str());
}
static PyMethodDef dpy_Var_methods[] = {
{"enqi", (PyCFunction)dpy_Var_enqi, METH_NOARGS, "get the value of the variable, as an int" },
{"enqd", (PyCFunction)dpy_Var_enqd, METH_NOARGS, "get the value of the variable, as a float" },
{"enqc", (PyCFunction)dpy_Var_enqc, METH_NOARGS, "get the value of the variable, as a str" },
{"enq", (PyCFunction)dpy_Var_enq, METH_NOARGS, "get the value of the variable, as int, float or str according the variable definition" },
{"get", (PyCFunction)dpy_Var_get, METH_VARARGS, "get the value of the variable, with a default if it is unset" },
{"format", (PyCFunction)dpy_Var_format, METH_VARARGS, "format the value of the variable to a string" },
{NULL}
};
static int dpy_Var_init(dpy_Var* self, PyObject* args, PyObject* kw)
{
// People should not invoke Var() as a constructor, but if they do,
// this is better than a segfault later on
PyErr_SetString(PyExc_NotImplementedError, "Var objects cannot be constructed explicitly");
return -1;
}
static void dpy_Var_dealloc(dpy_Var* self)
{
// Explicitly call destructor
self->var.~Var();
}
static PyObject* dpy_Var_str(dpy_Var* self)
{
std::string f = self->var.format("None");
return PyString_FromString(f.c_str());
}
static PyObject* dpy_Var_repr(dpy_Var* self)
{
string res = "Var('";
res += varcode_format(self->var.code());
if (self->var.info()->is_string())
{
res += "', '";
res += self->var.format();
res += "')";
} else {
res += "', ";
res += self->var.format("None");
res += ")";
}
return PyString_FromString(res.c_str());
}
static int compare_values(const Var& a, const Var& b)
{
// Keep in mind that varinfos could be different even if the varcodes
// are the same, as is the case with varinfos modified by C modifiers
// during BUFR decoding. If values are not strings, they should be
// compared with enqd
if (a.isset())
{
if (b.isset())
{
if (a.info()->is_string())
return strcmp(a.value(), b.value());
else {
double diff = a.enqd() - b.enqd();
if (diff < 0) return -1;
if (diff > 0) return 1;
return 0;
}
} else
return 1;
} else {
if (b.isset())
return -1;
else
return 0;
}
}
static PyObject* dpy_Var_richcompare(dpy_Var* a, dpy_Var* b, int op)
{
PyObject *result;
int cmp = 0;
// Make sure both arguments are Vars.
if (!(dpy_Var_Check(a) && dpy_Var_Check(b))) {
result = Py_NotImplemented;
goto out;
}
// Start by numerically comparing codes
cmp = a->var.code() - b->var.code();
if (cmp == 0)
// If they are the same, compare values.
cmp = compare_values(a->var, b->var);
switch (op) {
case Py_LT: cmp = cmp < 0; break;
case Py_LE: cmp = cmp <= 0; break;
case Py_EQ: cmp = cmp == 0; break;
case Py_NE: cmp = cmp != 0; break;
case Py_GT: cmp = cmp > 0; break;
case Py_GE: cmp = cmp >= 0; break;
default:
result = Py_NotImplemented;
goto out;
}
result = cmp ? Py_True : Py_False;
out:
Py_INCREF(result);
return result;
}
PyTypeObject dpy_Var_Type = {
PyObject_HEAD_INIT(NULL)
0, // ob_size
"dballe.Var", // tp_name
sizeof(dpy_Var), // tp_basicsize
0, // tp_itemsize
(destructor)dpy_Var_dealloc, // tp_dealloc
0, // tp_print
0, // tp_getattr
0, // tp_setattr
0, // tp_compare
(reprfunc)dpy_Var_repr, // tp_repr
0, // tp_as_number
0, // tp_as_sequence
0, // tp_as_mapping
0, // tp_hash
0, // tp_call
(reprfunc)dpy_Var_str, // tp_str
0, // tp_getattro
0, // tp_setattro
0, // tp_as_buffer
Py_TPFLAGS_DEFAULT, // tp_flags
"DB-All.e Variable", // tp_doc
0, // tp_traverse
0, // tp_clear
(richcmpfunc)dpy_Var_richcompare, // tp_richcompare
0, // tp_weaklistoffset
0, // tp_iter
0, // tp_iternext
dpy_Var_methods, // tp_methods
0, // tp_members
dpy_Var_getsetters, // tp_getset
0, // tp_base
0, // tp_dict
0, // tp_descr_get
0, // tp_descr_set
0, // tp_dictoffset
(initproc)dpy_Var_init, // tp_init
0, // tp_alloc
0, // tp_new
};
}
namespace dballe {
namespace python {
PyObject* var_value_to_python(const wreport::Var& v)
{
try {
if (v.info()->is_string())
return PyString_FromString(v.enqc());
else if (v.info()->scale == 0)
return PyInt_FromLong(v.enqi());
else
return PyFloat_FromDouble(v.enqd());
} catch (wreport::error& e) {
return raise_wreport_exception(e);
} catch (std::exception& se) {
return raise_std_exception(se);
}
}
dpy_Var* var_create(const wreport::Varinfo& v)
{
dpy_Var* result = PyObject_New(dpy_Var, &dpy_Var_Type);
if (!result) return NULL;
result = (dpy_Var*)PyObject_Init((PyObject*)result, &dpy_Var_Type);
new (&result->var) Var(v);
return result;
}
dpy_Var* var_create(const wreport::Varinfo& v, int val)
{
dpy_Var* result = PyObject_New(dpy_Var, &dpy_Var_Type);
if (!result) return NULL;
result = (dpy_Var*)PyObject_Init((PyObject*)result, &dpy_Var_Type);
new (&result->var) Var(v, val);
return result;
}
dpy_Var* var_create(const wreport::Varinfo& v, double val)
{
dpy_Var* result = PyObject_New(dpy_Var, &dpy_Var_Type);
if (!result) return NULL;
result = (dpy_Var*)PyObject_Init((PyObject*)result, &dpy_Var_Type);
new (&result->var) Var(v, val);
return result;
}
dpy_Var* var_create(const wreport::Varinfo& v, const char* val)
{
dpy_Var* result = PyObject_New(dpy_Var, &dpy_Var_Type);
if (!result) return NULL;
result = (dpy_Var*)PyObject_Init((PyObject*)result, &dpy_Var_Type);
new (&result->var) Var(v, val);
return result;
}
dpy_Var* var_create(const wreport::Var& v)
{
dpy_Var* result = PyObject_New(dpy_Var, &dpy_Var_Type);
if (!result) return NULL;
result = (dpy_Var*)PyObject_Init((PyObject*)result, &dpy_Var_Type);
new (&result->var) Var(v);
return result;
}
void register_var(PyObject* m)
{
dpy_Var_Type.tp_new = PyType_GenericNew;
if (PyType_Ready(&dpy_Var_Type) < 0)
return;
Py_INCREF(&dpy_Var_Type);
PyModule_AddObject(m, "Var", (PyObject*)&dpy_Var_Type);
}
}
}
|