1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/*
Copyright (C) 1999 T. Scott Dattalo
This file is part of gpsim.
gpsim is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
gpsim is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with gpsim; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include <iostream>
#include <iomanip>
#include <string>
#include "command.h"
#include "cmd_trace.h"
#include "../src/trace_orb.h"
using namespace std;
cmd_trace c_trace;
#define TRACE_RAW_CMD 1
#define TRACE_MASK_CMD 2
#define TRACE_LOGON_CMD 3
#define TRACE_LOGOFF_CMD 4
static cmd_options cmd_trace_options[] =
{
"r", TRACE_RAW_CMD, OPT_TT_NUMERIC,
"mask", TRACE_MASK_CMD, OPT_TT_NUMERIC,
"enable_log", TRACE_LOGON_CMD, OPT_TT_STRING,
"disable_log",TRACE_LOGOFF_CMD, OPT_TT_BITFLAG,
NULL,0,0
};
cmd_trace::cmd_trace(void)
{
name = "trace";
brief_doc = "Dump the trace history";
long_doc = "";
long_doc = long_doc + "\ntrace [dump_amount]\n" +
"\ttrace will print out the most recent \"dump_amount\" traces.\n" +
"\tIf no dump_amount is specified, then the entire trace buffer\n" +
"\twill be displayed.";
op = cmd_trace_options;
}
void cmd_trace::trace(void)
{
trace_dump_all();
}
void cmd_trace::trace(int numberof)
{
trace_dump_n(numberof);
}
void cmd_trace::trace(cmd_options *opt)
{
switch(opt->value) {
case TRACE_LOGOFF_CMD:
trace_enable_logging();
cout << "Logging to file disabled" << endl;
break;
default:
cout << " Invalid set option\n";
}
}
void cmd_trace::trace(cmd_options_num *con)
{
switch(con->co->value) {
case TRACE_RAW_CMD:
trace_dump_raw(con->n);
break;
case TRACE_MASK_CMD:
trace_watch_register(con->n);
cout << "logging register " << con->n << '\n';
break;
default:
cout << " Invalid set option\n";
}
}
void cmd_trace::trace(cmd_options_str *cos)
{
switch(cos->co->value) {
case TRACE_LOGON_CMD:
trace_enable_logging(cos->str);
cout << "Logging to file enabled" << endl;
break;
default:
cout << " Invalid set option\n";
}
}
|