]> git.cworth.org Git - apitrace/blob - trace_parser.hpp
Make state lookups with on-demand loading work.
[apitrace] / 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 #include <set>
33
34 #include "trace_file.hpp"
35 #include "trace_format.hpp"
36 #include "trace_model.hpp"
37
38
39 namespace Trace {
40
41 class Parser
42 {
43 protected:
44     File *file;
45
46     typedef std::list<Call *> CallList;
47     CallList calls;
48
49     typedef std::vector<FunctionSig *> FunctionMap;
50     FunctionMap functions;
51
52     typedef std::vector<StructSig *> StructMap;
53     StructMap structs;
54
55     typedef std::vector<EnumSig *> EnumMap;
56     EnumMap enums;
57
58     typedef std::vector<BitmaskSig *> BitmaskMap;
59     BitmaskMap bitmasks;
60
61     typedef std::set<File::Offset> TraceOffsets;
62     TraceOffsets m_callSigOffsets;
63     TraceOffsets m_structSigOffsets;
64     TraceOffsets m_enumSigOffsets;
65     TraceOffsets m_bitmaskSigOffsets;
66
67     typedef std::map<File::Offset, unsigned> CallNumOffsets;
68     CallNumOffsets m_callNumOffsets;
69
70     bool m_supportsSeeking;
71
72     unsigned next_call_no;
73
74 public:
75     unsigned long long version;
76
77     Parser();
78
79     ~Parser();
80
81     bool open(const char *filename);
82
83     void close(void);
84
85     Call *parse_call(void);
86
87     bool supportsOffsets() const
88     {
89         return file->supportsOffsets();
90     }
91
92     File::Offset currentOffset()
93     {
94         return file->currentOffset();
95     }
96
97     void setCurrentOffset(const File::Offset &offset)
98     {
99         file->setCurrentOffset(offset);
100     }
101
102     bool callWithSignature(const File::Offset &offset) const;
103     bool structWithSignature(const File::Offset &offset) const;
104     bool enumWithSignature(const File::Offset &offset) const;
105     bool bitmaskWithSignature(const File::Offset &offset) const;
106
107     unsigned currentCallNumber() const
108     {
109         return next_call_no;
110     }
111
112     void setCurrentCallNumber(unsigned num)
113     {
114         next_call_no = num;
115     }
116
117     int percentRead()
118     {
119         return file->percentRead();
120     }
121
122     Call *scan_call();
123
124 protected:
125     void parse_enter(void);
126
127     Call *parse_leave(void);
128
129     bool parse_call_details(Call *call);
130
131     void parse_arg(Call *call);
132
133     Value *parse_value(void);
134
135     Value *parse_sint();
136
137     Value *parse_uint();
138
139     Value *parse_float();
140
141     Value *parse_double();
142
143     Value *parse_string();
144
145     Value *parse_enum();
146
147     Value *parse_bitmask();
148
149     Value *parse_array(void);
150
151     Value *parse_blob(void);
152
153     Value *parse_struct();
154
155     Value *parse_opaque();
156
157     const char * read_string(void);
158
159     unsigned long long read_uint(void);
160
161     inline int read_byte(void);
162
163 protected:
164     void scan_enter(void);
165
166     Call *scan_leave(void);
167
168     bool scan_call_details(Call *call);
169
170     void scan_arg(Call *call);
171
172     void scan_value(void);
173
174     void scan_sint();
175
176     void scan_uint();
177
178     void scan_float();
179
180     void scan_double();
181
182     void scan_string();
183
184     void scan_enum();
185
186     void scan_bitmask();
187
188     void scan_array(void);
189
190     void scan_blob(void);
191
192     void scan_struct();
193
194     void scan_opaque();
195
196     void skip_string(void);
197
198     void skip_uint(void);
199
200     inline void skip_byte(void);
201 };
202
203
204 } /* namespace Trace */
205
206 #endif /* _TRACE_PARSER_HPP_ */