dde736dbaae4e720bfa9d7dc9d52cfe446c0e2e2
[debian/gnuradio] / grc / python / Port.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 from .. base.Port import Port as _Port
21 import Constants
22
23 class Port(_Port):
24
25         ##possible port types
26         TYPES = ['complex', 'float', 'int', 'short', 'byte', 'msg']
27
28         def __init__(self, block, n, dir):
29                 """
30                 Make a new port from nested data.
31                 @param block the parent element
32                 @param n the nested odict
33                 @param dir the direction
34                 """
35                 self._n = n
36                 if n['type'] == 'msg': n['key'] = 'msg'
37                 if dir == 'source' and not n.find('key'):
38                         n['key'] = str(block._source_count)
39                         block._source_count += 1
40                 if dir == 'sink' and not n.find('key'):
41                         n['key'] = str(block._sink_count)
42                         block._sink_count += 1
43                 #build the port
44                 _Port.__init__(
45                         self,
46                         block=block,
47                         n=n,
48                         dir=dir,
49                 )
50                 self._nports = n.find('nports') or ''
51                 self._vlen = n.find('vlen') or ''
52                 self._optional = bool(n.find('optional'))
53
54         def validate(self):
55                 _Port.validate(self)
56                 try: assert self.get_enabled_connections() or self.get_optional()
57                 except AssertionError: self.add_error_message('Port is not connected.')
58                 try: assert self.is_source() or len(self.get_enabled_connections()) <= 1
59                 except AssertionError: self.add_error_message('Port has too many connections.')
60                 #message port logic
61                 if self.get_type() == 'msg':
62                         try: assert not self.get_nports()
63                         except AssertionError: self.add_error_message('A port of type "msg" cannot have "nports" set.')
64                         try: assert self.get_vlen() == 1
65                         except AssertionError: self.add_error_message('A port of type "msg" must have a "vlen" of 1.')
66
67         def rewrite(self):
68                 """
69                 Handle the port cloning for virtual blocks.
70                 """
71                 _Port.rewrite(self)
72                 #virtual sink logic
73                 if self.get_parent().get_key() == 'virtual_sink':
74                         if self.get_enabled_connections(): #clone type and vlen
75                                 source = self.get_enabled_connections()[0].get_source()
76                                 self._type = str(source.get_type())
77                                 self._vlen = str(source.get_vlen())
78                         else: #reset type and vlen
79                                 self._type = ''
80                                 self._vlen = ''
81
82         def get_vlen(self):
83                 """
84                 Get the vector length.
85                 If the evaluation of vlen cannot be cast to an integer, return 1.
86                 @return the vector length or 1
87                 """
88                 vlen = self.get_parent().resolve_dependencies(self._vlen)
89                 try: return int(self.get_parent().get_parent().evaluate(vlen))
90                 except: return 1
91
92         def get_nports(self):
93                 """
94                 Get the number of ports.
95                 If already blank, return a blank
96                 If the evaluation of nports cannot be cast to an integer, return 1.
97                 @return the number of ports or 1
98                 """
99                 nports = self.get_parent().resolve_dependencies(self._nports)
100                 #return blank if nports is blank
101                 if not nports: return ''
102                 try:
103                         nports = int(self.get_parent().get_parent().evaluate(nports))
104                         assert 0 < nports
105                         return nports
106                 except: return 1
107
108         def get_optional(self): return bool(self._optional)
109
110         def get_color(self):
111                 """
112                 Get the color that represents this port's type.
113                 Codes differ for ports where the vec length is 1 or greater than 1.
114                 @return a hex color code.
115                 """
116                 try:
117                         if self.get_vlen() == 1:
118                                 return {#vlen is 1
119                                         'complex': Constants.COMPLEX_COLOR_SPEC,
120                                         'float': Constants.FLOAT_COLOR_SPEC,
121                                         'int': Constants.INT_COLOR_SPEC,
122                                         'short': Constants.SHORT_COLOR_SPEC,
123                                         'byte': Constants.BYTE_COLOR_SPEC,
124                                         'msg': Constants.MSG_COLOR_SPEC,
125                                 }[self.get_type()]
126                         return {#vlen is non 1
127                                 'complex': Constants.COMPLEX_VECTOR_COLOR_SPEC,
128                                 'float': Constants.FLOAT_VECTOR_COLOR_SPEC,
129                                 'int': Constants.INT_VECTOR_COLOR_SPEC,
130                                 'short': Constants.SHORT_VECTOR_COLOR_SPEC,
131                                 'byte': Constants.BYTE_VECTOR_COLOR_SPEC,
132                         }[self.get_type()]
133                 except: return _Port.get_color(self)
134
135         def copy(self, new_key=None):
136                 n = self._n.copy()
137                 if new_key: n['key'] = new_key
138                 return self.__class__(self.get_parent(), n, self._dir)