1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00

add stat parser

This commit is contained in:
Kelly Brazil
2019-11-14 15:26:36 -08:00
parent a407f5b678
commit edb9a7c76e
2 changed files with 94 additions and 0 deletions

View File

@ -26,6 +26,7 @@ import jc.parsers.netstat
import jc.parsers.ps import jc.parsers.ps
import jc.parsers.route import jc.parsers.route
import jc.parsers.ss import jc.parsers.ss
import jc.parsers.stat
import jc.parsers.uname import jc.parsers.uname
import jc.parsers.uptime import jc.parsers.uptime
import jc.parsers.w import jc.parsers.w
@ -60,6 +61,7 @@ def helptext(message):
--ps ps parser --ps ps parser
--route route parser --route route parser
--ss ss parser --ss ss parser
--stat stat parser
--uname uname -a parser --uname uname -a parser
--uptime uptime parser --uptime uptime parser
--w w parser --w w parser
@ -122,6 +124,7 @@ def main():
'--ps': jc.parsers.ps.parse, '--ps': jc.parsers.ps.parse,
'--route': jc.parsers.route.parse, '--route': jc.parsers.route.parse,
'--ss': jc.parsers.ss.parse, '--ss': jc.parsers.ss.parse,
'--stat': jc.parsers.stat.parse,
'--uname': jc.parsers.uname.parse, '--uname': jc.parsers.uname.parse,
'--uptime': jc.parsers.uptime.parse, '--uptime': jc.parsers.uptime.parse,
'--w': jc.parsers.w.parse '--w': jc.parsers.w.parse

91
jc/parsers/stat.py Normal file
View File

@ -0,0 +1,91 @@
"""jc - JSON CLI output utility stats Parser
Usage:
specify --stats as the first argument if the piped input is coming from stats
Examples:
$ stats | jc --stats -p
[]
$ stats | jc --stats -p -r
[]
"""
import jc.utils
def process(proc_data):
"""
Final processing to conform to the schema.
Parameters:
proc_data: (dictionary) raw structured data to process
Returns:
dictionary structured data with the following schema:
[
{
"stats": string,
"bar": boolean,
"baz": integer
}
]
"""
# rebuild output for added semantic information
return proc_data
def parse(data, raw=False, quiet=False):
"""
Main text parsing function
Parameters:
data: (string) text data to parse
raw: (boolean) output preprocessed JSON if True
quiet: (boolean) suppress warning messages if True
Returns:
dictionary raw or processed structured data
"""
# compatible options: linux, darwin, cygwin, win32, aix, freebsd
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd']
if not quiet:
jc.utils.compatibility(__name__, compatible)
raw_output = []
cleandata = data.splitlines()
# Clear any blank lines
cleandata = list(filter(None, cleandata))
if cleandata:
output_line = {}
# stats output contains 8 lines
for line in cleandata:
# line #1
if line.find('File:') == 1:
output_line = {}
line_list = line.split(maxsplit=1)
output_line['file'] = line_list[1]
# line #2
if line.find('Size:') == 1:
line_list = line.split(maxsplit=5)
output_line['size'] = line_list[1]
output_line['Blocks'] = line_list[3]
output_line['io_blocks'] = line_list[5]
output_line['type'] = line_list[6]
if raw:
return raw_output
else:
return process(raw_output)