tracer: add new python library to process tracer logs
authorStefan Sauer <ensonic@users.sf.net>
Mon, 12 Dec 2016 21:38:57 +0000 (22:38 +0100)
committerStefan Sauer <ensonic@users.sf.net>
Tue, 20 Dec 2016 07:24:57 +0000 (08:24 +0100)
commit896201af35cdb42ce05a57b661175f28c34782a7
tree33b54a88b9c655d7c8a65de2a6f75e035a41e545
parent9ca26b661decdcb44ca6abd81a7ca730ae144f72
tracer: add new python library to process tracer logs

This is the beginning of a python library for wrting tools that process tracer
logs. This library contains a structure parser written in python to avoid the
dependency on gobject introspection (and the slowness and non pythoness that
comes with it).
tracer/Makefile [new file with mode: 0644]
tracer/README [new file with mode: 0644]
tracer/tracer/analyzer.py [new file with mode: 0644]
tracer/tracer/analyzer_test.py [new file with mode: 0644]
tracer/tracer/parser.py [new file with mode: 0644]
tracer/tracer/parser_test.py [new file with mode: 0644]
tracer/tracer/structure.py [new file with mode: 0644]
tracer/tracer/structure_test.py [new file with mode: 0644]