78from os.path
import expanduser, isabs, realpath, commonprefix
106 if 'command' not in engine_settings:
107 raise ValueError(
'engine command : missing configuration key: command')
109 global command, working_dir, delimiter, parse_regex, environment_variables
111 command = engine_settings[
'command']
113 if 'working_dir' in engine_settings:
114 working_dir = engine_settings[
'working_dir']
115 if not isabs(engine_settings[
'working_dir']):
116 working_dir = realpath(working_dir)
118 if 'parse_regex' in engine_settings:
119 parse_regex = engine_settings[
'parse_regex']
120 for result_key, regex
in parse_regex.items():
121 _compiled_parse_regex[result_key] = re.compile(regex, flags=re.MULTILINE)
122 if 'delimiter' in engine_settings:
123 delimiter = engine_settings[
'delimiter']
125 if 'environment_variables' in engine_settings:
126 environment_variables = engine_settings[
'environment_variables']
160 with Popen(cmd, stdout=PIPE, stderr=PIPE, env=environment_variables)
as process:
161 line = process.stdout.readline()
163 buf = leftover + line.decode(
'utf-8')
164 raw_results = buf.split(result_separator)
166 leftover = raw_results[-1]
167 raw_results = raw_results[:-1]
169 for raw_result
in raw_results:
172 _command_logger.debug(
'skipped result:', raw_result)
175 if start <= count
and count <= end:
176 res.add(res.types.KeyValue(kvmap=result))
182 line = process.stdout.readline()
184 return_code = process.wait(timeout=timeout)
186 raise RuntimeError(
'non-zero return code when running command', cmd, return_code)
225 """Parses command line output based on configuration"""
230 elements = raw_result.split(delimiter[
'chars'], maxsplit=len(delimiter[
'keys']) - 1)
231 if len(elements) != len(delimiter[
'keys']):
233 for i
in range(len(elements)):
234 result[delimiter[
'keys'][i]] = elements[i]
237 for result_key, regex
in _compiled_parse_regex.items():
238 found = regex.search(raw_result)
241 result[result_key] = raw_result[found.start() : found.end()]