X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=common%2Ftrace_tools_trace.cpp;h=4c0082d7e51771e1d540c9ce53e5372ca27ef713;hb=bd6b0c166872c38289375b7acb807ee790e87096;hp=a6182d7ef367f7570acf656eedca0b335b848189;hpb=386cc5f765586bd9725bdb8219b24b4269a9cf45;p=apitrace diff --git a/common/trace_tools_trace.cpp b/common/trace_tools_trace.cpp index a6182d7..4c0082d 100644 --- a/common/trace_tools_trace.cpp +++ b/common/trace_tools_trace.cpp @@ -32,8 +32,8 @@ #include "os_string.hpp" #include "os_process.hpp" -#include "trace_resource.hpp" #include "trace_tools.hpp" +#include "trace_resource.hpp" @@ -44,7 +44,6 @@ namespace trace { #define TRACE_VARIABLE "DYLD_LIBRARY_PATH" #define GL_TRACE_WRAPPER "OpenGL" #elif defined(_WIN32) -#define TRACE_VARIABLE "" #define GL_TRACE_WRAPPER "opengl32.dll" #else #define TRACE_VARIABLE "LD_PRELOAD" @@ -53,14 +52,83 @@ namespace trace { #endif +static inline bool +copyWrapper(const os::String & wrapperPath, + const char *programPath, + bool verbose) +{ + os::String wrapperFilename(wrapperPath); + wrapperFilename.trimDirectory(); + + os::String tmpWrapper(programPath); + tmpWrapper.trimFilename(); + tmpWrapper.join(wrapperFilename); + + if (verbose) { + std::cerr << wrapperPath << " -> " << tmpWrapper << "\n"; + } + + if (tmpWrapper.exists()) { + std::cerr << "error: not overwriting " << tmpWrapper << "\n"; + return false; + } + + if (!os::copyFile(wrapperPath, tmpWrapper, false)) { + std::cerr << "error: failed to copy " << wrapperPath << " into " << tmpWrapper << "\n"; + return false; + } + + return true; +} + + +static const char *glWrappers[] = { + GL_TRACE_WRAPPER, + NULL +}; + +#ifdef EGL_TRACE_WRAPPER +static const char *eglWrappers[] = { + EGL_TRACE_WRAPPER, + NULL +}; +#endif + +#ifdef _WIN32 +static const char *d3d7Wrappers[] = { + "ddraw.dll", + NULL +}; + +static const char *d3d8Wrappers[] = { + "d3d8.dll", + NULL +}; + +static const char *d3d9Wrappers[] = { + "d3d9.dll", + NULL +}; + +static const char *dxgiWrappers[] = { + "dxgitrace.dll", + //"dxgi.dll", + "d3d10.dll", + "d3d10_1.dll", + "d3d11.dll", + NULL +}; +#endif + int traceProgram(API api, char * const *argv, const char *output, bool verbose) { - const char *relPath; - const char *absPath; + const char **wrapperFilenames; + unsigned numWrappers; + int status = 1; /* * TODO: simplify code @@ -68,34 +136,27 @@ traceProgram(API api, switch (api) { case API_GL: - relPath = "wrappers/" GL_TRACE_WRAPPER; - absPath = APITRACE_WRAPPER_INSTALL_DIR "/" GL_TRACE_WRAPPER; + wrapperFilenames = glWrappers; break; +#ifdef EGL_TRACE_WRAPPER case API_EGL: -#ifndef EGL_TRACE_WRAPPER - std::cerr << "error: unsupported API\n"; - return 1; -#else - relPath = "wrappers/" EGL_TRACE_WRAPPER; - absPath = APITRACE_WRAPPER_INSTALL_DIR "/" EGL_TRACE_WRAPPER; + wrapperFilenames = eglWrappers; break; #endif #ifdef _WIN32 case API_D3D7: - relPath = "wrappers\\ddraw.dll"; - absPath = APITRACE_WRAPPER_INSTALL_DIR "\\ddraw.dll"; + wrapperFilenames = d3d7Wrappers; break; case API_D3D8: - relPath = "wrappers\\d3d8.dll"; - absPath = APITRACE_WRAPPER_INSTALL_DIR "\\d3d8.dll"; + wrapperFilenames = d3d8Wrappers; break; case API_D3D9: - relPath = "wrappers\\d3d9.dll"; - absPath = APITRACE_WRAPPER_INSTALL_DIR "\\d3d9.dll"; + wrapperFilenames = d3d9Wrappers; break; case API_D3D10: - relPath = "wrappers\\d3d10.dll"; - absPath = APITRACE_WRAPPER_INSTALL_DIR "\\d3d10.dll"; + case API_D3D10_1: + case API_D3D11: + wrapperFilenames = dxgiWrappers; break; #endif default: @@ -103,50 +164,45 @@ traceProgram(API api, return 1; } - os::String wrapper; - wrapper = findFile(relPath, absPath, verbose); - - if (!wrapper.length()) { - return 1; + numWrappers = 0; + while (wrapperFilenames[numWrappers]) { + ++numWrappers; } -#if defined(_WIN32) - /* On Windows copt the wrapper to the program directory. - */ - os::String wrapperName (wrapper); - wrapperName.trimDirectory(); + unsigned i; + for (i = 0; i < numWrappers; ++i) { + const char *wrapperFilename = wrapperFilenames[i]; - os::String tmpWrapper(argv[0]); - tmpWrapper.trimFilename(); - tmpWrapper.join(wrapperName); + os::String wrapperPath = findWrapper(wrapperFilename); - if (tmpWrapper.exists()) { - std::cerr << "error: not overwriting " << tmpWrapper << "\n"; - return 1; - } + if (!wrapperPath.length()) { + std::cerr << "error: failed to find " << wrapperFilename << "\n"; + goto exit; + } - if (!os::copyFile(wrapper, tmpWrapper, false)) { - std::cerr << "error: failed to copy " << wrapper << " into " << tmpWrapper << "\n"; - return 1; - } +#if defined(_WIN32) + /* On Windows copy the wrapper to the program directory. + */ + if (!copyWrapper(wrapperPath, argv[0], verbose)) { + goto exit; + } #endif /* _WIN32 */ #if defined(__APPLE__) - /* On Mac OS X, using DYLD_LIBRARY_PATH, we actually set the - * directory, not the file. */ - wrapper.trimFilename(); + /* On Mac OS X, using DYLD_LIBRARY_PATH, we actually set the + * directory, not the file. */ + wrapperPath.trimFilename(); #endif #if defined(TRACE_VARIABLE) - - if (verbose) { - std::cerr << TRACE_VARIABLE << "=" << wrapper.str() << "\n"; - } - - /* FIXME: Don't modify the current environment */ - os::setEnvironment(TRACE_VARIABLE, wrapper.str()); - + assert(numWrappers == 1); + if (verbose) { + std::cerr << TRACE_VARIABLE << "=" << wrapperPath.str() << "\n"; + } + /* FIXME: Don't modify the current environment */ + os::setEnvironment(TRACE_VARIABLE, wrapperPath.str()); #endif /* TRACE_VARIABLE */ + } if (output) { os::setEnvironment("TRACE_FILE", output); @@ -161,13 +217,20 @@ traceProgram(API api, std::cerr << "\n"; } - int status = os::execute(argv); + status = os::execute(argv); +exit: #if defined(TRACE_VARIABLE) os::unsetEnvironment(TRACE_VARIABLE); #endif #if defined(_WIN32) - os::removeFile(tmpWrapper); + for (unsigned j = 0; j < i; ++j) { + const char *wrapperFilename = wrapperFilenames[j]; + os::String tmpWrapper(argv[0]); + tmpWrapper.trimFilename(); + tmpWrapper.join(wrapperFilename); + os::removeFile(tmpWrapper); + } #endif if (output) {