1 /**************************************************************************
3 * Copyright 2011 Jose Fonseca
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
24 **************************************************************************/
30 #include "retrace.hpp"
39 static bool call_dumped = false;
42 static void dumpCall(trace::Call &call) {
43 if (verbosity >= 0 && !call_dumped) {
51 std::ostream &warning(trace::Call &call) {
54 std::cerr << call.no << ": ";
55 std::cerr << "warning: ";
61 void ignore(trace::Call &call) {
65 void unsupported(trace::Call &call) {
66 warning(call) << "unsupported " << call.name() << " call\n";
69 inline void Retracer::addCallback(const Entry *entry) {
71 assert(entry->callback);
72 map[entry->name] = entry->callback;
76 void Retracer::addCallbacks(const Entry *entries) {
77 while (entries->name && entries->callback) {
78 addCallback(entries++);
83 void Retracer::retrace(trace::Call &call) {
90 Callback callback = 0;
92 trace::Id id = call.sig->id;
93 if (id >= callbacks.size()) {
94 callbacks.resize(id + 1);
97 callback = callbacks[id];
101 Map::const_iterator it = map.find(call.name());
102 if (it == map.end()) {
103 callback = &unsupported;
105 callback = it->second;
107 callbacks[id] = callback;
111 assert(callbacks[id] == callback);
117 } /* namespace retrace */