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