936c9d5f6f1f23663540d24361938fa8e8cceb09
[debian/gnuradio] / grc / src / grc / elements / Element.py
1 """
2 Copyright 2008 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 ##@package grc.elements.Element
20 #The base class for all elements.
21
22 class Element(object):
23
24         def __init__(self, parent=None):
25                 self._parent = parent
26                 self._error_messages = []
27                 self.flag()
28
29         def test(self):
30                 """
31                 Test the element against failures.
32                 Overload this method in sub-classes.
33                 """
34                 pass
35
36         def validate(self):
37                 """
38                 Validate the data in this element.
39                 Set the error message non blank for errors.
40                 Overload this method in sub-classes.
41                 """
42                 pass
43
44         def is_valid(self):
45                 self._error_messages = []#reset err msgs
46                 try: self.validate()
47                 except: pass
48                 return not self.get_error_messages()
49
50         def _add_error_message(self, msg):
51                 self._error_messages.append(msg)
52
53         def get_error_messages(self):
54                 return self._error_messages
55
56         def get_parent(self):
57                 return self._parent
58
59         def _exit_with_error(self, error):
60                 parent = self
61                 #build hier list of elements
62                 elements = list()
63                 while(parent):
64                         elements.insert(0, parent)
65                         parent = parent.get_parent()
66                 #build error string
67                 err_str = ">>> Error:"
68                 for i, element in enumerate(elements + [error]):
69                         err_str = err_str + '\n' + ''.join('   '*(i+2)) + str(element)
70                 err_str = err_str + '\n'
71                 exit(err_str)
72
73         ##############################################
74         ## Update flagging
75         ##############################################
76         def is_flagged(self): return self._flag
77         def flag(self):
78                 self._flag = True
79                 if self.get_parent(): self.get_parent().flag()
80         def deflag(self):
81                 self._flag = False
82                 if self.get_parent(): self.get_parent().deflag()
83
84         ##############################################
85         ## Type testing methods
86         ##############################################
87         def is_element(self): return True
88         def is_platform(self): return False
89         def is_flow_graph(self): return False
90         def is_connection(self): return False
91         def is_block(self): return False
92         def is_source(self): return False
93         def is_sink(self): return False
94         def is_port(self): return False
95         def is_param(self): return False
96