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