]> git.cworth.org Git - apitrace/blob - retrace/retrace.cpp
Move benchmark flag into common retrace code.
[apitrace] / retrace / 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 "os_time.hpp"
31 #include "trace_dump.hpp"
32 #include "retrace.hpp"
33
34
35 namespace retrace {
36
37
38 trace::Parser parser;
39
40
41 int verbosity = 0;
42 bool benchmark = false;
43 bool profiling = false;
44
45
46 static bool call_dumped = false;
47
48
49 static void dumpCall(trace::Call &call) {
50     if (verbosity >= 0 && !call_dumped) {
51         std::cout << call;
52         std::cout.flush();
53         call_dumped = true;
54     }
55 }
56
57
58 std::ostream &warning(trace::Call &call) {
59     dumpCall(call);
60
61     std::cerr << call.no << ": ";
62     std::cerr << "warning: ";
63
64     return std::cerr;
65 }
66
67
68 void ignore(trace::Call &call) {
69     (void)call;
70 }
71
72 void unsupported(trace::Call &call) {
73     warning(call) << "unsupported " << call.name() << " call\n";
74 }
75
76 inline void Retracer::addCallback(const Entry *entry) {
77     assert(entry->name);
78     assert(entry->callback);
79     map[entry->name] = entry->callback;
80 }
81
82
83 void Retracer::addCallbacks(const Entry *entries) {
84     while (entries->name && entries->callback) {
85         addCallback(entries++);
86     }
87 }
88
89
90 void Retracer::retrace(trace::Call &call) {
91     call_dumped = false;
92
93     if (verbosity >= 1) {
94         if (verbosity >= 2 ||
95             !(call.flags & trace::CALL_FLAG_VERBOSE)) {
96             dumpCall(call);
97         }
98     }
99
100     Callback callback = 0;
101
102     trace::Id id = call.sig->id;
103     if (id >= callbacks.size()) {
104         callbacks.resize(id + 1);
105         callback = 0;
106     } else {
107         callback = callbacks[id];
108     }
109
110     if (!callback) {
111         Map::const_iterator it = map.find(call.name());
112         if (it == map.end()) {
113             callback = &unsupported;
114         } else {
115             callback = it->second;
116         }
117         callbacks[id] = callback;
118     }
119
120     assert(callback);
121     assert(callbacks[id] == callback);
122
123     if (retrace::profiling) {
124         long long startTime = os::getTime();
125         callback(call);
126         long long stopTime = os::getTime();
127         float timeInterval = (stopTime - startTime) * (1.0E6 / os::timeFrequency);
128
129         std::cout
130             << call.no << " "
131             << "[" << timeInterval << " usec] "
132         ;
133         trace::dump(call, std::cout, trace::DUMP_FLAG_NO_CALL_NO | trace::DUMP_FLAG_NO_COLOR);
134     } else {
135         callback(call);
136     }
137 }
138
139
140 } /* namespace retrace */