]> git.cworth.org Git - apitrace/blob - retrace/retrace.cpp
Share more code between glretrace and d3dretrace.
[apitrace] / retrace / 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 static bool call_dumped = false;
39
40
41 static void dumpCall(trace::Call &call) {
42     if (verbosity >= 0 && !call_dumped) {
43         std::cout << call;
44         std::cout.flush();
45         call_dumped = true;
46     }
47 }
48
49
50 std::ostream &warning(trace::Call &call) {
51     dumpCall(call);
52
53     std::cerr << call.no << ": ";
54     std::cerr << "warning: ";
55
56     return std::cerr;
57 }
58
59
60 void ignore(trace::Call &call) {
61     (void)call;
62 }
63
64 void unsupported(trace::Call &call) {
65     warning(call) << "unsupported " << call.name() << " call\n";
66 }
67
68 inline void Retracer::addCallback(const Entry *entry) {
69     assert(entry->name);
70     assert(entry->callback);
71     map[entry->name] = entry->callback;
72 }
73
74
75 void Retracer::addCallbacks(const Entry *entries) {
76     while (entries->name && entries->callback) {
77         addCallback(entries++);
78     }
79 }
80
81
82 void Retracer::retrace(trace::Call &call) {
83     call_dumped = false;
84
85     if (verbosity >= 1) {
86         if (verbosity >= 2 ||
87             !(call.flags & trace::CALL_FLAG_VERBOSE)) {
88             dumpCall(call);
89         }
90     }
91
92     Callback callback = 0;
93
94     trace::Id id = call.sig->id;
95     if (id >= callbacks.size()) {
96         callbacks.resize(id + 1);
97         callback = 0;
98     } else {
99         callback = callbacks[id];
100     }
101
102     if (!callback) {
103         Map::const_iterator it = map.find(call.name());
104         if (it == map.end()) {
105             callback = &unsupported;
106         } else {
107             callback = it->second;
108         }
109         callbacks[id] = callback;
110     }
111
112     assert(callback);
113     assert(callbacks[id] == callback);
114
115     if (retrace::profiling) {
116         long long startTime = os::getTime();
117         callback(call);
118         long long stopTime = os::getTime();
119         float timeInterval = (stopTime - startTime) * (1.0E6 / os::timeFrequency);
120
121         std::cout
122             << call.no << " "
123             << "[" << timeInterval << " usec] "
124         ;
125         trace::dump(call, std::cout, trace::DUMP_FLAG_NO_CALL_NO | trace::DUMP_FLAG_NO_COLOR);
126     } else {
127         callback(call);
128     }
129 }
130
131
132 } /* namespace retrace */