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
|
/*********************************************************************
*
* Copyright 2011 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 <iostream>
#include "os_string.hpp"
#include "trace_tools.hpp"
namespace trace {
os::String
findFile(const char *relPath,
const char *absPath,
bool verbose)
{
os::String complete;
/* First look in the same directory from which this process is
* running, (to support developers running a compiled program that
* has not been installed. */
os::String process_dir = os::getProcessName();
process_dir.trimFilename();
complete = process_dir;
complete.join(relPath);
if (complete.exists())
return complete;
/* Second, look in the directory for installed wrappers. */
complete = absPath;
if (complete.exists())
return complete;
if (verbose) {
std::cerr << "error: cannot find " << relPath << " or " << absPath << "\n";
}
return "";
}
#define SCRIPTS_SUBDIR "lib/apitrace/scripts"
os::String
findScript(const char *name)
{
os::String path;
#if defined(APITRACE_SOURCE_DIR)
// Try the absolute source path -- useful for development or quick
// experiment. Relative paths don't quite work here due to out of source
// trees.
path = APITRACE_SOURCE_DIR "/scripts";
path.join(name);
if (path.exists()) {
return path;
}
#endif
#if defined(_WIN32)
// Windows has no standard installation path, so find it relatively to the
// process name, which is assumed to be in a bin subdirectory.
path = os::getProcessName();
path.trimFilename();
path.join("..\\lib\\apitrace\\scripts");
path.join(name);
if (path.exists()) {
return path;
}
#else
// Assume a predefined installation path on Unices
path = APITRACE_INSTALL_PREFIX "/lib/apitrace/scripts";
path.join(name);
if (path.exists()) {
return path;
}
#endif
std::cerr << "error: cannot find " << name << " script\n";
return "";
}
} /* namespace trace */
|