Add reference counts to state and stats saved attributes. This way, the
[lttv.git] / ltt / branches / poly / ltt / type.h
1 /* This file is part of the Linux Trace Toolkit trace reading library
2 * Copyright (C) 2003-2004 Michel Dagenais
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License Version 2.1 as published by the Free Software Foundation.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 02111-1307, USA.
17 */
18
19 #ifndef TYPE_H
20 #define TYPE_H
21
22
23 /* Different types allowed */
24
25 #include <ltt/ltt.h>
26
27
28 /* All event types, data types and fields belong to their trace and
29 are released at the same time. */
30
31 /* Obtain the name, description, facility, facility relative id, global id,
32 type and root field for an eventtype */
33
34 char *ltt_eventtype_name(LttEventType *et);
35
36 char *ltt_eventtype_description(LttEventType *et);
37
38 LttFacility *ltt_eventtype_facility(LttEventType *et);
39
40 unsigned ltt_eventtype_relative_id(LttEventType *et);
41
42 unsigned ltt_eventtype_id(LttEventType *et);
43
44 LttType *ltt_eventtype_type(LttEventType *et);
45
46 LttField *ltt_eventtype_field(LttEventType *et);
47
48
49 /* obtain the type name and size. The size is the number of bytes for
50 primitive types (INT, UINT, FLOAT, ENUM), or the size for the unsigned
51 integer length count for sequences. */
52
53 char *ltt_type_name(LttType *t);
54
55 LttTypeEnum ltt_type_class(LttType *t);
56
57 unsigned ltt_type_size(LttTrace *trace, LttType *t);
58
59
60 /* The type of nested elements for arrays and sequences. */
61
62 LttType *ltt_type_element_type(LttType *t);
63
64
65 /* The number of elements for arrays. */
66
67 unsigned ltt_type_element_number(LttType *t);
68
69
70 /* The number of data members for structures and unions. */
71
72 unsigned ltt_type_member_number(LttType *t);
73
74
75 /* The type of a data member in a structure. */
76
77 LttType *ltt_type_member_type(LttType *t, unsigned i, char ** name);
78
79
80 /* For enumerations, obtain the symbolic string associated with a value
81 (0 to n - 1 for an enumeration of n elements). */
82
83 char *ltt_enum_string_get(LttType *t, unsigned i);
84
85
86 /* The fields form a tree representing a depth first search of the
87 corresponding event type directed acyclic graph. Fields for arrays and
88 sequences simply point to one nested field representing the currently
89 selected element among all the (identically typed) elements. For structures,
90 a nested field exists for each data member. Each field stores the
91 platform/trace specific offset values (for efficient access) and
92 points back to the corresponding LttType for the rest. */
93
94 LttField *ltt_field_element(LttField *f);
95
96 LttField *ltt_field_member(LttField *f, unsigned i);
97
98 LttType *ltt_field_type(LttField *f);
99
100 int ltt_field_size(LttField * f);
101
102 #endif // TYPE_H
This page took 0.03053 seconds and 4 git commands to generate.