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