]> git.cworth.org Git - apitrace/blob - retrace.cpp
Merge branch 'master' into d3dretrace
[apitrace] / retrace.cpp
1 /**************************************************************************
2  *
3  * Copyright 2011 Jose Fonseca
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26
27 #include <string.h>
28 #include <iostream>
29
30 #include "os_time.hpp"
31 #include "trace_dump.hpp"
32 #include "retrace.hpp"
33
34
35 namespace retrace {
36
37
38 trace::Parser parser;
39
40
41 int verbosity = 0;
42 bool profiling = false;
43
44
45 static bool call_dumped = false;
46
47
48 static void dumpCall(trace::Call &call) {
49     if (verbosity >= 0 && !call_dumped) {
50         std::cout << call;
51         std::cout.flush();
52         call_dumped = true;
53     }
54 }
55
56
57 std::ostream &warning(trace::Call &call) {
58     dumpCall(call);
59
60     std::cerr << call.no << ": ";
61     std::cerr << "warning: ";
62
63     return std::cerr;
64 }
65
66
67 void ignore(trace::Call &call) {
68     (void)call;
69 }
70
71 void unsupported(trace::Call &call) {
72     warning(call) << "unsupported " << call.name() << " call\n";
73 }
74
75 inline void Retracer::addCallback(const Entry *entry) {
76     assert(entry->name);
77     assert(entry->callback);
78     map[entry->name] = entry->callback;
79 }
80
81
82 void Retracer::addCallbacks(const Entry *entries) {
83     while (entries->name && entries->callback) {
84         addCallback(entries++);
85     }
86 }
87
88
89 void Retracer::retrace(trace::Call &call) {
90     call_dumped = false;
91
92     if (verbosity >= 1) {
93         if (verbosity >= 2 ||
94             !(call.flags & trace::CALL_FLAG_VERBOSE)) {
95             dumpCall(call);
96         }
97     }
98
99     Callback callback = 0;
100
101     trace::Id id = call.sig->id;
102     if (id >= callbacks.size()) {
103         callbacks.resize(id + 1);
104         callback = 0;
105     } else {
106         callback = callbacks[id];
107     }
108
109     if (!callback) {
110         Map::const_iterator it = map.find(call.name());
111         if (it == map.end()) {
112             callback = &unsupported;
113         } else {
114             callback = it->second;
115         }
116         callbacks[id] = callback;
117     }
118
119     assert(callback);
120     assert(callbacks[id] == callback);
121
122     if (retrace::profiling) {
123         long long startTime = os::getTime();
124         callback(call);
125         long long stopTime = os::getTime();
126         float timeInterval = (stopTime - startTime) * (1.0E6 / os::timeFrequency);
127
128         std::cout
129             << call.no << " "
130             << "[" << timeInterval << " usec] "
131         ;
132         trace::dump(call, std::cout, trace::DUMP_FLAG_NO_CALL_NO | trace::DUMP_FLAG_NO_COLOR);
133     } else {
134         callback(call);
135     }
136 }
137
138
139 } /* namespace retrace */