mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-19 00:17:51 +02:00
add fstab parser
This commit is contained in:
@ -13,6 +13,7 @@ import jc.parsers.df
|
|||||||
import jc.parsers.dig
|
import jc.parsers.dig
|
||||||
import jc.parsers.env
|
import jc.parsers.env
|
||||||
import jc.parsers.free
|
import jc.parsers.free
|
||||||
|
import jc.parsers.fstab
|
||||||
import jc.parsers.history
|
import jc.parsers.history
|
||||||
import jc.parsers.hosts
|
import jc.parsers.hosts
|
||||||
import jc.parsers.ifconfig
|
import jc.parsers.ifconfig
|
||||||
@ -49,6 +50,7 @@ def helptext(message):
|
|||||||
--dig dig parser
|
--dig dig parser
|
||||||
--env env parser
|
--env env parser
|
||||||
--free free parser
|
--free free parser
|
||||||
|
--fstab /etc/fstab parser
|
||||||
--history history parser
|
--history history parser
|
||||||
--hosts /etc/hosts file parser
|
--hosts /etc/hosts file parser
|
||||||
--ifconfig iconfig parser
|
--ifconfig iconfig parser
|
||||||
@ -113,6 +115,7 @@ def main():
|
|||||||
'--dig': jc.parsers.dig.parse,
|
'--dig': jc.parsers.dig.parse,
|
||||||
'--env': jc.parsers.env.parse,
|
'--env': jc.parsers.env.parse,
|
||||||
'--free': jc.parsers.free.parse,
|
'--free': jc.parsers.free.parse,
|
||||||
|
'--fstab': jc.parsers.fstab.parse,
|
||||||
'--history': jc.parsers.history.parse,
|
'--history': jc.parsers.history.parse,
|
||||||
'--hosts': jc.parsers.hosts.parse,
|
'--hosts': jc.parsers.hosts.parse,
|
||||||
'--ifconfig': jc.parsers.ifconfig.parse,
|
'--ifconfig': jc.parsers.ifconfig.parse,
|
||||||
|
105
jc/parsers/fstab.py
Normal file
105
jc/parsers/fstab.py
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
"""jc - JSON CLI output utility fstab Parser
|
||||||
|
|
||||||
|
Usage:
|
||||||
|
specify --fstab as the first argument if the piped input is coming from a fstab file
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
|
||||||
|
"""
|
||||||
|
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:
|
||||||
|
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"ip": string,
|
||||||
|
"hostname": [
|
||||||
|
string
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
"""
|
||||||
|
|
||||||
|
# no additional processing needed
|
||||||
|
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']
|
||||||
|
|
||||||
|
if not quiet:
|
||||||
|
jc.utils.compatibility(__name__, compatible)
|
||||||
|
|
||||||
|
raw_output = []
|
||||||
|
cleandata = data.splitlines()
|
||||||
|
|
||||||
|
# Clear any blank lines
|
||||||
|
cleandata = list(filter(None, cleandata))
|
||||||
|
|
||||||
|
if cleandata:
|
||||||
|
for line in cleandata:
|
||||||
|
output_line = {}
|
||||||
|
# ignore commented lines
|
||||||
|
if line.strip().find('#') == 0:
|
||||||
|
continue
|
||||||
|
|
||||||
|
line_list = line.split(maxsplit=5)
|
||||||
|
fs_spec = line_list[0]
|
||||||
|
fs_file = line_list[1]
|
||||||
|
fs_vfstype = line_list[2]
|
||||||
|
fs_mntops = line_list[3]
|
||||||
|
fs_freq = line_list[4]
|
||||||
|
fs_passno = line_list[5]
|
||||||
|
|
||||||
|
# fstab_list = fstab.split()
|
||||||
|
|
||||||
|
# comment_found = False
|
||||||
|
# for i, item in enumerate(fstab_list):
|
||||||
|
# if item.find('#') != -1:
|
||||||
|
# comment_found = True
|
||||||
|
# comment_item = i
|
||||||
|
# break
|
||||||
|
|
||||||
|
# if comment_found:
|
||||||
|
# fstab_list = fstab_list[:comment_item]
|
||||||
|
|
||||||
|
output_line['fs_spec'] = fs_spec
|
||||||
|
output_line['fs_file'] = fs_file
|
||||||
|
output_line['fs_vfstype'] = fs_vfstype
|
||||||
|
output_line['fs_mntops'] = fs_mntops
|
||||||
|
output_line['fs_freq'] = fs_freq
|
||||||
|
output_line['fs_passno'] = fs_passno
|
||||||
|
|
||||||
|
raw_output.append(output_line)
|
||||||
|
|
||||||
|
if raw:
|
||||||
|
return raw_output
|
||||||
|
else:
|
||||||
|
return process(raw_output)
|
Reference in New Issue
Block a user