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
|
//
// Copyright 2012 Josh Blum
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with io_sig program. If not, see <http://www.gnu.org/licenses/>.
%include "gruel_common.i"
%inline %{
namespace gnuradio
{
struct TopBlockPython : TopBlock
{
TopBlockPython(void):
TopBlock("top")
{
//NOP
}
TopBlockPython(const std::string &name):
TopBlock(name)
{
//NOP
}
void wait(void)
{
GR_PYTHON_BLOCKING_CODE
(
TopBlock::wait();
)
}
};
}
%}
%pythoncode %{
def internal_connect__(fcn, obj, *args):
def to_element(obj):
if isinstance(obj, Element): return obj
try: return obj.shared_to_element()
except: raise Exception('cant coerce obj %s to element'%(obj))
if len(args) == 1:
fcn(obj, to_element(args[0]))
return
for src, sink in zip(args, args[1:]):
try: src, src_index = src
except: src_index = 0
try: sink, sink_index = sink
except: sink_index = 0
fcn(obj, to_element(src), src_index, to_element(sink), sink_index)
class top_block(TopBlockPython):
def __init__(self, *args, **kwargs):
TopBlockPython.__init__(self, *args, **kwargs)
def connect(self, *args):
return internal_connect__(TopBlockPython.connect, self, *args)
def disconnect(self, *args):
return internal_connect__(TopBlockPython.disconnect, self, *args)
class hier_block(HierBlock):
def __init__(self, *args, **kwargs):
HierBlock.__init__(self, *args, **kwargs)
def connect(self, *args):
return internal_connect__(HierBlock.connect, self, *args)
def disconnect(self, *args):
return internal_connect__(HierBlock.disconnect, self, *args)
hier_block2 = hier_block
%}
|