-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharm_json_merge.py
More file actions
executable file
·153 lines (115 loc) · 3.73 KB
/
Copy patharm_json_merge.py
File metadata and controls
executable file
·153 lines (115 loc) · 3.73 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#!/usr/bin/python
# -*- coding: utf-8 -*-
#!/usr/bin/python
# -*- coding: utf-8 -*-
# * ----------------------------------------------------------------------
# * Project: arm tiny tarmac profiling tool
# * Title: arm_json_merge.py
# * Description: merge 2 json containing timeline timeline information
# *
# * $Date: 20 Mar 2024
# *
# * $Revision: V1.0.0
# *
# * Target Processor: Cortex-M and Cortex-A cores
# * -------------------------------------------------------------------- */
# /*
# * Copyright (C) 2010-2024 ARM Limited or its affiliates. All rights reserved.
# *
# * SPDX-License-Identifier: Apache-2.0
# *
# * Licensed under the Apache License, Version 2.0 (the License); you may
# * not use this file except in compliance with the License.
# * You may obtain a copy of the License at
# *
# * www.apache.org/licenses/LICENSE-2.0
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an AS IS BASIS, WITHOUT
# * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# */
import sys
import re
import os
import json
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# functions
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# printf for C programmers
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
def printf(formatStr, *args):
sys.stdout.write(formatStr % args)
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# usage message
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
def usage():
printf(
"""
\033[4musage\033[0m : \033[31;1m arm_json_merge.py\033[00m symbol occurrence merged.json files...
"""
)
printf(" where : \n")
printf(" symbol : symbol to merge\n")
printf(" occurrence : occurrence\n")
printf(" out.[json|csv] : processed csv or json trace output\n")
printf(" files .... : files list\n")
exit(2)
def filterAndAjustGen(dic, ts, dur, id):
for obj in dic:
if obj["ts"] >= ts and obj["ts"] <= ts + dur:
obj["ts"] = obj["ts"] - ts
obj["tid"] = id
yield obj
def readJson(fileName):
with open(fileName) as source:
json_source = source.read()
data = json.loads("[{}]".format(json_source))
return data[0]
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# entry
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
def main(argv):
if len(sys.argv) < 6:
usage()
sym = sys.argv[1]
occurence = int(sys.argv[2])
jsonOut = sys.argv[3]
jsonFile = []
dataJson = []
for i in range(4, len(sys.argv)):
jsonFile.append(sys.argv[i])
for file in jsonFile:
dataJson.append(readJson(file))
jsonBoundaries = []
for file in dataJson:
jsonBoundaries.append(
[
(obj["ts"], obj["dur"])
for obj in file
if (sym in obj["name"] and obj.get("dur", None))
]
)
for file in jsonBoundaries:
if file == [] and file == []:
printf("symbol %s not found\n", sym)
return
timeDur = []
for item in jsonBoundaries:
(ts, dur) = item[occurence]
timeDur.append((ts, dur))
timeDurData = zip(timeDur, dataJson)
i = 0
jsonFiltered = []
for item in timeDurData:
(tsDur, jsonAr) = item
(ts, dur) = tsDur
jsonFiltered += [obj for obj in filterAndAjustGen(jsonAr, ts, dur, jsonFile[i])]
i += 1
# write json with merged content
with open(jsonOut, "w") as json_file:
json.dump(jsonFiltered, json_file)
if __name__ == "__main__":
main(sys.argv[1:])