summaryrefslogtreecommitdiff
path: root/grc/python/Connection.py
diff options
context:
space:
mode:
authorTom Rondeau2011-10-17 13:37:04 -0400
committerTom Rondeau2011-10-17 13:37:04 -0400
commitfef3fe57c75ce6011c87bc894472639d385fcb21 (patch)
tree8a11749b2a06a8fa5d42af9911cf556d1c41c608 /grc/python/Connection.py
parent07324710bdf7eba63417e5591ff37c7641a3f7ab (diff)
parenta4dbd973fc6376bacf3c45e63aba61a471c468b3 (diff)
downloadgnuradio-fef3fe57c75ce6011c87bc894472639d385fcb21.tar.gz
gnuradio-fef3fe57c75ce6011c87bc894472639d385fcb21.tar.bz2
gnuradio-fef3fe57c75ce6011c87bc894472639d385fcb21.zip
Merge branch 'next' into dig_ofdm
Diffstat (limited to 'grc/python/Connection.py')
-rw-r--r--grc/python/Connection.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/grc/python/Connection.py b/grc/python/Connection.py
index 39f915740..218baf074 100644
--- a/grc/python/Connection.py
+++ b/grc/python/Connection.py
@@ -17,6 +17,8 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
"""
+import Constants
+from .. base.Element import Element
from .. base.Connection import Connection as _Connection
from .. gui.Connection import Connection as _GUIConnection
@@ -32,11 +34,10 @@ class Connection(_Connection, _GUIConnection):
def validate(self):
"""
Validate the connections.
- The ports must match in type and vector length.
+ The ports must match in io size.
"""
- _Connection.validate(self) #checks type
- #check vector length
- source_vlen = self.get_source().get_vlen()
- sink_vlen = self.get_sink().get_vlen()
- if source_vlen != sink_vlen:
- self.add_error_message('Source vector length "%s" does not match sink vector length "%s".'%(source_vlen, sink_vlen))
+ Element.validate(self)
+ source_size = Constants.TYPE_TO_SIZEOF[self.get_source().get_type()] * self.get_source().get_vlen()
+ sink_size = Constants.TYPE_TO_SIZEOF[self.get_sink().get_type()] * self.get_sink().get_vlen()
+ if source_size != sink_size:
+ self.add_error_message('Source IO size "%s" does not match sink IO size "%s".'%(source_size, sink_size))