]> git.cworth.org Git - apitrace/blob - retrace.hpp
Fix a crash when loading multiple frames at once.
[apitrace] / retrace.hpp
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 #ifndef _RETRACE_HPP_
27 #define _RETRACE_HPP_
28
29 #include <string.h>
30
31 #include <map>
32
33 #include "trace_model.hpp"
34
35
36 namespace retrace {
37
38
39 /**
40  * Handle map.
41  *
42  * It is just like a regular std::map<T, T> container, but lookups of missing
43  * keys return the key instead of default constructor.
44  *
45  * This is necessary for several GL named objects, where one can either request
46  * the implementation to generate an unique name, or pick a value never used
47  * before.
48  *
49  * XXX: In some cases, instead of returning the key, it would make more sense
50  * to return an unused data value (e.g., container count).
51  */
52 template <class T>
53 class map
54 {
55 private:
56     typedef std::map<T, T> base_type;
57     base_type base;
58
59 public:
60
61     T & operator[] (const T &key) {
62         typename base_type::iterator it;
63         it = base.find(key);
64         if (it == base.end()) {
65             return (base[key] = key);
66         }
67         return it->second;
68     }
69     
70     const T & operator[] (const T &key) const {
71         typename base_type::const_iterator it;
72         it = base.find(key);
73         if (it == base.end()) {
74             return (base[key] = key);
75         }
76         return it->second;
77     }
78 };
79
80
81 /**
82  * Output verbosity when retracing files.
83  */
84 extern int verbosity;
85
86
87 void ignore(Trace::Call &call);
88 void retrace_unknown(Trace::Call &call);
89
90
91 typedef void (*Callback)(Trace::Call &call);
92
93 struct Entry {
94     const char *name;
95     Callback callback;
96 };
97
98
99 struct stringComparer {
100   bool operator() (const char *a, const  char *b) const {
101     return strcmp(a, b) < 0;
102   }
103 };
104
105
106 class Retracer
107 {
108     typedef std::map<const char *, Callback, stringComparer> Map;
109     Map map;
110
111     std::vector<Callback> callbacks;
112
113 public:
114     Retracer() {}
115
116     virtual ~Retracer() {}
117
118     void addCallback(const Entry *entry);
119     void addCallbacks(const Entry *entries);
120
121     void retrace(Trace::Call &call);
122 };
123
124
125 } /* namespace retrace */
126
127 #endif /* _RETRACE_HPP_ */