Metadata-Version: 2.1
Name: c10-tools
Version: 0.1.3
Summary: Various tools for managing IRIG 106 Chapter 10/11 data
Home-page: https://github.com/atac/c10-tools
Author: Micah Ferrill
Author-email: ferrillm@avtest.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=py3.6
Requires-Dist: dask[bag,delayed] (~=2.23)
Requires-Dist: docopt (~=0.6.2)
Requires-Dist: dpkt (~=1.9.3)
Requires-Dist: pychapter10 (==0.3.4)
Requires-Dist: pyinstaller (~=4.0)
Requires-Dist: pytest (~=6.0.1)
Requires-Dist: pytest-cov (~=2.10.1)
Requires-Dist: tqdm (~=4.48.2)


# C10 Tools

[![Build Status](https://img.shields.io/azure-devops/build/atac-bham/ee9fec36-25b3-4698-9fc2-f77a58ad9ecb/8)](https://dev.azure.com/atac-bham/c10-tools/_build/latest?definitionId=8&branchName=master)
[![Docker Cloud Automated build](https://img.shields.io/docker/cloud/automated/mcferrill/c10-tools)](https://hub.docker.com/repository/docker/mcferrill/c10-tools/builds)

Various utilities for analyzing and manipulating Irig 106 Chapter 10 data using
[libirig106-python](https://github.com/atac/libirig106-python) and
[pychapter10](https://github.com/atac/pychapter10).


## Included Tools

* c10-allbus - Switch 1553 format 1 messages to indicate the same bus.
* c10-copy - Copy a file optionally filtering on channel id or data type.
* c10-dmp1553 - Print a hex dump of word n for every 1553 message found.
* c10-dump - Export packet data to file.
* c10-dump-pcap - Export Ethernet data from a Chapter 10 file to pcap.
* c10-errcount - Count error flags in 1553 format 1 packets.
* c10-events - Print recording event packet info.
* c10-from-pcap - Extract chapter 10 data from a pcap file.
* c10-grep - Search files/directories for specific data markers
* c10-reindex - Strip and optionally rebuild index packets for a file.
* c10-stat - Display packet counts and channel information for a file.
* c10-timefix - Correct time values in a file.
* c10-validator - Attempt to recover viable data from a corrupt file.
* c10-wrap-pcap - Wrap ethernet data from a pcap file as ethernet packets in a
  chapter 10 file.
* wireshark_dissector - Lua based wireshark dissector for Chapter 10 data


## Dependencies

* [Python](https://python.org) 3.6 or later

## Building and Running

If the dependencies are installed (pip install -r requirements) you can run
each sample from the commandline using python (eg: python c10-stat.py) and
commandline help will show you how to use each one.

You can use the setup script to compile and install to native binaries if
needed.


