-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcommand.py
61 lines (43 loc) · 2.23 KB
/
command.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
class Command:
"""Returns command line arguments by parsing codeclimate config file."""
def __init__(self, config, file_list_path):
self.config = config
self.file_list_path = file_list_path
def build(self):
command = ['cppcheck']
if self.config.get('check'):
command.append('--enable={}'.format(self.config.get('check')))
if self.config.get('project'):
command.append('--project={}'.format(self.config.get('project')))
if self.config.get('language'):
command.append('--language={}'.format(self.config.get('language')))
for identifier in self.config.get('stds', []):
command.append('--std={}'.format(identifier))
if self.config.get('platform'):
command.append('--platform={}'.format(self.config.get('platform')))
if self.config.get('library'):
command.append('--library={}'.format(self.config.get('library')))
if self.config.get('jobs'):
command.append('-j {}'.format(self.config.get('jobs')))
for symbol in self.config.get('defines', []):
command.append('-D{}'.format(symbol))
for symbol in self.config.get('undefines', []):
command.append('-U{}'.format(symbol))
for directory in self.config.get('includes', []):
command.append('-I{}'.format(directory))
if self.config.get('max_configs'):
if self.config.get('max_configs') == 'force':
command.append('--force')
else:
command.append('--max-configs={}'.format(self.config.get('max_configs')))
if self.config.get('inconclusive', 'true') == True:
command.append('--inconclusive')
if self.config.get('suppressions-list'):
command.append('--suppressions-list={}'.format(self.config.get('suppressions-list')))
if self.config.get('inline-suppr', 'true') == True:
command.append('--inline-suppr')
if self.config.get('dump', 'true') == True:
command.append('--dump')
command.extend(['--xml', '--xml-version=2'])
command.append('--file-list={}'.format(self.file_list_path))
return command