/* * Authors: * Alexey V. Stratulat <alexey.stratulat@demlabs.net> * DeM Labs Inc. https://demlabs.net * CellFrame https://cellframe.net * Sources https://gitlab.demlabs.net/cellframe * Copyright (c) 2017-2021 * All rights reserved. This file is part of DAP (Deus Applications Prototypes) the open source project DAP (Deus Applicaions Prototypes) 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 3 of the License, or (at your option) any later version. DAP 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 any DAP based project. If not, see <http://www.gnu.org/licenses/>. */ #ifndef _WRAPPING_DAP_CHAIN_DATUM_TOKEN_ #define _WRAPPING_DAP_CHAIN_DATUM_TOKEN_ #include "Python.h" #include "dap_chain_datum_token.h" #include "wrapping_dap_chain_common.h" #include "dap_tsd.h" #ifdef __cplusplus extern "C" { #endif /* DAP chain datum token */ typedef struct PyDapChainDatumToken{ PyObject_HEAD dap_chain_datum_token_t *token; size_t token_size; }PyDapChainDatumTokenObject; PyObject *wrapping_dap_chain_datum_token_get_ticker(PyObject *self, void *closure); PyObject *wrapping_dap_chain_datum_token_get_type_str(PyObject *self, void *closure); //PyObject *wrapping_dap_chain_datum_token_get_size(PyObject *self, void *closure); PyObject *wrapping_dap_chain_datum_token_get_data(PyObject *self, void *closure); static PyGetSetDef PyDapChainDatumTokenGetsSetsDef[]={ {"ticker", (getter)wrapping_dap_chain_datum_token_get_ticker, NULL, NULL, NULL}, {"typeStr", (getter)wrapping_dap_chain_datum_token_get_type_str, NULL, NULL, NULL}, {"data", (getter)wrapping_dap_chain_datum_token_get_data, NULL, NULL, NULL}, {NULL} }; static PyMethodDef PyDapChainDatumTokenMethods[] = { {NULL, NULL, 0, NULL} }; static PyTypeObject DapChainDatumToken_DapChainDatumTokenObjectType = { PyVarObject_HEAD_INIT(NULL, 0) "CellFrame.Chain.DatumTokenObject", /* tp_name */ sizeof(PyDapChainDatumTokenObject), /* tp_basicsize */ 0, /* tp_itemsize */ 0, /* tp_dealloc */ 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ 0, /* tp_reserved */ 0, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ 0, /* tp_as_mapping */ 0, /* tp_hash */ 0, /* tp_call */ 0, /* tp_str */ 0, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ "Chain datum token object", /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ 0, /* tp_iter */ 0, /* tp_iternext */ PyDapChainDatumTokenMethods, /* tp_methods */ 0, /* tp_members */ PyDapChainDatumTokenGetsSetsDef, /* tp_getset */ 0, /* tp_base */ 0, /* tp_dict */ 0, /* tp_descr_get */ 0, /* tp_descr_set */ 0, /* tp_dictoffset */ 0, /* tp_init */ 0, /* tp_alloc */ PyType_GenericNew, /* tp_new */ }; /* ------------------------------------------- */ /* DAP chain datum token emission */ typedef struct PyDapChainDatumTokenEmission{ PyObject_HEAD dap_chain_datum_token_emission_t *token_emission; size_t token_size; }PyDapChainDatumTokenEmissionObject; PyObject *wrapping_dap_chain_datum_token_emission_get_version(PyObject *self, void *closure); PyObject *wrapping_dap_chain_datum_token_emission_get_type_str(PyObject *self, void *closure); PyObject *wrapping_dap_chain_datum_token_emission_get_ticker(PyObject *self, void *closure); PyObject *wrapping_dap_chain_datum_token_emission_get_addr(PyObject *self, void *closure); PyObject *wrapping_dap_chain_datum_token_emission_get_value(PyObject *self, void *closure); PyObject *wrapping_dap_chain_datum_token_emission_get_nonce(PyObject *self, void *closure); PyObject *wrapping_dap_chain_datum_token_emission_get_data(PyObject *self, void *closure); static PyGetSetDef PyDapChainDatumTokenEmissionGetsSetsDef[]={ {"version", (getter)wrapping_dap_chain_datum_token_emission_get_version, NULL, NULL}, {"typeStr", (getter)wrapping_dap_chain_datum_token_emission_get_type_str, NULL, NULL}, {"ticker", (getter)wrapping_dap_chain_datum_token_emission_get_ticker, NULL, NULL}, {"addr", (getter)wrapping_dap_chain_datum_token_emission_get_addr, NULL, NULL}, {"value", (getter)wrapping_dap_chain_datum_token_emission_get_value, NULL, NULL}, {"data", (getter)wrapping_dap_chain_datum_token_emission_get_data, NULL, NULL}, {NULL} }; static PyMethodDef PyDapChainDatumTokenEmissionMethods[]={ {NULL, NULL, 0, NULL} }; static PyTypeObject DapChainDatumTokenEmission_DapChainDatumTokenEmissionObjectType = { PyVarObject_HEAD_INIT(NULL, 0) "CellFrame.Chain.DatumTokenEmission", /* tp_name */ sizeof(PyDapChainDatumTokenEmissionObject), /* tp_basicsize */ 0, /* tp_itemsize */ 0, /* tp_dealloc */ 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ 0, /* tp_reserved */ 0, /* tp_repr */ 0, /* tp_as_number */ 0, /* tp_as_sequence */ 0, /* tp_as_mapping */ 0, /* tp_hash */ 0, /* tp_call */ 0, /* tp_str */ 0, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */ "Chain datum token emission object", /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ 0, /* tp_iter */ 0, /* tp_iternext */ PyDapChainDatumTokenEmissionMethods, /* tp_methods */ 0, /* tp_members */ PyDapChainDatumTokenEmissionGetsSetsDef, /* tp_getset */ 0, /* tp_base */ 0, /* tp_dict */ 0, /* tp_descr_get */ 0, /* tp_descr_set */ 0, /* tp_dictoffset */ 0, /* tp_init */ 0, /* tp_alloc */ PyType_GenericNew, /* tp_new */ }; /* ------------------------------------------- */ #ifdef __cplusplus } #endif #endif //_WRAPPING_DAP_CHAIN_DATUM_TOKEN_