Support YAML (default), JSON, and Pickle formats, depending on the client's choice
authorQuentin Smith <quentin@mit.edu>
Mon, 2 Jun 2008 03:53:12 +0000 (23:53 -0400)
committerQuentin Smith <quentin@mit.edu>
Mon, 2 Jun 2008 03:53:12 +0000 (23:53 -0400)
svn path=/trunk/packages/sipb-xen-remctl-auto/; revision=553

debian/control.in
files/usr/sbin/sipb-xen-listvms

index 2a90fd7..9ffe173 100644 (file)
@@ -7,6 +7,6 @@ Standards-Version: 3.7.2
 
 Package: sipb-xen-remctl-auto
 Architecture: all
-Depends: ${misc:Depends}, remctl-server, sipb-xen-console-server
+Depends: ${misc:Depends}, remctl-server, sipb-xen-console-server, python-cjson, python-yaml
 Description: Installs the SIPB Xen automatic remctl management system
  This is our automatic remctl configuration management system.
index 34cff0e..8b78b22 100755 (executable)
@@ -4,7 +4,6 @@ import sys
 import time
 sys.path.insert(0, '/usr/lib/xen-3.1-1/lib/python')
 from xen.lowlevel.xs import xs
-import yaml
 
 trans = xs()
 
@@ -36,4 +35,12 @@ def get_dom(domid):
 
 if __name__ == '__main__':
     vms = live_vms()
-    print yaml.safe_dump(vms, default_flow_style=False)
+    if '--json' in sys.argv[1:]:
+        import cjson
+        print cjson.encode(vms)
+    elif '--pickle' in sys.argv[1:]:
+        import cPickle
+        cPickle.dump(vms, sys.stdout, cPickle.HIGHEST_PROTOCOL)
+    else:
+        import yaml
+        print yaml.safe_dump(vms, default_flow_style=False)