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
|
#include <stdlib.h>
#include "mainwindow.h"
#include "apitrace.h"
#include "apitracecall.h"
#include "os_string.hpp"
#include "os_process.hpp"
#include "version.h"
#include <QApplication>
#include <QMetaType>
#include <QVariant>
#include <QImage>
Q_DECLARE_METATYPE(QList<ApiTraceFrame*>);
Q_DECLARE_METATYPE(QVector<ApiTraceCall*>);
Q_DECLARE_METATYPE(Qt::CaseSensitivity);
Q_DECLARE_METATYPE(ApiTrace::SearchResult);
Q_DECLARE_METATYPE(ApiTrace::SearchRequest);
Q_DECLARE_METATYPE(ImageHash);
static void usage(void)
{
qInfo("usage: qapitrace [options] [TRACE] [CALLNO]\n"
"Valid options include:\n"
" -h, --help Print this help message\n"
" -v, --version Print version\n"
" --remote-target HOST Replay trace on remote target HOST\n");
}
static void version(void)
{
qInfo("qapitrace %s", APITRACE_VERSION);
}
int main(int argc, char **argv)
{
QApplication app(argc, argv);
app.setWindowIcon(QIcon(":/resources/qapitrace.png"));
QCoreApplication::setOrganizationName("ApiTrace");
QCoreApplication::setApplicationName("QApiTrace");
qRegisterMetaType<QList<ApiTraceFrame*> >();
qRegisterMetaType<QVector<ApiTraceCall*> >();
qRegisterMetaType<ApiTraceState>();
qRegisterMetaType<Qt::CaseSensitivity>();
qRegisterMetaType<ApiTrace::SearchResult>();
qRegisterMetaType<ApiTrace::SearchRequest>();
qRegisterMetaType<ImageHash>();
#ifndef Q_OS_WIN
os::String currentProcess = os::getProcessName();
currentProcess.trimFilename();
QString path = qgetenv("PATH");
path = QLatin1String(currentProcess.str()) + QLatin1String(":") + path;
qputenv("PATH", path.toLatin1());
#endif
QStringList args = app.arguments();
QString remoteTarget;
int i = 1;
while (i < args.count()) {
QString arg = args[i];
if (arg[0] != QLatin1Char('-')) {
break;
}
++i;
if (arg == QLatin1String("--")) {
break;
} else if (arg == QLatin1String("--remote-target")) {
if (i == args.count()) {
qWarning("Option --remote-target requires an argument.\n");
exit(1);
}
remoteTarget = args[i];
++i;
} else if (arg == QLatin1String("-h") ||
arg == QLatin1String("--help")) {
usage();
exit(0);
} else if (arg == QLatin1String("-v") ||
arg == QLatin1String("--version")) {
version();
exit(0);
} else {
usage();
exit(1);
}
}
MainWindow window;
window.show();
if (i < args.count()) {
QString fileName = args[i++];
int callNum = -1;
if (i < args.count()) {
callNum = args[i++].toInt();
}
window.loadTrace(fileName, callNum);
}
if (remoteTarget.length()) {
window.setRemoteTarget(remoteTarget);
}
app.exec();
}
|