use yaml.CSafeDumper and yaml.CSafeLoader everywhere sipb-xen-base/8.12
authorGreg Price <price@mit.edu>
Thu, 31 Jul 2008 02:13:02 +0000 (22:13 -0400)
committerGreg Price <price@mit.edu>
Thu, 31 Jul 2008 02:13:02 +0000 (22:13 -0400)
also break some long lines to fit in 80 columns

svn path=/trunk/packages/sipb-xen-base/; revision=796

debian/changelog
files/usr/sbin/invirt-getconf
files/usr/share/python-support/sipb-xen-base/invirt/config.py

index d64d1be..d6dfb7a 100644 (file)
@@ -4,11 +4,12 @@ sipb-xen-base (8.12) unstable; urgency=low
   * add --ls and some convenience features to invirt-getconf:
     formatting composite nodes as yaml, allowing the root
   * fix bug in late-import of yaml in invirt.config
   * add --ls and some convenience features to invirt-getconf:
     formatting composite nodes as yaml, allowing the root
   * fix bug in late-import of yaml in invirt.config
-
+  * use yaml.CSafeDumper and yaml.CSafeLoader everywhere
+  
   [ Yang Zhang ]
   * added shared lock around cache-reading transaction
 
   [ Yang Zhang ]
   * added shared lock around cache-reading transaction
 
- -- Yang Zhang <y_z@mit.edu>  Wed, 30 Jul 2008 21:56:07 -0400
+ -- Greg Price <price@mit.edu>  Wed, 30 Jul 2008 22:11:15 -0400
 
 sipb-xen-base (8.11) unstable; urgency=low
 
 
 sipb-xen-base (8.11) unstable; urgency=low
 
index 1976dbc..06c0aa7 100755 (executable)
@@ -79,7 +79,8 @@ def main(argv):
                 print conf
             else:
                 import yaml
                 print conf
             else:
                 import yaml
-                yaml.safe_dump(conf, stdout, default_flow_style=False)
+                yaml.dump(conf, stdout,
+                          Dumper=yaml.CSafeDumper, default_flow_style=False)
     except invirt_exception, ex:
         print >> stderr, ex
         return 1
     except invirt_exception, ex:
         print >> stderr, ex
         return 1
index 29f7ce5..4a27cea 100644 (file)
@@ -34,7 +34,8 @@ def load(src_path = default_src_path,
         # lock with other concurrent reads).
         @with_lock_file(lock_file, False)
         def read_cache():
         # lock with other concurrent reads).
         @with_lock_file(lock_file, False)
         def read_cache():
-            try: ns.cfg = with_closing(file(cache_path))(lambda f: json.read(f.read()))
+            try: ns.cfg = with_closing(file(cache_path)) (
+                lambda f: json.read(f.read()))
             except: ns.do_refresh = True
 
     if ns.do_refresh:
             except: ns.do_refresh = True
 
     if ns.do_refresh:
@@ -44,10 +45,10 @@ def load(src_path = default_src_path,
         @with_lock_file(lock_file)
         def refresh_cache():
             import yaml
         @with_lock_file(lock_file)
         def refresh_cache():
             import yaml
-            try:    default_loader = yaml.CSafeLoader
-            except: default_loader = yaml.SafeLoader
-            ns.cfg = with_closing(file(src_path))(lambda f: yaml.load(f, default_loader))
-            try: with_closing(file(cache_path, 'w'))(lambda f: f.write(json.write(ns.cfg)))
+            ns.cfg = with_closing(file(src_path)) (
+                lambda f: yaml.load(f, yaml.CSafeLoader))
+            try: with_closing(file(cache_path, 'w')) (
+                lambda f: f.write(json.write(ns.cfg)))
             except: pass # silent failure
     return ns.cfg
 
             except: pass # silent failure
     return ns.cfg