-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparallel-halstead.py
560 lines (451 loc) · 18.1 KB
/
parallel-halstead.py
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
#!/usr/bin/ python
#Copyright (c) 2022 Gabriella Andrade
# This script measure a set of Halstead's measures:
n1 = 0 # n1: Number of operators
n2 = 0 # n2: Number of operands
N1 = 0 # N1: Total occurrences of operators
N2 = 0 # N2: Total occurrences of operands
N = 0.0 # N: Program length (Tokens of Code)
n = 0.0 # n: Program vocabulary
V = 0.0 # V: Program volume
D = 0.0 # D: Program difficulty
E = 0.0 # E: Development effort
T = 0.0 # T: Development time (in seconds)
# Comment
oneLine = "//"
startComment = "/*"
endComment = "*/"
blockComment = False
# C/C++ operators
c_cpp_operators = ['+=', '-=', '/=', '*=', '%=', '>>=', '<<=', '&=', '^=', '|=', '++', '--', '==', '!=', '>=', '<=', '<=>', '!', '&&', '||', '<<', '>>', '::', '->', '.*', '->*', '?:', '=', '>', '<', '+', '-', '*', '/', '%', '?', ',', ';', '&', '|', '^', '~', '(', ')', '{', '}', '[', ']', ':', '#', '->', '.', '\"', '\'']
# C/C++ keywords
# Obtained from: https://en.cppreference.com/w/c/keyword and https://en.cppreference.com/w/c/keyword
c_cpp_keywords = ['_Alignas', '_Alignof', '_Atomic', '_Bool', '_Complex', '_Decimal128', '_Decimal32', '_Decimal64', '_Generic', '_Imaginary', '_Noreturn', '_Pragma', '_Static_assert', '_Thread_local', 'alignas', 'alignof', 'and', 'and_eq', 'asm', 'atomic_cancel', 'atomic_commit', 'atomic_noexcept', 'auto', 'bitand', 'bitor', 'bool', 'break', 'case', 'catch', 'char', 'char16_t', 'char32_t', 'char8_t', 'class', 'co_await', 'co_return', 'co_yield', 'complex', 'compl', 'concept', 'const_cast', 'consteval', 'constexpr', 'constinit', 'const', 'continue', 'decltype', 'default', 'define', 'delete', 'double', 'do', 'dynamic_cast', 'elif', 'else', 'endif', 'enum', 'error', 'explicit', 'export', 'extern', 'false', 'final', 'float', 'for', 'friend', 'goto', 'ifdef', 'ifndef', 'if', 'imaginary', 'import', 'include', 'inline', 'int', 'line', 'long', 'module', 'mutable', 'namespace', 'new', 'noexcept', 'noreturn', 'not', 'not_eq', 'nullptr', 'operator', 'or', 'or_eq', 'override', 'pragma', 'private', 'protected', 'public', 'reflexpr', 'register', 'reinterpret_cast', 'requires', 'restrict', 'return', 'short', 'signed', 'sizeof', 'static_assert', 'static_cast', 'static', 'struct', 'switch', 'synchronized', 'template', 'this', 'thread_local', 'throw', 'transaction_safe_dynamic', 'transaction_safe', 'true', 'try', 'typedef', 'typeid', 'typename', 'undef', 'union', 'unsigned', 'using', 'virtual', 'void', 'volatile', 'wchar_t', 'while', 'xor_eq', 'xor']
# Java Keywords
# Obtainded from: https://docs.oracle.com/javase/tutorial/java/nutsandbolts/_keywords.html
java_keywords = ['abstract', 'continue', 'for', 'new', 'switch', 'assert', 'default', 'goto', 'package', 'synchronized', 'boolean', 'do', 'if', 'private', 'this', 'break', 'double', 'implements', 'protected', 'throw', 'byte', 'else', 'import', 'public', 'throws', 'case', 'enum', 'instanceof', 'return', 'transient', 'catch', 'extends', 'int', 'short', 'try', 'char', 'final', 'interface', 'static', 'void', 'class', 'finally', 'long', 'strictfp', 'volatile', 'const', 'float', 'native', 'super', 'while']
# libraries:
# OpenCV library keywords
opencv_keywords = ["cv", "opencv2", "opencv", "VideoCapture", "VideoWriter", "~VideoCapture", "getBackendName", "get", "grab", "core", "isOpened", "findHomography", "RANSAC", "UMat", "Mat", "read", "release", "retrive", "OutputArray", "set", "log", "imgproc", "highgui", "cvtColor", "imshow", "imgproc","saturate_cast", "addWeighted", "type" , "width", "height", "zeros" "CV_CAP_PROP_FRAME_COUNT", "CV_CAP_PROP_FRAME_WIDTH", "CV_CAP_PROP_FOURCC", "CV_CAP_PROP_FRAME_HEIGHT", "CV_CAP_PROP_FRAME_COUNT", "findHomography", "RANSAC", "cvtColor", "Size", "GaussianBlur", "Canny", "saturate_cast", "Sobel", "split", "type", "width", "open"]
# list to count the operators
total_operators = []
count_operators = []
# list to count the operands
total_operands = []
count_operands = []
# Parallel programming applications
api = ''
# SPar keywords
spar_keywords = ["Input", "Output", "Replicate", "spar", "Stage", "ToStream"]
# Threading Building Blocks keywords
tbb_keywords = ["tbb", "filter", "serial_out_of_order", "serial_in_order", "parallel", "pipeline", "add_filter", "run", "task_scheduler_init", "init", "operator", "clear"]
# FastFlow keywords
ff_keywords = ["ff_node_t", "ff_node", "ff_minode", "ff_monode", "ff_send_out", "ff_Pipe", "ff_Farm", "ff_OFarm", "ff", "farm", "pipeline", "pipe", "freezing", "run_then_freeze", "run_and_wait_end", "setEmitterF", "setEmitter", "setCollectorF", "setCollector", "set_scheduling_ondemand", "remove_collector", "GO_ON", "GO_OUT", "EOS_NOFREEZE", "EOS", "run_then_freeze"]
# GrPPI keywords
grppi_keywords = ["dynamic_execution","set_queue_attributes","blocking","grppi","farm","pipeline","parallel_execution_tbb","parallel_execution_ff","parallel_execution_omp","parallel_execution_native","queue_mode","blocking"]
# Flink keywords
flink_keywords = ["RichSourceFunction", "SourceFunction", "RichMapFunction", "MapFunction", "RichSinkFunction"]
# Storm keywords
storm_keywords = ["BaseRichSpout", "BaseRichBolt", "BaseBasicBolt"]
# OpenMP keywords
openmp_keywords = [
# Directives
"omp", "parallel", "for", "sections", "section", "single", "master", "critical", "atomic", "barrier",
"ordered", "nowait", "flush", "threadprivate", "copyin", "copyprivate", "reduction", "task", "taskyield",
"taskwait", "target", "teams", "distribute", "simd", "declare", "end", "parallel for", "parallel sections",
"end parallel", "end parallel for", "end parallel sections", "end single", "end master", "end critical",
"end atomic", "end barrier", "end ordered", "end declare", "end target", "end teams", "end distribute",
"end simd",
# Clauses
"private", "firstprivate", "lastprivate", "shared", "default", "none", "reduction", "copyin", "copyprivate",
"nowait", "schedule", "collapse", "ordered", "num_threads", "if", "final", "untied", "mergeable", "thread_limit",
"device", "map", "is_device_ptr", "to", "from", "use_device_ptr", "depend", "priority", "grainsize", "nogroup",
# Runtime Functions
"omp_set_num_threads", "omp_get_num_threads", "omp_get_thread_num", "omp_get_max_threads", "omp_set_dynamic",
"omp_get_dynamic", "omp_set_nested", "omp_get_nested", "omp_get_wtime", "omp_get_wtick", "omp_in_parallel",
"omp_set_schedule", "omp_get_schedule", "omp_get_thread_limit", "omp_set_max_active_levels",
"omp_get_max_active_levels", "omp_get_level", "omp_get_ancestor_thread_num", "omp_get_team_size",
"omp_get_active_level", "omp_get_thread_limit", "omp_set_default_device", "omp_get_default_device",
"omp_get_num_devices", "omp_get_device_num", "omp_get_num_teams", "omp_get_team_num", "omp_is_initial_device",
"omp_set_affinity_format", "omp_get_affinity_format", "omp_display_affinity"
]
# Threads keywords
cppthreads_keywords = ["Threads", "Mutex", "Conditional_Variables",
"thread", "mutex", "condition_variable",
"lock_guard", "unique_lock", "yield(",
"hardware_concurrency(", "joinable(",
"join(", "detach(",
"lock(", "try_lock(", "unlock(",
"condition_variable::wait(", "condition_variable::notify_one(",
"condition_variable::notify_all("
]
# source code
fileList = []
import sys
import argparse
import math
import re
# analyzes a line to identify commented lines
def analyzeLine(args):
# Open the file and read a line
for value in args.codes:
try:
code = open(value, "r")
line = code.readline()
while(line):
i = line.find(oneLine)
j = line.find(startComment)
# Line with no comment
if i == -1 and j == -1:
fileList.append(line[:-1])
line = code.readline()
# Commented line
if i != -1:
fileList.append(line[:i])
line = code.readline()
# Commented block
else:
if j != -1 and line.find("//*") == -1:
blockComment = True
# While is a comment block
while(blockComment == True):
k = line.find(endComment) # Procura pelo fim de um bloco de comentários ( */ )
if k != -1:
fileList.append(line[k+2:-1])
blockComment = False
line = code.readline()
code.close()
except:
print("File does not exist")
sys.exit()
# analyzes a line to identify tab space
def removeTabs():
global fileList
for i in range(len(fileList)):
j = fileList[i].count("\t")
if j > 0:
fileList[i] = fileList[i].replace("\t", "", j)
# measures the program length: total number of operators and operands
def programLength(N1, N2):
N = N1 + N2
return N
# measures the vocabulary: total number of unique operator and unique operand
def programVocabulary(n1, n2):
n = n1 + n2
return n
# measures the program volume in bits
def programVolume(N, n):
V = N * math.log(n, 2.0)
return V
# measures the difficulty to handle the program
def programDifficulty(n1, n2, N2):
D = (n1 / 2) * (N2 / n2)
return D
# measures the development effort
def developmentEffort(V, D):
E = V * D
return E
# measures the development time in seconds
def developmentTime(E):
S = 18
T = E/18
return T
#count the number of hexadecimal in the code
def countHexadecimal(i):
global fileList
global total_operands
global count_operands
hexad = r'[0][x|X][\da-fA-F]+'
numbers = re.findall(hexad, fileList[i])
for j in range(len(numbers)):
n = str(numbers[j])
size = len(n)
fileList[i] = fileList[i].replace(n, ' ', 1)
try:
k = total_operands.index(n)
count_operands[k] += 1
except:
total_operands.append(n)
count_operands.append(1)
#count the number of digits in the code
def countNumber(i):
global fileList
global total_operands
global count_operands
hexad = r'0[x|X][\d|a-f*'
digit = r'.[-|\d][\d]*[\.|\d*][\d]*.'
alphabet = r'[_a-zA-Z]'
numbers = re.findall(digit, fileList[i])
for j in range(len(numbers)):
n = str(numbers[j])
size = len(n)
if n[0] != alphabet:
fileList[i] = fileList[i].replace(n[1:size-1], ' ', 1)
try:
k = total_operands.index(n[1:size-1])
count_operands[k] += 1
except:
total_operands.append(n[1:size-1])
count_operands.append(1)
#count the number of char and strings in the code
def countstrings(i):
global fileList
global total_operands
global count_operands
global stringsIndex
nDouble = fileList[i].count('\"')
nSingle = fileList[i].count('\'')
s = str(fileList[i])
if fileList[i].count("#include") == 0:
if nDouble > 0:
inicio = 0
while nDouble > 0:
try:
index1 = fileList[i].index('\"', inicio)
inicio = index1 + 1
index2 = fileList[i].index('\"', inicio)
fileList[i] = fileList[i].replace(s[index1+1:index2], ' ', 1)
try:
k = total_operands.index(s[index1+1:index2])
count_operands[k] += 1
except:
total_operands.append(s[index1+1:index2])
count_operands.append(1)
nDouble -= 2
except:
nDouble = 0
if fileList[i].count("#include") == 0:
if nSingle > 0:
inicio = 0
while nSingle > 0:
try:
index1 = fileList[i].index('\"', inicio)
inicio = index1 + 1
index2 = fileList[i].index('\"', inicio)
fileList[i] = fileList[i].replace(s[index1+1:index2], ' ', 1)
try:
k = total_operands.index(s[index1+1:index2])
count_operands[k] += 1
except:
total_operands.append(s[index1+1:index2])
count_operands.append(1)
nSingle -= 2
except:
nSingle = 0
# count the number of operators in the code
def countOperators(i):
global fileList
global total_operators
global count_operators
for operator in c_cpp_operators:
j = fileList[i].count(operator)
if j > 0:
fileList[i] = fileList[i].replace(operator, ' ', j)
try:
k = total_operators.index(operator)
count_operators[k] += j
except:
total_operators.append(operator)
count_operators.append(j)
# count the number of C++ keyword in the code
def countKeyword(args, i):
global fileList
global total_operators
global count_operators
strings = fileList[i].split(" ")
if args.api == "spar" or args.api == "fastflow" or args.api == "tbb" or args.api == "grppi" or args.api == "openmp" or args.api == "cppthreads":
for j in range(len(strings)):
if strings[j] != '':
if strings[j] in c_cpp_keywords:
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
if args.api == "flink" or args.api == "storn":
for j in range(len(strings)):
if strings[j] != '':
if strings[j] in java_keywords:
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
# count the number of API keyword in the code
def countApiKeyword(args, i):
global fileList
global total_operators
global count_operators
strings = fileList[i].split(" ")
if args.api == "spar":
for j in range(len(strings)):
if strings[j] != '':
if strings[j] in spar_keywords:
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
if args.api == "tbb":
for j in range(len(strings)):
if strings[j] != '':
if strings[j] in tbb_keywords:
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
if args.api == "fastflow":
for j in range(len(strings)):
if strings[j] != '':
if strings[j] in ff_keywords:
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
if args.api == "grppi":
for j in range(len(strings)):
if strings[j] != '':
if strings[j] in grppi_keywords:
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
if args.api == "flink":
for j in range(len(strings)):
if strings[j] != '':
if strings[j] in flink_keywords:
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
if args.api == "storm":
for j in range(len(strings)):
if strings[j] != '':
if strings[j] in storm_keywords:
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
if args.api == "openmp":
foundPragma = False
for j in range(len(strings)):
if strings[j] != '':
if strings[j] != "pragma" and not foundPragma:
continue
elif strings[j] in openmp_keywords:
foundPragma = True
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
if args.api == "cppthreads":
for j in range(len(strings)):
if strings[j] != '':
if strings[j] in cppthreads_keywords:
foundPragma = True
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operators.index(strings[j])
count_operators[k] += 1
except:
total_operators.append(strings[j])
count_operators.append(1)
# count the number of operands in the code
def countOperands(i):
global fileList
global total_operands
global count_operands
strings = fileList[i].split(" ")
for j in range(len(strings)):
if strings[j] != '':
fileList[i] = fileList[i].replace(strings[j], ' ', 1)
try:
k = total_operands.index(strings[j])
count_operands[k] += 1
except:
total_operands.append(strings[j])
count_operands.append(1)
# count the number of operators and operands in the code
def HalsteadMeasures(args):
global fileList
global total_operators
global count_operators
global total_operands
global count_operands
global n1, n2, N1, N2, n, N, V, D, E, T
for i in range(len(fileList)):
#count char and strings
countstrings(i)
#count hexadecimal
countHexadecimal(i)
#count variables
countNumber(i)
# count operators
countOperators(i)
#count API keywords
countApiKeyword(args,i)
#count c++ keywords
countKeyword(args,i)
#count c++ operands
countOperands(i)
n1 = len(total_operators)
n2 = len(total_operands)
N1 = sum(count_operators)
N2 = sum(count_operands)
N = programLength(N1, N2)
n = programVocabulary(n1, n2)
V = programVolume(N, n)
D = programDifficulty(n1, n2, N2)
E = developmentEffort(V, D)
T = developmentTime(E)
def printCodeMetrics(args):
print("Parallel Coding Metrics Results: ")
print(f'Number of operators = {n1:.2f}')
print(f'Number of operands = {n2:.2f}')
print(f'Total occurrences of operators = {N1:.2f}')
print(f'Total occurrences of operands = {N2:.2f}')
print(f'Tokens of Code = Program length {N:.2f}')
print(f'Program vocabulary = {n:.2f}')
print(f'Program volume = {V:.2f}')
print(f'Program difficulty = {D:.2f}')
print(f'Development effort = {E:.2f}')
print(f'Development time (in seconds) = {T:.2f}')
print(f'Development time (in hours) = {((T/60)/60):.2f}')
def main():
global c_cpp_keywords
#c_cpp_keywords = c_cpp_keywords
parser = argparse.ArgumentParser(description='Parallel Coding Metrics')
parser.add_argument('--api', required = True, type=str, help = "Please, inform the metric: fastflow, flink, grppi, spar, storm or tbb" )
parser.add_argument('--file', action='store', dest='codes', type=str, nargs='*', help = 'Please enter the code name. Examples --file spar.cpp')
args = parser.parse_args()
analyzeLine(args)
removeTabs()
HalsteadMeasures(args)
printCodeMetrics(args)
return 0
if __name__ == '__main__':
sys.exit(main())