]> git.cworth.org Git - apitrace/blob - common/trace_tools_trace.cpp
Copy wrapper dll to executable directory on windows in apitrace trace.
[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     /* On Windows copt the wrapper to the program directory.
93      */
94     os::String wrapperName (wrapper);
95     wrapperName.trimDirectory();
96
97     os::String tmpWrapper(argv[0]);
98     tmpWrapper.trimFilename();
99     tmpWrapper.join(wrapperName);
100
101     if (tmpWrapper.exists()) {
102         std::cerr << "error: not overwriting " << tmpWrapper << "\n";
103         return 1;
104     }
105
106     if (!os::copyFile(wrapper, tmpWrapper, false)) {
107         std::cerr << "error: failed to copy " << wrapper << " into " << tmpWrapper << "\n";
108         return 1;
109     }
110 #endif /* _WIN32 */
111
112 #if defined(__APPLE__)
113     /* On Mac OS X, using DYLD_LIBRARY_PATH, we actually set the
114      * directory, not the file. */
115     wrapper.trimFilename();
116 #endif
117
118 #if defined(TRACE_VARIABLE)
119
120     if (verbose) {
121         std::cerr << TRACE_VARIABLE << "=" << wrapper.str() << "\n";
122     }
123
124     /* FIXME: Don't modify the current environment */
125     os::setEnvironment(TRACE_VARIABLE, wrapper.str());
126
127 #endif /* TRACE_VARIABLE */
128
129     if (output) {
130         os::setEnvironment("TRACE_FILE", output);
131     }
132
133     if (verbose) {
134         const char *sep = "";
135         for (char * const * arg = argv; *arg; ++arg) {
136             std::cerr << *arg << sep;
137             sep = " ";
138         }
139         std::cerr << "\n";
140     }
141
142     int status = os::execute(argv);
143
144 #if defined(TRACE_VARIABLE)
145     os::unsetEnvironment(TRACE_VARIABLE);
146 #endif
147 #if defined(_WIN32)
148     os::removeFile(tmpWrapper);
149 #endif
150
151     if (output) {
152         os::unsetEnvironment("TRACE_FILE");
153     }
154     
155     return status;
156
157 }
158
159
160 } /* namespace trace */