]> git.cworth.org Git - apitrace/blob - common/trace_tools_trace.cpp
Actually set PTHREAD_MUTEX_RECURSIVE attr.
[apitrace] / common / trace_tools_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 <stdlib.h>
30
31 #include <iostream>
32
33 #include "os_string.hpp"
34 #include "os_process.hpp"
35 #include "trace_resource.hpp"
36 #include "trace_tools.hpp"
37
38
39
40 namespace trace {
41
42
43 #if defined(__APPLE__)
44 #define TRACE_VARIABLE "DYLD_LIBRARY_PATH"
45 #define GL_TRACE_WRAPPER  "OpenGL"
46 #elif defined(_WIN32)
47 #define TRACE_VARIABLE ""
48 #define GL_TRACE_WRAPPER  "opengl32.dll"
49 #else
50 #define TRACE_VARIABLE "LD_PRELOAD"
51 #define GL_TRACE_WRAPPER  "glxtrace.so"
52 #define EGL_TRACE_WRAPPER  "egltrace.so"
53 #endif
54
55
56 int
57 traceProgram(API api,
58              char * const *argv,
59              const char *output,
60              bool verbose)
61 {
62     const char *relPath;
63     const char *absPath;
64
65     switch (api) {
66     case API_GL:
67         relPath = "wrappers/" GL_TRACE_WRAPPER;
68         absPath = APITRACE_WRAPPER_INSTALL_DIR "/" GL_TRACE_WRAPPER;
69         break;
70     case API_EGL:
71 #ifndef EGL_TRACE_WRAPPER
72         std::cerr << "error: unsupported API\n";
73         return 1;
74 #else
75         relPath = "wrappers/" EGL_TRACE_WRAPPER;
76         absPath = APITRACE_WRAPPER_INSTALL_DIR "/" EGL_TRACE_WRAPPER;
77         break;
78 #endif
79     default:
80         std::cerr << "error: invalid API\n";
81         return 1;
82     }
83
84     os::String wrapper;
85     wrapper = findFile(relPath, absPath, verbose);
86
87     if (!wrapper.length()) {
88         return 1;
89     }
90
91 #if defined(_WIN32)
92
93     std::cerr <<
94         "The 'apitrace trace' command is not supported for this operating system.\n"
95         "Instead, you will need to copy opengl32.dll, d3d8.dll, or d3d9.dll from\n"
96         APITRACE_WRAPPER_INSTALL_DIR "\n"
97         "to the directory with the application to trace, then run the application.\n";
98
99     return 1;
100
101 #else
102
103 #if defined(__APPLE__)
104     /* On Mac OS X, using DYLD_LIBRARY_PATH, we actually set the
105      * directory, not the file. */
106     wrapper.trimFilename();
107 #endif
108
109     if (verbose) {
110         std::cerr << TRACE_VARIABLE << "=" << wrapper.str() << "\n";
111     }
112
113     /* FIXME: Don't modify the current environment */
114     setenv(TRACE_VARIABLE, wrapper.str(), 1);
115
116     if (output) {
117         setenv("TRACE_FILE", output, 1);
118     }
119
120     if (verbose) {
121         const char *sep = "";
122         for (char * const * arg = argv; *arg; ++arg) {
123             std::cerr << *arg << sep;
124             sep = " ";
125         }
126         std::cerr << "\n";
127     }
128
129     int status = os::execute(argv);
130
131     unsetenv(TRACE_VARIABLE);
132     if (output) {
133         unsetenv("TRACE_FILE");
134     }
135     
136     return status;
137 #endif
138
139 }
140
141
142 } /* namespace trace */