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