#!/usr/bin/perl
#
# kitrace_to_db.pm
# Copyright (C) 1995-2011 by John Heidemann <johnh@isi.edu>
# $Id: bd1785eb7cda24f3cbb75aeeabcc7b4d20c0cd71 $
#
# This program is distributed under terms of the GNU general
# public license, version 2. See the file COPYING
# in $dblib for details.
#
=head1 NAME
kitrace_to_db - convert kitrace output to Fsdb format
=head1 SYNOPSIS
kitrace_to_db [-Y year] [registers] <kitrace.out >kitrace.fsdb
=head1 DESCRIPTION
Converts a kitrace data stream to Fsdb format.
Optional arguments list registers
which will be picked out of the output stream
and formatted as their own columns.
=head1 OPTIONS
=over 4
=item B<-Y Y> or B<--year Y>
Specify the 4-digit year for the dataset (defaults to current year).
=item B<-u> or B<--utc>
Specify UTC timezone (defaults to local time zeon).
=back
=for comment
begin_standard_fsdb_options
This module also supports the standard fsdb options:
=over 4
=item B<-d>
Enable debugging output.
=item B<-i> or B<--input> InputSource
Read from InputSource, typically a file name, or C<-> for standard input,
or (if in Perl) a IO::Handle, Fsdb::IO or Fsdb::BoundedQueue objects.
=item B<-o> or B<--output> OutputDestination
Write to OutputDestination, typically a file name, or C<-> for standard output,
or (if in Perl) a IO::Handle, Fsdb::IO or Fsdb::BoundedQueue objects.
=item B<--autorun> or B<--noautorun>
By default, programs process automatically,
but Fsdb::Filter objects in Perl do not run until you invoke
the run() method.
The C<--(no)autorun> option controls that behavior within Perl.
=item B<--help>
Show help.
=item B<--man>
Show full manual.
=back
=for comment
end_standard_fsdb_options
=head1 SAMPLE USAGE
=head2 Input:
_null_getpage+4 Nov 7 22:40:13.281070 ( ) pid 4893
_null_getpage+128 Nov 7 22:40:13.281756 ( 00.000686) pid 4893
_null_getpage+4 Nov 7 22:40:13.282694 ( 00.000938) pid 4893
_null_getpage+128 Nov 7 22:40:13.328709 ( 00.046015) pid 4893
_null_getpage+4 Nov 7 22:40:13.330758 ( 00.002049) pid 4893
_null_getpage+128 Nov 7 22:40:13.353830 ( 00.023072) pid 4893
_null_getpage+4 Nov 7 22:40:13.355566 ( 00.001736) pid 4893
_null_getpage+128 Nov 7 22:40:13.357169 ( 00.001603) pid 4893
_null_getpage+4 Nov 7 22:40:13.358780 ( 00.001611) pid 4893
_null_getpage+128 Nov 7 22:40:13.375844 ( 00.017064) pid 4893
_null_getpage+4 Nov 7 22:40:13.377850 ( 00.002006) pid 4893
_null_getpage+128 Nov 7 22:40:13.378358 ( 00.000508) pid 4893
=head2 Command:
kitrace_to_db -Y 1995
=head2 Output:
#fsdb event clock diff
_null_getpage+4 815812813.281070 0.0
_null_getpage+128 815812813.281756 00.000686
_null_getpage+4 815812813.282694 00.000938
_null_getpage+128 815812813.328709 00.046015
_null_getpage+4 815812813.330758 00.002049
_null_getpage+128 815812813.353830 00.023072
_null_getpage+4 815812813.355566 00.001736
_null_getpage+128 815812813.357169 00.001603
_null_getpage+4 815812813.358780 00.001611
_null_getpage+128 815812813.375844 00.017064
_null_getpage+4 815812813.377850 00.002006
_null_getpage+128 815812813.378358 00.000508
# | kitrace_to_db
=head1 SEE ALSO
L<Fsdb>.
=cut
# WARNING: This code is derived from kitrace_to_db.pm; that is the master copy.
use Fsdb::Filter::kitrace_to_db;
my $f = new Fsdb::Filter::kitrace_to_db(@ARGV);
$f->setup_run_finish; # or could just --autorun
exit 0;
=head1 AUTHOR and COPYRIGHT
Copyright (C) 1991-2011 by John Heidemann <johnh@isi.edu>
This program is distributed under terms of the GNU general
public license, version 2. See the file COPYING
with the distribution for details.
=cut
1;