summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui/pybootchartgui/main.py
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2012-06-06 14:10:11 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-15 15:12:42 +0100
commit0ad3f754324eb6337243ca7d28f32b047eca0b51 (patch)
treeaab89171bd438b0d66be71c847aeccf185114bb9 /scripts/pybootchartgui/pybootchartgui/main.py
parentbc5b86f025c9c1d9f0e1a58e92fe8c1381c096a5 (diff)
downloadpoky-0ad3f754324eb6337243ca7d28f32b047eca0b51.tar.gz
pybootchartgui: split the output chart into multiple ones
Split the output chart into multiple ones to make it more readable, it only works with "-o path", which means that it doesn't work if the user doesn't want to save the chart to the disk. For example: $ ./pybootchartgui.py /path/to/tmp/buildstats/core-image-sato-qemux86/201205301810/ -f svg -s 5 -o /tmp/ bootchart written to /tmp/bootchart_1.svg bootchart written to /tmp/bootchart_2.svg bootchart written to /tmp/bootchart_3.svg bootchart written to /tmp/bootchart_4.svg bootchart written to /tmp/bootchart_5.svg [YOCTO #2403] (From OE-Core rev: 04a34899e1c15a70babd97a3a59ccb9f8af05bad) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/pybootchartgui/pybootchartgui/main.py')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/main.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/main.py b/scripts/pybootchartgui/pybootchartgui/main.py
index bf50afb6c3..fce8dd35cf 100644
--- a/scripts/pybootchartgui/pybootchartgui/main.py
+++ b/scripts/pybootchartgui/pybootchartgui/main.py
@@ -17,6 +17,8 @@ def _mk_options_parser():
17 help="image format (...); default format ...") 17 help="image format (...); default format ...")
18 parser.add_option("-o", "--output", dest="output", metavar="PATH", default=None, 18 parser.add_option("-o", "--output", dest="output", metavar="PATH", default=None,
19 help="output path (file or directory) where charts are stored") 19 help="output path (file or directory) where charts are stored")
20 parser.add_option("-s", "--split", dest="num", type=int, default=1,
21 help="split the output chart into <NUM> charts, only works with \"-o PATH\"")
20 parser.add_option("-n", "--no-prune", action="store_false", dest="prune", default=True, 22 parser.add_option("-n", "--no-prune", action="store_false", dest="prune", default=True,
21 help="do not prune the process tree") 23 help="do not prune the process tree")
22 parser.add_option("-q", "--quiet", action="store_true", dest="quiet", default=False, 24 parser.add_option("-q", "--quiet", action="store_true", dest="quiet", default=False,
@@ -59,8 +61,16 @@ def main(argv=None):
59 gui.show(res) 61 gui.show(res)
60 else: 62 else:
61 filename = _get_filename(args, options) 63 filename = _get_filename(args, options)
62 batch.render(res, options.format, filename) 64 res_list = parsing.split_res(res, options.num)
63 print "bootchart written to", filename 65 n = 1
66 for r in res_list:
67 if len(res_list) == 1:
68 f = filename + "." + options.format
69 else:
70 f = filename + "_" + str(n) + "." + options.format
71 n = n + 1
72 batch.render(r, options.format, f)
73 print "bootchart written to", f
64 return 0 74 return 0
65 except parsing.ParseError, ex: 75 except parsing.ParseError, ex:
66 print("Parse error: %s" % ex) 76 print("Parse error: %s" % ex)