cyphesis/rulesets/Python_API.h
Al Riddoch 6bb82c3197 * Added more Python/C API code. Basic framework now exists for
creating and manipulating Operations in the python code.

Al
2000-11-14 15:52:10 +00:00

79 lines
2.7 KiB
C

#ifndef PYTHON_API_H
#define PYTHON_API_H
#include <Atlas/Message/Object.h>
#include <Atlas/Objects/Operation/RootOperation.h>
#include <Atlas/Objects/Operation/Login.h>
#include <Atlas/Objects/Operation/Create.h>
#include <Atlas/Objects/Operation/Move.h>
#include <Atlas/Objects/Operation/Set.h>
using Atlas::Message::Object;
using Atlas::Objects::Operation::RootOperation;
using Atlas::Objects::Operation::Login;
using Atlas::Objects::Operation::Create;
using Atlas::Objects::Operation::Move;
using Atlas::Objects::Operation::Set;
typedef struct {
PyObject_HEAD
PyObject * Object_attr; /* Attributes dictionary */
Object * m_obj;
} AtlasObject;
#define ATLAS_OPERATION(_name) typedef struct { \
PyObject_HEAD \
PyObject * Operation_attr; \
_name * operation; \
} _name ## Object;
#define ATLAS_OPERATION_METHODS(_name) \
static PyMethodDef _name ## _methods[] = { \
{"SetSerialno", (PyCFunction)Operation_SetSerialno, METH_VARARGS}, \
{"SetRefno", (PyCFunction)Operation_SetRefno, METH_VARARGS}, \
{"SetFrom", (PyCFunction)Operation_SetFrom, METH_VARARGS}, \
{"SetTo", (PyCFunction)Operation_SetTo, METH_VARARGS}, \
{"SetSeconds", (PyCFunction)Operation_SetSeconds, METH_VARARGS}, \
{"SetFutureSeconds",(PyCFunction)Operation_SetFutureSeconds,METH_VARARGS}, \
{"SetTimeString", (PyCFunction)Operation_SetTimeString, METH_VARARGS}, \
{"SetArgs", (PyCFunction)Operation_SetArgs, METH_VARARGS}, \
{"GetSerialno", (PyCFunction)Operation_GetSerialno, METH_VARARGS}, \
{"GetRefno", (PyCFunction)Operation_GetRefno, METH_VARARGS}, \
{"GetFrom", (PyCFunction)Operation_GetFrom, METH_VARARGS}, \
{"GetTo", (PyCFunction)Operation_GetTo, METH_VARARGS}, \
{"GetSeconds", (PyCFunction)Operation_GetSeconds, METH_VARARGS}, \
{"GetFutureSeconds",(PyCFunction)Operation_GetFutureSeconds,METH_VARARGS}, \
{"GetTimeString", (PyCFunction)Operation_GetTimeString, METH_VARARGS}, \
{"GetArgs", (PyCFunction)Operation_GetArgs, METH_VARARGS}, \
{NULL, NULL} \
};
#define ATLAS_OPERATION_TYPE(_name) \
staticforward PyTypeObject _name ## _Type = { \
PyObject_HEAD_INIT(&PyType_Type) \
0, /*ob_size*/ \
"Operation", /*tp_name*/ \
sizeof(RootOperationObject), /*tp_basicsize*/ \
0, /*tp_itemsize*/ \
/* methods */ \
(destructor)Operation_dealloc, /*tp_dealloc*/ \
0, /*tp_print*/ \
(getattrfunc)Operation_getattr, /*tp_getattr*/ \
(setattrfunc)Operation_setattr, /*tp_setattr*/ \
0, /*tp_compare*/ \
0, /*tp_repr*/ \
0, /*tp_as_number*/ \
0, /*tp_as_sequence*/ \
0, /*tp_as_mapping*/ \
0, /*tp_hash*/ \
};
ATLAS_OPERATION(RootOperation)
ATLAS_OPERATION(Login)
ATLAS_OPERATION(Create)
ATLAS_OPERATION(Move)
ATLAS_OPERATION(Set)
#endif /* PYTHON_API_H */