tgid
[lttv.git] / ltt / branches / poly / ltt / type.h
CommitLineData
9c312311 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
7c6b3cd7 19#ifndef TYPE_H
20#define TYPE_H
975e44c7 21
1b82f325 22
23/* Different types allowed */
24
963b5f2d 25#include <ltt/ltt.h>
26
1b82f325 27
28/* All event types, data types and fields belong to their trace and
975e44c7 29 are released at the same time. */
30
1b82f325 31/* Obtain the name, description, facility, facility relative id, global id,
32 type and root field for an eventtype */
33
3aee1200 34GQuark ltt_eventtype_name(LttEventType *et);
975e44c7 35
45e14832 36gchar *ltt_eventtype_description(LttEventType *et);
975e44c7 37
290dfc8c 38LttFacility *ltt_eventtype_facility(LttEventType *et);
1b82f325 39
33690006 40unsigned ltt_eventtype_relative_id(LttEventType *et);
1b82f325 41
3aee1200 42guint8 ltt_eventtype_id(LttEventType *et);
1b82f325 43
975e44c7 44/* obtain the type name and size. The size is the number of bytes for
45 primitive types (INT, UINT, FLOAT, ENUM), or the size for the unsigned
46 integer length count for sequences. */
47
3aee1200 48GQuark ltt_type_name(LttType *t);
975e44c7 49
2312de30 50GQuark ltt_field_name(LttField *f);
51
290dfc8c 52LttTypeEnum ltt_type_class(LttType *t);
975e44c7 53
963b5f2d 54unsigned ltt_type_size(LttTrace *trace, LttType *t);
975e44c7 55
56
57/* The type of nested elements for arrays and sequences. */
58
290dfc8c 59LttType *ltt_type_element_type(LttType *t);
975e44c7 60
61
62/* The number of elements for arrays. */
63
fcc08e1e 64unsigned ltt_type_element_number(LttType *t);
975e44c7 65
66
a6bf5e74 67/* The number of data members for structures and unions. */
975e44c7 68
2312de30 69guint ltt_type_member_number(LttType *t);
975e44c7 70
71
72/* For enumerations, obtain the symbolic string associated with a value
73 (0 to n - 1 for an enumeration of n elements). */
74
2312de30 75GQuark ltt_enum_string_get(LttType *t, gulong i);
975e44c7 76
77
78/* The fields form a tree representing a depth first search of the
79 corresponding event type directed acyclic graph. Fields for arrays and
80 sequences simply point to one nested field representing the currently
81 selected element among all the (identically typed) elements. For structures,
82 a nested field exists for each data member. Each field stores the
1b82f325 83 platform/trace specific offset values (for efficient access) and
290dfc8c 84 points back to the corresponding LttType for the rest. */
975e44c7 85
2312de30 86//LttField *ltt_field_element(LttField *f);
87
88LttField *ltt_field_member_by_name(LttField *f, GQuark name);
975e44c7 89
2312de30 90LttField *ltt_field_member(LttField *f, guint i);
975e44c7 91
290dfc8c 92LttType *ltt_field_type(LttField *f);
975e44c7 93
a5dcde2f 94int ltt_field_size(LttField * f);
95
2312de30 96guint ltt_eventtype_num_fields(LttEventType *event_type);
97
98LttField *ltt_eventtype_field(LttEventType *event_type, guint i);
99
100LttField *ltt_eventtype_field_by_name(LttEventType *event_type, GQuark name);
101
7c6b3cd7 102#endif // TYPE_H
This page took 0.054143 seconds and 4 git commands to generate.