mbox series

[v3,0/5] libtraceevent: Copy parsing functions from trace-cmd

Message ID 20210408214200.2063946-1-rostedt@goodmis.org (mailing list archive)
Headers show
Series libtraceevent: Copy parsing functions from trace-cmd | expand

Message

Steven Rostedt April 8, 2021, 9:41 p.m. UTC
From: "Steven Rostedt (VMware)" <rostedt@goodmis.org>

Currently, trace-cmd does the work of parsing kallsyms, saved_cmdlines,
and printk_formats and feeding it to the libtraceevent tep handle. When
starting to write code snippets that work directly with libtracefs and
libtraceevent, I found that I need this functionality as well. But this
code doesn't need libtracecmd. As these files exist in /proc and in the
tracefs directly, just like we have events and headers that get parsed
by libtraceevent, add this functionality directly to libtraceevent, as
libtraceevent is made to parse files for processing of events, and all
of the above do exactly that.

Changes since version 2:

  Right after sending v1, I found that patch 2 had a small bug on
  install the documentation. Resending the whole series with the fix
  so that patchwork picks it up correctly.

Steven Rostedt (VMware) (5):
  libtraceevent: Update gitignore
  libtraceevent: Fix dependencies in Documentation Makefile
  libtraceevent: Add the API tep_parse_kallsyms()
  libtraceevent: Add the API tep_parse_saved_cmdlines()
  libtraceevent: Add the API tep_parse_printk_formats()

 .gitignore                                  |   5 +
 Documentation/.gitignore                    |   3 +
 Documentation/Makefile                      |  28 ++--
 Documentation/libtraceevent-parse-files.txt | 149 ++++++++++++++++++
 src/event-parse.c                           | 161 ++++++++++++++++++++
 src/event-parse.h                           |   3 +
 6 files changed, 338 insertions(+), 11 deletions(-)
 create mode 100644 Documentation/.gitignore
 create mode 100644 Documentation/libtraceevent-parse-files.txt