]> git.cworth.org Git - apitrace/blob - retrace.cpp
Refactor more common retracing code.
[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 void ignore(Trace::Call &call) {
40     (void)call;
41 }
42
43 static void unknown(Trace::Call &call) {
44     if (verbosity >= 0) {
45         std::cerr << call.no << ": warning: unknown call " << call.name() << "\n";
46     }
47 }
48
49 inline void Retracer::addCallback(const Entry *entry) {
50     assert(entry->name);
51     assert(entry->callback);
52     map[entry->name] = entry->callback;
53 }
54
55
56 void Retracer::addCallbacks(const Entry *entries) {
57     while (entries->name && entries->callback) {
58         addCallback(entries++);
59     }
60 }
61
62
63 void Retracer::retrace(Trace::Call &call) {
64     if (verbosity >= 1) {
65         std::cout << call;
66         std::cout.flush();
67     }
68
69     Callback callback = 0;
70
71     Trace::Id id = call.sig->id;
72     if (id >= callbacks.size()) {
73         callbacks.resize(id + 1);
74         callback = 0;
75     } else {
76         callback = callbacks[id];
77     }
78
79     if (!callback) {
80         Map::const_iterator it = map.find(call.name());
81         if (it == map.end()) {
82             callback = &unknown;
83         } else {
84             callback = it->second;
85         }
86         callbacks[id] = callback;
87     }
88
89     assert(callback);
90     assert(callbacks[id] == callback);
91
92     callback(call);
93 }
94
95
96 } /* namespace retrace */