#!/usr/bin/env python # # Copyright 2013 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. import json import sys from string import Template _HTML_TEMPLATE = """
""" def _GenerateGraph(json_data, policy): legends = list(json_data['policies'][policy]['legends']) legends = ['second'] + legends[legends.index('FROM_HERE_FOR_TOTAL') + 1: legends.index('UNTIL_HERE_FOR_TOTAL')] data = [] for snapshot in json_data['policies'][policy]['snapshots']: data.append([0] * len(legends)) for k, v in snapshot.iteritems(): if k in legends: data[-1][legends.index(k)] = v print Template(_HTML_TEMPLATE).safe_substitute( {'JSON_ARRAY': json.dumps([legends] + data)}) def main(argv): _GenerateGraph(json.load(file(argv[1], 'r')), argv[2]) if __name__ == '__main__': sys.exit(main(sys.argv))