]> git.cworth.org Git - apitrace/blob - cli/cli_trace.cpp
Avoid hacking around argc / argv.
[apitrace] / cli / cli_trace.cpp
1 /*********************************************************************
2  *
3  * Copyright 2011 Intel Corporation
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person
7  * obtaining a copy of this software and associated documentation
8  * files (the "Software"), to deal in the Software without
9  * restriction, including without limitation the rights to use, copy,
10  * modify, merge, publish, distribute, sublicense, and/or sell copies
11  * of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be
15  * included in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
21  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
22  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24  * SOFTWARE.
25  *
26  *********************************************************************/
27
28
29 #include <assert.h>
30 #include <string.h>
31
32 #include <iostream>
33
34 #include "cli.hpp"
35
36 #include "trace_tools.hpp"
37
38
39 static const char *synopsis = "Generate a new trace by executing the given program.";
40
41 static void
42 usage(void)
43 {
44     std::cout << "usage: apitrace trace PROGRAM [ARGS ...]\n"
45         << synopsis << "\n"
46         "\n"
47         "    The given program will be executed with the given arguments.\n"
48         "    During execution, all OpenGL calls will be captured to a trace\n"
49         "    file. That trace file can then be used\n"
50         "    with other apitrace utilities for replay or analysis.\n"
51         "\n"
52         "    -v, --verbose       verbose output\n"
53         "    -a, --api API       specify API to trace (gl or egl);\n"
54         "                        default is `gl`\n"
55         "    -o, --output TRACE  specify output trace file;\n"
56         "                        default is `PROGRAM.trace`\n";
57 }
58
59 static int
60 command(int argc, char *argv[])
61 {
62     bool verbose = false;
63     trace::API api = trace::API_GL;
64     const char *output = NULL;
65     int i;
66
67     for (i = 1; i < argc; ) {
68         const char *arg = argv[i];
69
70         if (arg[0] != '-') {
71             break;
72         }
73
74         ++i;
75
76         if (strcmp(arg, "--") == 0) {
77             break;
78         } else if (strcmp(arg, "--help") == 0) {
79             usage();
80             return 0;
81         } else if (strcmp(arg, "-v") == 0 ||
82                    strcmp(arg, "--verbose") == 0) {
83             verbose = true;
84         } else if (strcmp(arg, "-a") == 0 ||
85                    strcmp(arg, "--api") == 0) {
86             arg = argv[i++];
87             if (strcmp(arg, "gl") == 0) {
88                 api = trace::API_GL;
89             } else if (strcmp(arg, "egl") == 0) {
90                 api = trace::API_EGL;
91             } else {
92                 std::cerr << "error: unknown API `" << arg << "`\n";
93                 usage();
94                 return 1;
95             }
96         } else if (strcmp(arg, "-o") == 0 ||
97                    strcmp(arg, "--output") == 0) {
98             output = argv[i++];
99         } else {
100             std::cerr << "error: unknown option " << arg << "\n";
101             usage();
102             return 1;
103         }
104     }
105
106     if (i == argc) {
107         std::cerr << "error: no command specified\n";
108         usage();
109         return 1;
110     }
111
112     assert(argv[argc] == 0);
113     return trace::traceProgram(api, argv + i, output, verbose);
114 }
115
116 const Command trace_command = {
117     "trace",
118     synopsis,
119     usage,
120     command
121 };