2020-12-30 11:02:02 -08:00
|
|
|
|
|
|
|
# jc.parsers.cksum
|
|
|
|
jc - JSON CLI output utility `cksum` command output parser
|
|
|
|
|
|
|
|
This parser works with the following checksum calculation utilities:
|
|
|
|
- `sum`
|
|
|
|
- `cksum`
|
|
|
|
|
|
|
|
Usage (cli):
|
|
|
|
|
|
|
|
$ cksum file.txt | jc --cksum
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
$ jc cksum file.txt
|
|
|
|
|
|
|
|
Usage (module):
|
|
|
|
|
|
|
|
import jc.parsers.cksum
|
|
|
|
result = jc.parsers.cksum.parse(cksum_command_output)
|
|
|
|
|
|
|
|
Compatibility:
|
|
|
|
|
|
|
|
'linux', 'darwin', 'cygwin', 'aix', 'freebsd'
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
$ cksum * | jc --cksum -p
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"filename": "__init__.py",
|
|
|
|
"checksum": 4294967295,
|
|
|
|
"blocks": 0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"filename": "airport.py",
|
|
|
|
"checksum": 2208551092,
|
|
|
|
"blocks": 3745
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"filename": "airport_s.py",
|
|
|
|
"checksum": 1113817598,
|
|
|
|
"blocks": 4572
|
|
|
|
},
|
|
|
|
...
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
## info
|
|
|
|
```python
|
|
|
|
info()
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## process
|
|
|
|
```python
|
|
|
|
process(proc_data)
|
|
|
|
```
|
|
|
|
|
|
|
|
Final processing to conform to the schema.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2021-01-04 18:01:16 -08:00
|
|
|
proc_data: (List of Dictionaries) raw structured data to process
|
2020-12-30 11:02:02 -08:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
2021-01-04 18:01:16 -08:00
|
|
|
List of Dictionaries. Structured data with the following schema:
|
2020-12-30 11:02:02 -08:00
|
|
|
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"filename": string,
|
|
|
|
"checksum": integer,
|
|
|
|
"blocks": integer
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
## parse
|
|
|
|
```python
|
|
|
|
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:
|
|
|
|
|
2021-01-04 18:01:16 -08:00
|
|
|
List of Dictionaries. Raw or processed structured data.
|
2020-12-30 11:02:02 -08:00
|
|
|
|