X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=cli%2Fcli_trace.cpp;h=80775090c7b1be79cbce6dc9a8e9e6f6b8c521d2;hb=a7e7b27a13dc40db4ec96bc1bba667644ef0a896;hp=92251b4bef0ad6cd10b4d9b924a0414f27b9e67b;hpb=8f28cd84c31bfe031a0f9ae119f0bcc55d59286e;p=apitrace diff --git a/cli/cli_trace.cpp b/cli/cli_trace.cpp index 92251b4..8077509 100644 --- a/cli/cli_trace.cpp +++ b/cli/cli_trace.cpp @@ -28,6 +28,7 @@ #include #include +#include #include @@ -41,7 +42,7 @@ static const char *synopsis = "Generate a new trace by executing the given progr static void usage(void) { - std::cout << "usage: apitrace trace PROGRAM [ARGS ...]\n" + std::cout << "usage: apitrace trace [OPTIONS] PROGRAM [ARGS ...]\n" << synopsis << "\n" "\n" " The given program will be executed with the given arguments.\n" @@ -50,67 +51,87 @@ usage(void) " with other apitrace utilities for replay or analysis.\n" "\n" " -v, --verbose verbose output\n" - " -a, --api API specify API to trace (gl or egl);\n" + " -a, --api=API specify API to trace (" +#ifdef _WIN32 + "gl, d3d7, d3d8, d3d9, or d3d10" +#else + "gl or egl" +#endif + ");\n" " default is `gl`\n" - " -o, --output TRACE specify output trace file;\n" + " -o, --output=TRACE specify output trace file;\n" " default is `PROGRAM.trace`\n"; } +const static char * +shortOptions = "+hva:o:"; + +const static struct option +longOptions[] = { + {"help", no_argument, 0, 'h'}, + {"verbose", no_argument, 0, 'v'}, + {"api", required_argument, 0, 'a'}, + {"output", required_argument, 0, 'o'}, + {0, 0, 0, 0} +}; + static int command(int argc, char *argv[]) { bool verbose = false; trace::API api = trace::API_GL; const char *output = NULL; - int i; - - for (i = 0; i < argc; ) { - const char *arg = argv[i]; - - if (arg[0] != '-') { - break; - } - - ++i; - if (strcmp(arg, "--") == 0) { - break; - } else if (strcmp(arg, "--help") == 0) { + int opt; + while ((opt = getopt_long(argc, argv, shortOptions, longOptions, NULL)) != -1) { + switch (opt) { + case 'h': usage(); return 0; - } else if (strcmp(arg, "-v") == 0 || - strcmp(arg, "--verbose") == 0) { + case 'v': verbose = true; - } else if (strcmp(arg, "-a") == 0 || - strcmp(arg, "--api") == 0) { - arg = argv[i++]; - if (strcmp(arg, "gl") == 0) { + break; + case 'a': + if (strcmp(optarg, "gl") == 0) { api = trace::API_GL; - } else if (strcmp(arg, "egl") == 0) { + } else if (strcmp(optarg, "egl") == 0) { api = trace::API_EGL; + } else if (strcmp(optarg, "d3d7") == 0) { + api = trace::API_D3D7; + } else if (strcmp(optarg, "d3d8") == 0) { + api = trace::API_D3D8; + } else if (strcmp(optarg, "d3d9") == 0) { + api = trace::API_D3D9; + } else if (strcmp(optarg, "d3d10") == 0) { + api = trace::API_D3D10; + } else if (strcmp(optarg, "d3d10_1") == 0) { + api = trace::API_D3D10_1; + } else if (strcmp(optarg, "d3d11") == 0) { + api = trace::API_D3D11; } else { - std::cerr << "error: unknown API `" << arg << "`\n"; + std::cerr << "error: unknown API `" << optarg << "`\n"; usage(); return 1; } - } else if (strcmp(arg, "-o") == 0 || - strcmp(arg, "--output") == 0) { - output = argv[i++]; - } else { - std::cerr << "error: unknown option " << arg << "\n"; + break; + case 'o': + output = optarg; + break; + default: + std::cerr << "error: unexpected option `" << opt << "`\n"; usage(); return 1; } } - if (i == argc) { + if (optind == argc) { std::cerr << "error: no command specified\n"; usage(); return 1; } assert(argv[argc] == 0); - return trace::traceProgram(api, argv + i, output, verbose); + return trace::traceProgram(api, argv + optind, output, verbose); } const Command trace_command = {