]> git.cworth.org Git - apitrace/blob - retrace/retrace.cpp
image: Fix PNM dumping for 2/4 channels.
[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 "retrace.hpp"
32
33
34 namespace retrace {
35
36
37 trace::DumpFlags dumpFlags = 0;
38
39
40 static bool call_dumped = false;
41
42
43 static void dumpCall(trace::Call &call) {
44     if (verbosity >= 0 && !call_dumped) {
45         std::cout << std::hex << call.thread_id << std::dec << " ";
46         trace::dump(call, std::cout, dumpFlags);
47         std::cout.flush();
48         call_dumped = true;
49     }
50 }
51
52
53 std::ostream &warning(trace::Call &call) {
54     dumpCall(call);
55
56     std::cerr << call.no << ": ";
57     std::cerr << "warning: ";
58
59     return std::cerr;
60 }
61
62
63 void ignore(trace::Call &call) {
64     (void)call;
65 }
66
67 void unsupported(trace::Call &call) {
68     warning(call) << "unsupported " << call.name() << " call\n";
69 }
70
71 inline void Retracer::addCallback(const Entry *entry) {
72     assert(entry->name);
73     assert(entry->callback);
74     map[entry->name] = entry->callback;
75 }
76
77
78 void Retracer::addCallbacks(const Entry *entries) {
79     while (entries->name && entries->callback) {
80         addCallback(entries++);
81     }
82 }
83
84
85 void Retracer::retrace(trace::Call &call) {
86     call_dumped = false;
87
88     Callback callback = 0;
89
90     trace::Id id = call.sig->id;
91     if (id >= callbacks.size()) {
92         callbacks.resize(id + 1);
93         callback = 0;
94     } else {
95         callback = callbacks[id];
96     }
97
98     if (!callback) {
99         Map::const_iterator it = map.find(call.name());
100         if (it == map.end()) {
101             callback = &unsupported;
102         } else {
103             callback = it->second;
104         }
105         callbacks[id] = callback;
106     }
107
108     assert(callback);
109     assert(callbacks[id] == callback);
110
111     if (verbosity >= 1) {
112         if (verbosity >= 2 ||
113             (!(call.flags & trace::CALL_FLAG_VERBOSE) &&
114              callback != &ignore)) {
115             dumpCall(call);
116         }
117     }
118
119     callback(call);
120 }
121
122
123 } /* namespace retrace */