]> git.gag.com Git - debian/gnuradio/commitdiff
cache evaluated statements, do not parse huge vectors for display
authorjblum <jblum@221aa14e-8319-0410-a670-987f0aec2ac5>
Sun, 11 Jan 2009 07:57:08 +0000 (07:57 +0000)
committerjblum <jblum@221aa14e-8319-0410-a670-987f0aec2ac5>
Sun, 11 Jan 2009 07:57:08 +0000 (07:57 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10205 221aa14e-8319-0410-a670-987f0aec2ac5

grc/src/platforms/gui/Param.py
grc/src/platforms/python/FlowGraph.py

index 43265f2746f6938bb3d6f3a41c1fe074c955611c..7bc0d354f0145d1cd31838e48dc6bee7d586bae2 100644 (file)
@@ -118,7 +118,8 @@ class Param(Element):
                        if self.is_enum():
                                dt_str = self.get_option(self.get_value()).get_name()
                        elif isinstance(data, (list, tuple, set)): #vector types
-                               dt_str = ', '.join(map(to_str, data))
+                               if len(data) > 8: dt_str = self.get_value() #large vectors use code
+                               else: dt_str = ', '.join(map(to_str, data)) #small vectors use eval
                        else: dt_str = to_str(data)     #other types
                        #truncate
                        max_len = max(27 - len(self.get_name()), 3)
index 6c9b7f642485620f6519256a021199e745278227..cd5635b95d8325608e4d8b7bbaf9871eb668359b 100644 (file)
@@ -40,6 +40,22 @@ def get_variable_code(variable):
 
 class FlowGraph(_FlowGraph):
 
+       _eval_cache = dict()
+       def _eval(self, code, namespace):
+               """
+               Evaluate the code with the given namespace.
+               @param code a string with python code
+               @param namespace a dict representing the namespace
+               @return the resultant object
+               """
+               #check cache
+               if self._eval_cache.has_key(code) and self._eval_cache[code][0] == namespace:
+                       return self._eval_cache[code][1]
+               #evaluate
+               result = eval(code, namespace, namespace)
+               self._eval_cache[code] = (namespace.copy(), result)
+               return result
+
        def _get_io_signature(self, pad_key):
                """
                Get an io signature for this flow graph.
@@ -135,18 +151,18 @@ class FlowGraph(_FlowGraph):
                        np = dict()
                        for parameter in self.get_parameters():
                                try:
-                                       e = eval(parameter.get_param('value').to_code(), n, n)
+                                       e = self._eval(parameter.get_param('value').to_code(), n)
                                        np[parameter.get_id()] = e
                                except: pass
                        n.update(np) #merge param namespace
                        #load variables
                        for variable in self.get_variables():
                                try:
-                                       e = eval(get_variable_code(variable), n, n)
+                                       e = self._eval(get_variable_code(variable), n)
                                        n[variable.get_id()] = e
                                except: pass
                        #make namespace public
                        self.n = n
                #evaluate
-               e = eval(expr, self.n, self.n)
+               e = self._eval(expr, self.n)
                return e