]> git.cworth.org Git - apitrace/blob - trace_parser.hpp
Merge branch 'master' into compression
[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_format.hpp"
34 #include "trace_model.hpp"
35
36
37 namespace Trace {
38
39 class File;
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     unsigned next_call_no;
62
63 public:
64     unsigned long long version;
65
66     Parser();
67
68     ~Parser();
69
70     bool open(const char *filename);
71
72     void close(void);
73
74     Call *parse_call(void);
75
76 protected:
77     void parse_enter(void);
78
79     Call *parse_leave(void);
80
81     bool parse_call_details(Call *call);
82
83     void parse_arg(Call *call);
84
85     Value *parse_value(void);
86
87     Value *parse_sint();
88
89     Value *parse_uint();
90
91     Value *parse_float();
92
93     Value *parse_double();
94
95     Value *parse_string();
96
97     Value *parse_enum();
98
99     Value *parse_bitmask();
100
101     Value *parse_array(void);
102
103     Value *parse_blob(void);
104
105     Value *parse_struct();
106
107     Value *parse_opaque();
108
109     const char * read_string(void);
110
111     unsigned long long read_uint(void);
112
113     inline int read_byte(void);
114 };
115
116
117 } /* namespace Trace */
118
119 #endif /* _TRACE_PARSER_HPP_ */