|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] Added SXP pretty-printer.
# HG changeset patch
# User Ewan Mellor <ewan@xxxxxxxxxxxxx>
# Date 1172584720 0
# Node ID 8e3899a4f62d15290751ed8c23cc759eb82dad71
# Parent b67c253d1cdb4f502dec2f2bcede135cf5f45a0b
Added SXP pretty-printer.
Signed-off-by: Ewan Mellor <ewan@xxxxxxxxxxxxx>
---
tools/misc/sxp-pretty | 45 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 45 insertions(+)
diff -r b67c253d1cdb -r 8e3899a4f62d tools/misc/sxp-pretty
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/misc/sxp-pretty Tue Feb 27 13:58:40 2007 +0000
@@ -0,0 +1,45 @@
+#!/usr/bin/env python
+# -*- mode: python; -*-
+#============================================================================
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of version 2.1 of the GNU Lesser General Public
+# License as published by the Free Software Foundation.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#============================================================================
+# Copyright (c) 2007 XenSource Inc.
+#============================================================================
+
+
+import commands
+import os.path
+import pprint
+import sys
+
+result = commands.getstatusoutput(os.path.join(os.path.dirname(sys.argv[0]),
+ 'xen-python-path'))
+if result[0] != 0:
+ print >>sys.stderr, result[1]
+ sys.exit(1)
+
+sys.path.append(result[1])
+
+import xen.xend.sxp as sxp
+
+def main():
+ if len(sys.argv) == 1 or sys.argv[1] in ['', '-']:
+ s = sxp.parse(sys.stdin)
+ else:
+ s = sxp.parse(open(sys.argv[1]))
+
+ pprint.pprint(s)
+
+if __name__ == '__main__':
+ sys.exit(main())
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-unstable] Added SXP pretty-printer.,
Xen patchbot-unstable <=
|
|
|
|
|