1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-13 01:20:24 +02:00

add proc-net-route parser and tests

This commit is contained in:
Kelly Brazil
2022-09-26 13:16:18 -07:00
parent 00129f4b40
commit 980c2907ad
7 changed files with 313 additions and 1 deletions

View File

@ -0,0 +1,109 @@
[Home](https://kellyjonbrazil.github.io/jc/)
<a id="jc.parsers.proc_net_route"></a>
# jc.parsers.proc\_net\_route
jc - JSON Convert `/proc/net/route` file parser
Usage (cli):
$ cat /proc/net/route | jc --proc
or
$ jc /proc/net/route
or
$ cat /proc/net/route | jc --proc-net-route
Usage (module):
import jc
result = jc.parse('proc', proc_net_route_file)
or
import jc
result = jc.parse('proc_net_route', proc_net_route_file)
Schema:
[
{
"Iface": string,
"Destination": string,
"Gateway": string,
"Flags": string,
"RefCnt": integer,
"Use": integer,
"Metric": integer,
"Mask": string,
"MTU": integer,
"Window": integer,
"IRTT": integer
}
]
Examples:
$ cat /proc/net/route | jc --proc -p
[
{
"Iface": "ens33",
"Destination": "00000000",
"Gateway": "0247A8C0",
"Flags": "0003",
"RefCnt": 0,
"Use": 0,
"Metric": 100,
"Mask": "00000000",
"MTU": 0,
"Window": 0,
"IRTT": 0
},
...
]
$ cat /proc/net/route | jc --proc -p -r
[
{
"Iface": "ens33",
"Destination": "00000000",
"Gateway": "0247A8C0",
"Flags": "0003",
"RefCnt": "0",
"Use": "0",
"Metric": "100",
"Mask": "00000000",
"MTU": "0",
"Window": "0",
"IRTT": "0"
},
...
]
<a id="jc.parsers.proc_net_route.parse"></a>
### parse
```python
def parse(data: str, raw: bool = False, quiet: bool = False) -> List[Dict]
```
Main text parsing function
Parameters:
data: (string) text data to parse
raw: (boolean) unprocessed output if True
quiet: (boolean) suppress warning messages if True
Returns:
List of Dictionaries. Raw or processed structured data.
### Parser Information
Compatibility: linux
Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)

View File

