]> git.cworth.org Git - apitrace/blob - common/trace_parser.hpp
Define all D2D/DWRITE GUIDs
[apitrace] / common / trace_parser.hpp
1 /**************************************************************************
2  *
3  * Copyright 2010 VMware, Inc.
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 _TRACE_PARSER_HPP_
27 #define _TRACE_PARSER_HPP_
28
29
30 #include <iostream>
31 #include <list>
32
33 #include "trace_file.hpp"
34 #include "trace_format.hpp"
35 #include "trace_model.hpp"
36
37
38 namespace trace {
39
40
41 struct ParseBookmark
42 {
43     File::Offset offset;
44     unsigned next_call_no;
45 };
46
47
48 class Parser
49 {
50 protected:
51     File *file;
52
53     enum Mode {
54         FULL = 0,
55         SCAN,
56         SKIP
57     };
58
59     typedef std::list<Call *> CallList;
60     CallList calls;
61
62     struct FunctionSigFlags : public FunctionSig {
63         CallFlags flags;
64     };
65
66     // Helper template that extends a base signature structure, with additional
67     // parsing information.
68     template< class T >
69     struct SigState : public T {
70         // Offset in the file of where signature was defined.  It is used when
71         // reparsing to determine whether the signature definition is to be
72         // expected next or not.
73         File::Offset offset;
74     };
75
76     typedef SigState<FunctionSigFlags> FunctionSigState;
77     typedef SigState<StructSig> StructSigState;
78     typedef SigState<EnumSig> EnumSigState;
79     typedef SigState<BitmaskSig> BitmaskSigState;
80
81     typedef std::vector<FunctionSigState *> FunctionMap;
82     typedef std::vector<StructSigState *> StructMap;
83     typedef std::vector<EnumSigState *> EnumMap;
84     typedef std::vector<BitmaskSigState *> BitmaskMap;
85
86     FunctionMap functions;
87     StructMap structs;
88     EnumMap enums;
89     BitmaskMap bitmasks;
90
91     FunctionSig *glGetErrorSig;
92
93     unsigned next_call_no;
94
95 public:
96     unsigned long long version;
97
98     Parser();
99
100     ~Parser();
101
102     bool open(const char *filename);
103
104     void close(void);
105
106     Call *parse_call(void) {
107         return parse_call(FULL);
108     }
109
110     bool supportsOffsets() const
111     {
112         return file->supportsOffsets();
113     }
114
115     void getBookmark(ParseBookmark &bookmark);
116
117     void setBookmark(const ParseBookmark &bookmark);
118
119     int percentRead()
120     {
121         return file->percentRead();
122     }
123
124     Call *scan_call() {
125         return parse_call(SCAN);
126     }
127
128 protected:
129     Call *parse_call(Mode mode);
130
131     FunctionSigFlags *parse_function_sig(void);
132     StructSig *parse_struct_sig();
133     EnumSig *parse_old_enum_sig();
134     EnumSig *parse_enum_sig();
135     BitmaskSig *parse_bitmask_sig();
136     
137     static CallFlags
138     lookupCallFlags(const char *name);
139
140     Call *parse_Call(Mode mode);
141
142     void parse_enter(Mode mode);
143
144     Call *parse_leave(Mode mode);
145
146     bool parse_call_details(Call *call, Mode mode);
147
148     void adjust_call_flags(Call *call);
149
150     void parse_arg(Call *call, Mode mode);
151
152     Value *parse_value(void);
153     void scan_value(void);
154     inline Value *parse_value(Mode mode) {
155         if (mode == FULL) {
156             return parse_value();
157         } else {
158             scan_value();
159             return NULL;
160         }
161     }
162
163     Value *parse_sint();
164     void scan_sint();
165
166     Value *parse_uint();
167     void scan_uint();
168
169     Value *parse_float();
170     void scan_float();
171
172     Value *parse_double();
173     void scan_double();
174
175     Value *parse_string();
176     void scan_string();
177
178     Value *parse_enum();
179     void scan_enum();
180
181     Value *parse_bitmask();
182     void scan_bitmask();
183
184     Value *parse_array(void);
185     void scan_array(void);
186
187     Value *parse_blob(void);
188     void scan_blob(void);
189
190     Value *parse_struct();
191     void scan_struct();
192
193     Value *parse_opaque();
194     void scan_opaque();
195
196     const char * read_string(void);
197     void skip_string(void);
198
199     signed long long read_sint(void);
200     void skip_sint(void);
201
202     unsigned long long read_uint(void);
203     void skip_uint(void);
204
205     inline int read_byte(void);
206     inline void skip_byte(void);
207 };
208
209
210 } /* namespace trace */
211
212 #endif /* _TRACE_PARSER_HPP_ */