]> git.cworth.org Git - apitrace/blob - cli/cli_trace.cpp
Make findFile non-static, given it will be necessary for other commands.
[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         "    -o, --output TRACE  specify output trace file;\n"
54         "                        default is `PROGRAM.trace`\n";
55 }
56
57 static int
58 command(int argc, char *argv[])
59 {
60     bool verbose = false;
61     const char *output = NULL;
62     int i;
63
64     for (i = 0; i < argc; ) {
65         const char *arg = argv[i];
66
67         if (arg[0] != '-') {
68             break;
69         }
70
71         ++i;
72
73         if (strcmp(arg, "--") == 0) {
74             break;
75         } else if (strcmp(arg, "--help") == 0) {
76             usage();
77             return 0;
78         } else if (strcmp(arg, "-v") == 0 ||
79                    strcmp(arg, "--verbose") == 0) {
80             verbose = true;
81         } else if (strcmp(arg, "-o") == 0 ||
82                    strcmp(arg, "--output") == 0) {
83             output = argv[i++];
84         } else {
85             std::cerr << "error: unknown option " << arg << "\n";
86             usage();
87             return 1;
88         }
89     }
90
91     if (i == argc) {
92         std::cerr << "error: no command specified\n";
93         usage();
94         return 1;
95     }
96
97     assert(argv[argc] == 0);
98     return trace::traceProgram(argv + i, output, verbose);
99 }
100
101 const Command trace_command = {
102     "trace",
103     synopsis,
104     usage,
105     command
106 };