]> git.cworth.org Git - apitrace/blob - trace_write.hpp
More efficient enum representation.
[apitrace] / trace_write.hpp
1 /**************************************************************************
2  *
3  * Copyright 2007-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_WRITE_HPP_
27 #define _TRACE_WRITE_HPP_
28
29 namespace Trace {
30
31     typedef unsigned Id;
32
33     struct FunctionSig {
34         Id id;
35         const char *name;
36         unsigned num_args;
37         const char **args;
38     };
39
40     struct EnumSig {
41         Id id;
42         const char *name;
43         signed long long value;
44     };
45
46     struct BitmaskVal {
47         const char *name;
48         unsigned long long value;
49     };
50
51     struct BitmaskSig {
52         Id id;
53         unsigned count;
54         const BitmaskVal *values;
55     };
56
57     void Open(void);
58     void Close(void);
59     
60     unsigned BeginEnter(const FunctionSig &function);
61     void EndEnter(void);
62     
63     void BeginLeave(unsigned call);
64     void EndLeave(void);
65     
66     void BeginArg(unsigned index);
67     inline void EndArg(void) {}
68
69     void BeginReturn(void);
70     inline void EndReturn(void) {}
71
72     void BeginArray(size_t length);
73     inline void EndArray(void) {}
74
75     inline void BeginElement(void) {}
76     inline void EndElement(void) {}
77
78     void BeginStruct(size_t length);
79     inline void EndStruct(void) {}
80
81     void BeginMember(const char *name);
82     inline void EndMember(void) {}
83
84     void LiteralBool(bool value);
85     void LiteralSInt(signed long long value);
86     void LiteralUInt(unsigned long long value);
87     void LiteralFloat(float value);
88     void LiteralFloat(double value);
89     void LiteralString(const char *str);
90     void LiteralString(const char *str, size_t size);
91     void LiteralWString(const wchar_t *str);
92     void LiteralBlob(const void *data, size_t size);
93     void LiteralEnum(const EnumSig *sig);
94     void LiteralBitmask(const BitmaskSig &bitmask, unsigned long long value);
95     void LiteralNull(void);
96     void LiteralOpaque(const void *ptr);
97
98     void Abort(void);
99 }
100
101 #endif /* _TRACE_WRITE_HPP_ */