]> git.cworth.org Git - apitrace/blob - trace_parser.hpp
Merge remote-tracking branch 'origin/master' into on-demand-loading
[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
33 #include "trace_file.hpp"
34 #include "trace_format.hpp"
35 #include "trace_model.hpp"
36
37
38 namespace Trace {
39
40 class Parser
41 {
42 protected:
43     File *file;
44
45     typedef std::list<Call *> CallList;
46     CallList calls;
47
48     typedef std::vector<FunctionSig *> FunctionMap;
49     FunctionMap functions;
50
51     typedef std::vector<StructSig *> StructMap;
52     StructMap structs;
53
54     typedef std::vector<EnumSig *> EnumMap;
55     EnumMap enums;
56
57     typedef std::vector<BitmaskSig *> BitmaskMap;
58     BitmaskMap bitmasks;
59
60     unsigned next_call_no;
61
62 public:
63     unsigned long long version;
64
65     Parser();
66
67     ~Parser();
68
69     bool open(const char *filename);
70
71     void close(void);
72
73     Call *parse_call(void);
74
75     bool supportsOffsets() const
76     {
77         return file-supportsOffsets();
78     }
79
80     File::Offset currentOffset()
81     {
82         return file->currentOffset();
83     }
84
85     void setCurrentOffset(const File::Offset &offset)
86     {
87         file->setCurrentOffset(offset);
88     }
89
90 protected:
91     void parse_enter(void);
92
93     Call *parse_leave(void);
94
95     bool parse_call_details(Call *call);
96
97     void parse_arg(Call *call);
98
99     Value *parse_value(void);
100
101     Value *parse_sint();
102
103     Value *parse_uint();
104
105     Value *parse_float();
106
107     Value *parse_double();
108
109     Value *parse_string();
110
111     Value *parse_enum();
112
113     Value *parse_bitmask();
114
115     Value *parse_array(void);
116
117     Value *parse_blob(void);
118
119     Value *parse_struct();
120
121     Value *parse_opaque();
122
123     const char * read_string(void);
124
125     unsigned long long read_uint(void);
126
127     inline int read_byte(void);
128 };
129
130
131 } /* namespace Trace */
132
133 #endif /* _TRACE_PARSER_HPP_ */