Change type of gr_head nitems parameter to unsigned long long.
[debian/gnuradio] / grc / python / FlowGraph.py
1 """
2 Copyright 2008, 2009 Free Software Foundation, Inc.
3 This file is part of GNU Radio
4
5 GNU Radio Companion is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 GNU Radio Companion is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
18 """
19
20 import expr_utils
21 from .. base.FlowGraph import FlowGraph as _FlowGraph
22 from .. gui.FlowGraph import FlowGraph as _GUIFlowGraph
23 from Block import Block
24 from Connection import Connection
25 import re
26
27 _variable_matcher = re.compile('^(variable\w*)$')
28 _parameter_matcher = re.compile('^(parameter)$')
29
30 class FlowGraph(_FlowGraph, _GUIFlowGraph):
31
32         def __init__(self, **kwargs):
33                 _FlowGraph.__init__(self, **kwargs)
34                 _GUIFlowGraph.__init__(self)
35                 self._eval_cache = dict()
36
37         def _eval(self, code, namespace, namespace_hash):
38                 """
39                 Evaluate the code with the given namespace.
40                 @param code a string with python code
41                 @param namespace a dict representing the namespace
42                 @param namespace_hash a unique hash for the namespace
43                 @return the resultant object
44                 """
45                 if not code: raise Exception, 'Cannot evaluate empty statement.'
46                 my_hash = hash(code) ^ namespace_hash
47                 #cache if does not exist
48                 if not self._eval_cache.has_key(my_hash):
49                         self._eval_cache[my_hash] = eval(code, namespace, namespace)
50                 #return from cache
51                 return self._eval_cache[my_hash]
52
53         def _get_io_signature(self, pad_key):
54                 """
55                 Get an io signature for this flow graph.
56                 The pad key determines the directionality of the io signature.
57                 @param pad_key a string of pad_source or pad_sink
58                 @return a dict with: type, nports, vlen, size
59                 """
60                 pads = filter(lambda b: b.get_key() == pad_key, self.get_enabled_blocks())
61                 if not pads: return {
62                         'nports': '0',
63                         'type': '',
64                         'vlen': '0',
65                         'size': '0',
66                 }
67                 pad = pads[0] #take only the first, user should not have more than 1
68                 #load io signature
69                 return {
70                         'nports': str(pad.get_param('nports').get_evaluated()),
71                         'type': str(pad.get_param('type').get_evaluated()),
72                         'vlen': str(pad.get_param('vlen').get_evaluated()),
73                         'size': pad.get_param('type').get_opt('size'),
74                 }
75
76         def get_input_signature(self):
77                 """
78                 Get the io signature for the input side of this flow graph.
79                 The io signature with be "0", "0" if no pad source is present.
80                 @return a string tuple of type, num_ports, port_size
81                 """
82                 return self._get_io_signature('pad_source')
83
84         def get_output_signature(self):
85                 """
86                 Get the io signature for the output side of this flow graph.
87                 The io signature with be "0", "0" if no pad sink is present.
88                 @return a string tuple of type, num_ports, port_size
89                 """
90                 return self._get_io_signature('pad_sink')
91
92         def get_imports(self):
93                 """
94                 Get a set of all import statments in this flow graph namespace.
95                 @return a set of import statements
96                 """
97                 imports = sum([block.get_imports() for block in self.get_enabled_blocks()], [])
98                 imports = sorted(set(imports))
99                 return imports
100
101         def get_variables(self):
102                 """
103                 Get a list of all variables in this flow graph namespace.
104                 Exclude paramterized variables.
105                 @return a sorted list of variable blocks in order of dependency (indep -> dep)
106                 """
107                 variables = filter(lambda b: _variable_matcher.match(b.get_key()), self.get_enabled_blocks())
108                 return expr_utils.sort_objects(variables, lambda v: v.get_id(), lambda v: v.get_var_make())
109
110         def get_parameters(self):
111                 """
112                 Get a list of all paramterized variables in this flow graph namespace.
113                 @return a list of paramterized variables
114                 """
115                 parameters = filter(lambda b: _parameter_matcher.match(b.get_key()), self.get_enabled_blocks())
116                 return parameters
117
118         def rewrite(self):
119                 """
120                 Flag the namespace to be renewed.
121                 """
122                 self._renew_eval_ns = True
123                 _FlowGraph.rewrite(self)
124
125         def evaluate(self, expr):
126                 """
127                 Evaluate the expression.
128                 @param expr the string expression
129                 @throw Exception bad expression
130                 @return the evaluated data
131                 """
132                 if self._renew_eval_ns:
133                         self._renew_eval_ns = False
134                         #reload namespace
135                         n = dict()
136                         #load imports
137                         for imp in self.get_imports():
138                                 try: exec imp in n
139                                 except: pass
140                         #load parameters
141                         np = dict()
142                         for parameter in self.get_parameters():
143                                 try:
144                                         e = eval(parameter.get_param('value').to_code(), n, n)
145                                         np[parameter.get_id()] = e
146                                 except: pass
147                         n.update(np) #merge param namespace
148                         #load variables
149                         for variable in self.get_variables():
150                                 try:
151                                         e = eval(variable.get_param('value').to_code(), n, n)
152                                         n[variable.get_id()] = e
153                                 except: pass
154                         #make namespace public
155                         self.n = n
156                         self.n_hash = hash(str(n))
157                 #evaluate
158                 e = self._eval(expr, self.n, self.n_hash)
159                 return e