summaryrefslogtreecommitdiffstats
path: root/storperf/carbon/converter.py
blob: 4ad5be240f3309f6f9146d6a74098264e76d3b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
##############################################################################
# Copyright (c) 2015 EMC and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

class JSONToCarbon(object):
    def __init__(self):
        pass
    
    def convert_to_dictionary(self, json_object, prefix=None):
        self.timestamp = str(json_object['timestamp'])
        self.flat_dictionary = {}
        self.resurse_to_flat_dictionary(json_object, prefix)
        return self.flat_dictionary

    def resurse_to_flat_dictionary(self, json, prefix=None):
        if type(json) == dict:
            for k, v in json.items():
                if prefix is None:
                    key = k.decode("utf-8").replace(" ", "_")
                else:
                    key = prefix + "." + k.decode("utf-8").replace(" ", "_")
                if hasattr(v, '__iter__'):
                    self.resurse_to_flat_dictionary(v, key)
                else:
                    self.flat_dictionary[key] = str(v).replace(" ", "_") + " " + self.timestamp
        elif type(json) == list:
            index = 0
            for v in json:
                index += 1
                if hasattr(v, '__iter__'):
                    self.resurse_to_flat_dictionary(v, prefix+"."+str(index))
                else:
                    if prefix is None:
                        self.flat_dictionary[index] = str(v).replace(" ", "_")
                        + " " + self.timestamp
                    else:
                        key = prefix + "." + index;
                        self.flat_dictionary[key] = str(v).replace(" ", "_") + " " + self.timestamp
        else:
            self.flat_dictionary[json] = self.timestamp