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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/*********************************************************************
*
* Copyright 2011 Jose Fonseca
* Copyright 2012 Intel Corporation
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*********************************************************************/
#include <string.h>
#include <limits.h> // for CHAR_MAX
#include <getopt.h>
#include <string>
#include <iostream>
#include "os_string.hpp"
#include "cli.hpp"
#include "cli_retrace.hpp"
static const char *synopsis = "Dump frame images obtained from a trace.";
static void
usage(void)
{
std::cout << "usage apitrace dump-images [OPTIONS] TRACE_FILE\n"
<< synopsis << "\n"
"\n"
" -h, --help show this help message and exit\n"
" --calls=CALLSET dump images only for specified calls\n"
" (default value is \"*/frame\" which\n"
" dumps an image for each frame)\n"
" --call-nos[=BOOL] use call numbers in image filenames,\n"
" otherwise use sequential numbers (default=yes)\n"
" -m, --mrt dump all MRTs and depth/stencil\n"
" -o, --output=PREFIX prefix to use in naming output files\n"
" (default is trace filename without extension)\n"
"\n";
}
enum {
CALLS_OPT = CHAR_MAX + 1,
CALL_NOS_OPT,
};
const static char *
shortOptions = "hmo:";
const static struct option
longOptions[] = {
{"help", no_argument, 0, 'h'},
{"calls", required_argument, 0, CALLS_OPT},
{"call-nos", optional_argument, 0, CALL_NOS_OPT},
{"mrt", no_argument, 0, 'm'},
{"output", required_argument, 0, 'o'},
{0, 0, 0, 0}
};
static int
command(int argc, char *argv[])
{
os::String prefix;
const char *calls = NULL;
const char *traceName = NULL;
const char *output = NULL;
std::string call_nos;
bool mrt = false;
int opt;
while ((opt = getopt_long(argc, argv, shortOptions, longOptions, NULL)) != -1) {
switch (opt) {
case 'h':
usage();
return 0;
case CALLS_OPT:
calls = optarg;
break;
case CALL_NOS_OPT:
call_nos = "--call-nos=";
call_nos.append(optarg);
break;
case 'm':
mrt = true;
break;
case 'o':
output = optarg;
break;
default:
std::cerr << "error: unexpected option `" << (char)opt << "`\n";
usage();
return 1;
}
}
if (optind >= argc) {
std::cerr << "error: apitrace dump-images requires a trace file as an argument.\n";
usage();
return 1;
}
if (optind < argc - 1) {
std::cerr << "error: apitrace dump-images can accept only a single trace file argument.\n";
usage();
return 1;
}
traceName = argv[optind];
if (output == NULL) {
prefix = traceName;
prefix.trimDirectory();
prefix.trimExtension();
prefix.append('.');
output = prefix.str();
}
std::vector<const char *> opts;
opts.push_back("-s");
opts.push_back(output);
opts.push_back("-S");
if (calls)
opts.push_back(calls);
else
opts.push_back("*/frame");
if (!call_nos.empty()) {
opts.push_back(call_nos.c_str());
}
if (mrt)
opts.push_back("-m");
return executeRetrace(opts, traceName);
}
const Command dump_images_command = {
"dump-images",
synopsis,
usage,
command
};
|