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
|
/* -*- c++ -*- */
/*
* Copyright 2006,2010 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio 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, or (at your option)
* any later version.
*
* GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
/*
* N.B., this is a _very_ non-standard SWIG .i file
*
* It contains a bunch of magic that is required to ensure that when
* these classes are used as base classes for python code,
* everything works when calling back from C++ into Python.
*
* The gist of the problem is that our C++ code is usually not holding
* the Python Global Interpreter Lock (GIL). Thus if we invoke a
* "director" method from C++, we'll end up in Python not holding the
* GIL. Disaster (SIGSEGV) will result. To avoid this we insert a
* "shim" that grabs and releases the GIL.
*
* If you don't understand SWIG "directors" or the Python GIL,
* don't bother trying to understand what's going on in here.
*
* [We could eliminate a bunch of this hair by requiring SWIG 1.3.29
* or later and some additional magic declarations, but many systems
* aren't shipping that version yet. Thus we kludge...]
*/
// Directors are only supported in Python, Java and C#
#ifdef SWIGPYTHON
%include "pmt_swig.i"
using namespace pmt;
// Enable SWIG directors for these classes
%feature("director") gr_py_feval_dd;
%feature("director") gr_py_feval_cc;
%feature("director") gr_py_feval_ll;
%feature("director") gr_py_feval;
%feature("director") gr_py_feval_p;
%feature("nodirector") gr_py_feval_dd::calleval;
%feature("nodirector") gr_py_feval_cc::calleval;
%feature("nodirector") gr_py_feval_ll::calleval;
%feature("nodirector") gr_py_feval::calleval;
%feature("nodirector") gr_py_feval_p::calleval;
%rename(feval_dd) gr_py_feval_dd;
%rename(feval_cc) gr_py_feval_cc;
%rename(feval_ll) gr_py_feval_ll;
%rename(feval) gr_py_feval;
%rename(feval_p) gr_py_feval_p;
//%exception {
// try { $action }
// catch (Swig::DirectorException &e) { std::cerr << e.getMessage(); SWIG_fail; }
//}
%{
// class that ensures we acquire and release the Python GIL
class ensure_py_gil_state {
PyGILState_STATE d_gstate;
public:
ensure_py_gil_state() { d_gstate = PyGILState_Ensure(); }
~ensure_py_gil_state() { PyGILState_Release(d_gstate); }
};
%}
/*
* These are the real C++ base classes, however we don't want these exposed.
*/
%ignore gr_feval_dd;
class gr_feval_dd
{
protected:
virtual double eval(double x);
public:
gr_feval_dd() {}
virtual ~gr_feval_dd();
virtual double calleval(double x);
};
%ignore gr_feval_cc;
class gr_feval_cc
{
protected:
virtual gr_complex eval(gr_complex x);
public:
gr_feval_cc() {}
virtual ~gr_feval_cc();
virtual gr_complex calleval(gr_complex x);
};
%ignore gr_feval_ll;
class gr_feval_ll
{
protected:
virtual long eval(long x);
public:
gr_feval_ll() {}
virtual ~gr_feval_ll();
virtual long calleval(long x);
};
%ignore gr_feval;
class gr_feval
{
protected:
virtual void eval();
public:
gr_feval() {}
virtual ~gr_feval();
virtual void calleval();
};
%ignore gr_feval_p;
class gr_feval_p
{
protected:
virtual void eval(pmt_t x);
public:
gr_feval_p() {}
virtual ~gr_feval_p();
virtual void calleval(pmt_t x);
};
/*
* These are the ones to derive from in Python. They have the magic shim
* that ensures that we're holding the Python GIL when we enter Python land...
*/
%inline %{
#include <gruel/pmt.h>
class gr_py_feval_dd : public gr_feval_dd
{
public:
double calleval(double x)
{
ensure_py_gil_state _lock;
return eval(x);
}
};
class gr_py_feval_cc : public gr_feval_cc
{
public:
gr_complex calleval(gr_complex x)
{
ensure_py_gil_state _lock;
return eval(x);
}
};
class gr_py_feval_ll : public gr_feval_ll
{
public:
long calleval(long x)
{
ensure_py_gil_state _lock;
return eval(x);
}
};
class gr_py_feval : public gr_feval
{
public:
void calleval()
{
ensure_py_gil_state _lock;
eval();
}
};
class gr_py_feval_p : public gr_feval_p
{
public:
void calleval(pmt::pmt_t x)
{
ensure_py_gil_state _lock;
eval(x);
}
};
%}
// examples / test cases
%rename(feval_dd_example) gr_feval_dd_example;
double gr_feval_dd_example(gr_feval_dd *f, double x);
%rename(feval_cc_example) gr_feval_cc_example;
gr_complex gr_feval_cc_example(gr_feval_cc *f, gr_complex x);
%rename(feval_ll_example) gr_feval_ll_example;
long gr_feval_ll_example(gr_feval_ll *f, long x);
%rename(feval_example) gr_feval_example;
void gr_feval_example(gr_feval *f);
#endif // SWIGPYTHON
|