@ -132,6 +132,7 @@ parsers = [
'proc-net-netstat',
'proc-net-packet',
'proc-net-protocols',
'proc-net-route',
'ps',
'route',
'rpm-qi',

View File

@ -0,0 +1,149 @@
"""jc - JSON Convert `/proc/net/route` file parser
Usage (cli):
$ cat /proc/net/route | jc --proc
or
$ jc /proc/net/route
or
$ cat /proc/net/route | jc --proc-net-route
Usage (module):
import jc
result = jc.parse('proc', proc_net_route_file)
or
import jc
result = jc.parse('proc_net_route', proc_net_route_file)
Schema:
[
{
"Iface": string,
"Destination": string,
"Gateway": string,
"Flags": string,
"RefCnt": integer,
"Use": integer,
"Metric": integer,
"Mask": string,
"MTU": integer,
"Window": integer,
"IRTT": integer
}
]
Examples:
$ cat /proc/net/route | jc --proc -p
[
{
"Iface": "ens33",
"Destination": "00000000",
"Gateway": "0247A8C0",
"Flags": "0003",
"RefCnt": 0,
"Use": 0,
"Metric": 100,
"Mask": "00000000",
"MTU": 0,
"Window": 0,
"IRTT": 0
},
...
]
$ cat /proc/net/route | jc --proc -p -r
[
{
"Iface": "ens33",
"Destination": "00000000",
"Gateway": "0247A8C0",
"Flags": "0003",
"RefCnt": "0",
"Use": "0",
"Metric": "100",
"Mask": "00000000",
"MTU": "0",
"Window": "0",
"IRTT": "0"
},
...
]
"""
from typing import List, Dict
import jc.utils
from jc.parsers.universal import simple_table_parse
class info():
"""Provides parser metadata (version, author, etc.)"""
version = '1.0'
description = '`/proc/net/route` file parser'
author = 'Kelly Brazil'
author_email = 'kellyjonbrazil@gmail.com'
compatible = ['linux']
hidden = True
__version__ = info.version
def _process(proc_data: List[Dict]) -> List[Dict]:
"""
Final processing to conform to the schema.
Parameters:
proc_data: (List of Dictionaries) raw structured data to process
Returns:
List of Dictionaries. Structured to conform to the schema.
"""
# field types documented here: https://github.com/torvalds/linux/blob/v4.19/include/uapi/linux/route.h
int_list = {'RefCnt', 'Use', 'Metric', 'MTU', 'Window', 'IRTT'}
for entry in proc_data:
for key, val in entry.items():
if key in int_list:
entry[key] = int(val)
return proc_data
def parse(
data: str,
raw: bool = False,
quiet: bool = False
) -> List[Dict]:
"""
Main text parsing function
Parameters:
data: (string) text data to parse
raw: (boolean) unprocessed output if True
quiet: (boolean) suppress warning messages if True
Returns:
List of Dictionaries. Raw or processed structured data.
"""
jc.utils.compatibility(__name__, info.compatible, quiet)
jc.utils.input_type_check(data)
raw_output: List = []
if jc.utils.has_data(data):
raw_output = simple_table_parse(data.splitlines())
return raw_output if raw else _process(raw_output)

View File

@ -443,7 +443,7 @@ PLIST file parser
.TP
.B
\fB--proc-driver-rtc\fP
`/proc/driver_rtc` file parser
`/proc/driver/rtc` file parser
.TP
.B
@ -645,6 +645,11 @@ PLIST file parser
\fB--proc-net-protocols\fP
`/proc/net/protocols` file parser
.TP
.B
\fB--proc-net-route\fP
`/proc/net/route` file parser
.TP
.B
\fB--ps\fP

View File

@ -0,0 +1 @@
[{"Iface":"ens33","Destination":"00000000","Gateway":"0247A8C0","Flags":"0003","RefCnt":0,"Use":0,"Metric":100,"Mask":"00000000","MTU":0,"Window":0,"IRTT":0},{"Iface":"ens33","Destination":"0047A8C0","Gateway":"00000000","Flags":"0001","RefCnt":0,"Use":0,"Metric":0,"Mask":"00FFFFFF","MTU":0,"Window":0,"IRTT":0},{"Iface":"ens33","Destination":"0247A8C0","Gateway":"00000000","Flags":"0005","RefCnt":0,"Use":0,"Metric":100,"Mask":"FFFFFFFF","MTU":0,"Window":0,"IRTT":0}]

View File

@ -160,6 +160,9 @@ class MyTests(unittest.TestCase):
'proc_net_protocols': (
'fixtures/linux-proc/net_protocols',
'fixtures/linux-proc/net_protocols.json'),
'proc_net_route': (
'fixtures/linux-proc/net_route',
'fixtures/linux-proc/net_route.json'),
'proc_pid_fdinfo': (
'fixtures/linux-proc/pid_fdinfo',

View File

@ -0,0 +1,44 @@
import os
import unittest
import json
from typing import Dict
import jc.parsers.proc_net_route
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
class MyTests(unittest.TestCase):
f_in: Dict = {}
f_json: Dict = {}
@classmethod
def setUpClass(cls):
fixtures = {
'proc_net_route': (
'fixtures/linux-proc/net_route',
'fixtures/linux-proc/net_route.json')
}
for file, filepaths in fixtures.items():
with open(os.path.join(THIS_DIR, filepaths[0]), 'r', encoding='utf-8') as a, \
open(os.path.join(THIS_DIR, filepaths[1]), 'r', encoding='utf-8') as b:
cls.f_in[file] = a.read()
cls.f_json[file] = json.loads(b.read())
def test_proc_net_route_nodata(self):
"""
Test 'proc_net_route' with no data
"""
self.assertEqual(jc.parsers.proc_net_route.parse('', quiet=True), [])
def test_proc_net_route(self):
"""
Test '/proc/net/route'
"""
self.assertEqual(jc.parsers.proc_net_route.parse(self.f_in['proc_net_route'], quiet=True),
self.f_json['proc_net_route'])
if __name__ == '__main__':
unittest.main()