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