summaryrefslogtreecommitdiffstats
path: root/src/python/named_expressions.cpp
blob: 6faffee54ca89ab76ab8e0125930340b37cdb6b5 (plain)
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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include "named_expressions.hpp"
#include "named_expression.hpp"
#include "global.hpp"
#include "orcus/spreadsheet/document.hpp"

#include <ixion/formula.hpp>
#include <ixion/model_context.hpp>
#include <ixion/named_expressions_iterator.hpp>
#include <ixion/formula_name_resolver.hpp>
#include <structmember.h>

namespace ss = orcus::spreadsheet;

namespace orcus { namespace python {

namespace {

/** non-python part. */
struct named_exps_data
{
    ss::sheet_t origin_sheet = -1; // -1 for global, >=0 for sheet local.
    const ss::document* doc = nullptr;
    ixion::named_expressions_iterator src; // original iterator to copy from.
    ixion::named_expressions_iterator iter;
};

/** python object. */
struct pyobj_named_exps
{
    PyObject_HEAD

    named_exps_data* data;
};

inline pyobj_named_exps* t(PyObject* self)
{
    return reinterpret_cast<pyobj_named_exps*>(self);
}

PyObject* named_exps_names(PyObject* self, PyObject* /*args*/, PyObject* /*kwargs*/)
{
    named_exps_data& data = *t(self)->data;
    PyObject* s = PySet_New(nullptr);

    for (auto iter = data.src; iter.has(); iter.next())
    {
        const std::string* name = iter.get().name;
        PySet_Add(s, PyUnicode_FromStringAndSize(name->data(), name->size()));
    }

    return s;
}

void tp_dealloc(pyobj_named_exps* self)
{
    delete self->data;
    Py_TYPE(self)->tp_free(reinterpret_cast<PyObject*>(self));
}

int tp_init(pyobj_named_exps* /*self*/, PyObject* /*args*/, PyObject* /*kwargs*/)
{
    return 0;
}

PyObject* tp_new(PyTypeObject* type, PyObject* /*args*/, PyObject* /*kwargs*/)
{
    pyobj_named_exps* self = t(type->tp_alloc(type, 0));
    self->data = new named_exps_data;
    return reinterpret_cast<PyObject*>(self);
}

PyObject* tp_iter(PyObject* self)
{
    named_exps_data& data = *t(self)->data;
    data.iter = data.src;

    Py_INCREF(self);
    return self;
}

PyObject* tp_iternext(PyObject* self)
{
    named_exps_data& data = *t(self)->data;
    auto& iter = data.iter;

    if (!iter.has())
    {
        PyErr_SetNone(PyExc_StopIteration);
        return nullptr;
    }

    ixion::named_expressions_iterator::named_expression item = iter.get();
    iter.next();

    PyObject* name = PyUnicode_FromStringAndSize(item.name->data(), item.name->size());
    if (!name)
        return nullptr;

    PyObject* ne = create_named_exp_object(*data.doc, item.expression);
    if (!ne)
        return nullptr;

    PyObject* tup = PyTuple_New(2);
    PyTuple_SET_ITEM(tup, 0, name);
    PyTuple_SET_ITEM(tup, 1, ne);

    return tup;
}

Py_ssize_t sq_length(PyObject* self)
{
    named_exps_data& data = *t(self)->data;
    return data.src.size();
}

PySequenceMethods tp_as_sequence =
{
    sq_length, // lenfunc sq_length
    0,         // binaryfunc sq_concat
    0,         // ssizeargfunc sq_repeat
    0,         // ssizeargfunc sq_item
    0,         // void *was_sq_slice
    0,         // ssizeobjargproc sq_ass_item
    0,         // void *was_sq_ass_slice
    0,         // objobjproc sq_contains
    0,         // binaryfunc sq_inplace_concat
    0,         // ssizeargfunc sq_inplace_repeat
};

PyMethodDef tp_methods[] =
{
    { "names", (PyCFunction)named_exps_names, METH_NOARGS, "Get names for all named expressions stored." },
    { nullptr }
};

PyMemberDef tp_members[] =
{
    { nullptr }
};

PyTypeObject named_exps_type =
{
    PyVarObject_HEAD_INIT(nullptr, 0)
    "orcus.NamedExpressions",                 // tp_name
    sizeof(pyobj_named_exps),                 // tp_basicsize
    0,                                        // tp_itemsize
    (destructor)tp_dealloc,                   // tp_dealloc
    0,                                        // tp_print
    0,                                        // tp_getattr
    0,                                        // tp_setattr
    0,                                        // tp_compare
    0,                                        // tp_repr
    0,                                        // tp_as_number
    &tp_as_sequence,                          // 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
    "orcus spreadsheet formula tokens",       // tp_doc
    0,		                                  // tp_traverse
    0,		                                  // tp_clear
    0,		                                  // tp_richcompare
    0,		                                  // tp_weaklistoffset
    tp_iter,		                          // tp_iter
    tp_iternext,                              // tp_iternext
    tp_methods,                               // tp_methods
    tp_members,                               // tp_members
    0,                                        // tp_getset
    0,                                        // tp_base
    0,                                        // tp_dict
    0,                                        // tp_descr_get
    0,                                        // tp_descr_set
    0,                                        // tp_dictoffset
    (initproc)tp_init,                        // tp_init
    0,                                        // tp_alloc
    tp_new,                                   // tp_new
};

} // anonymous namespace

PyObject* create_named_expressions_object(
    spreadsheet::sheet_t origin_sheet, const spreadsheet::document& doc, ixion::named_expressions_iterator iter)
{
    PyTypeObject* type = get_named_exps_type();

    PyObject* obj = create_object_from_type(type);
    if (!obj)
        return nullptr;

    type->tp_init(obj, nullptr, nullptr);

    named_exps_data& data = *t(obj)->data;
    data.src = iter;
    data.origin_sheet = origin_sheet;
    data.doc = &doc;

    return obj;
}

PyTypeObject* get_named_exps_type()
{
    return &named_exps_type;
}

}}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */