summaryrefslogtreecommitdiffstats
path: root/src/H5Tpublic.h
blob: 291282a644487c39df055116824b3d4c7115c663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/****************************************************************************
 * NCSA HDF                                                                 *
 * Software Development Group                                               *
 * National Center for Supercomputing Applications                          *
 * University of Illinois at Urbana-Champaign                               *
 * 605 E. Springfield, Champaign IL 61820                                   *
 *                                                                          *
 * For conditions of distribution and use, see the accompanying             *
 * hdf/COPYING file.                                                        *
 *                                                                          *
 ****************************************************************************/

/* $Id$ */

/*
 * This file contains public declarations for the H5T module.
 */

#ifndef _H5Tpublic_H
#define _H5Tpublic_H

/* Public headers needed by this file */
#include <H5public.h>
#include <H5Apublic.h>

/* These are the various classes of data types */
typedef enum H5T_class_t {
   H5T_NO_CLASS		=-1,	/*error					*/
   H5T_INTEGER		=0,	/*integer types				*/
   H5T_FLOAT		=1,	/*floating-point types			*/
   H5T_TIME		=2,	/*date and time	types			*/
   H5T_STRING		=3,	/*character string types		*/
   H5T_BITFIELD		=4,	/*bit field types			*/
   H5T_OPAQUE		=5, 	/*opaque types				*/
   H5T_COMPOUND		=6, 	/*compound types			*/
   
   H5T_NCLASSES		=7	/*This must be last			*/
} H5T_class_t;

/* Byte orders */
typedef enum H5T_order_t {
   H5T_ORDER_ERROR	=-1, 	/*error					*/
   H5T_ORDER_LE		=0, 	/*little endian				*/
   H5T_ORDER_BE		=1, 	/*bit endian				*/
   H5T_ORDER_VAX	=2, 	/*VAX mixed endian			*/
   H5T_ORDER_NONE	=3	/*no particular order (strings, bits,..)*/
   /*H5T_ORDER_NONE must be last*/
} H5T_order_t;

/* Types of integer sign schemes */
typedef enum H5T_sign_t {
   H5T_SGN_ERROR	=-1, 	/*error					*/
   H5T_SGN_NONE		=0, 	/*this is an unsigned type		*/
   H5T_SGN_2		=1,  	/*two's complement			*/
   
   H5T_NSGN		=2	/*this must be last!			*/
} H5T_sign_t;

/* Floating-point normalization schemes */
typedef enum H5T_norm_t {
   H5T_NORM_ERROR	=-1, 	/*error					*/
   H5T_NORM_IMPLIED	=0,	/*msb of mantissa isn't stored, always 1*/
   H5T_NORM_MSBSET	=1, 	/*msb of mantissa is always 1		*/
   H5T_NORM_NONE	=2	/*not normalized			*/
   /*H5T_NORM_NONE must be last*/
} H5T_norm_t;

/* Character set to use for text strings */
typedef enum H5T_cset_t {
   H5T_CSET_ERROR	=-1,	/*error					*/
   H5T_CSET_ASCII	=0, 	/*US ASCII				*/

   H5T_NCSET		=1	/*this must be last!			*/
} H5T_cset_t;

/* Type of padding to use in character strings */
typedef enum H5T_str_t {
   H5T_STR_ERROR	=-1, 	/*error					*/
   H5T_STR_NULL		=0, 	/*pad with null term like in C		*/
   H5T_STR_SPACE	=1,  	/*pad with spaces like in Fortran	*/
   
   H5T_NSTR		=2	/*this must be last!			*/
} H5T_str_t;

/* Type of padding to use in other atomic types */
typedef enum H5T_pad_t {
   H5T_PAD_ERROR	=-1, 	/*error					*/
   H5T_PAD_ZERO		=0, 	/*always set to zero			*/
   H5T_PAD_ONE		=1, 	/*always set to one			*/
   H5T_PAD_BACKGROUND	=2, 	/*set to background value		*/
   
   H5T_NPAD		=3	/*THIS MUST BE LAST			*/
} H5T_pad_t;

/* All data type conversion functions are... */
typedef herr_t (*H5T_conv_t)(hid_t, hid_t, size_t, void*, const void*);

#define HOFFSET(S,M)	((const char*)&S.M-(const char*)&S)
#define HPOFFSET(P,M)	((const char*)&(P->M)-(const char*)P)

/* The predefined types */
#define H5T_NATIVE_CHAR		(H5init(), H5T_NATIVE_CHAR_g)
#define H5T_NATIVE_UCHAR	(H5init(), H5T_NATIVE_UCHAR_g)
#define H5T_NATIVE_SHORT	(H5init(), H5T_NATIVE_SHORT_g)
#define H5T_NATIVE_USHORT	(H5init(), H5T_NATIVE_USHORT_g)
#define H5T_NATIVE_INT		(H5init(), H5T_NATIVE_INT_g)
#define H5T_NATIVE_UINT		(H5init(), H5T_NATIVE_UINT_g)
#define H5T_NATIVE_LONG		(H5init(), H5T_NATIVE_LONG_g)
#define H5T_NATIVE_ULONG	(H5init(), H5T_NATIVE_ULONG_g)
#define H5T_NATIVE_LLONG	(H5init(), H5T_NATIVE_LLONG_g)
#define H5T_NATIVE_ULLONG	(H5init(), H5T_NATIVE_ULLONG_g)
#define H5T_NATIVE_HYPER	(H5init(), H5T_NATIVE_HYPER_g)
#define H5T_NATIVE_UHYPER	(H5init(), H5T_NATIVE_UHYPER_g)
#define H5T_NATIVE_INT8		(H5init(), H5T_NATIVE_INT8_g)
#define H5T_NATIVE_UINT8	(H5init(), H5T_NATIVE_UINT8_g)
#define H5T_NATIVE_INT16	(H5init(), H5T_NATIVE_INT16_g)
#define H5T_NATIVE_UINT16	(H5init(), H5T_NATIVE_UINT16_g)
#define H5T_NATIVE_INT32	(H5init(), H5T_NATIVE_INT32_g)
#define H5T_NATIVE_UINT32	(H5init(), H5T_NATIVE_UINT32_g)
#define H5T_NATIVE_INT64	(H5init(), H5T_NATIVE_INT64_g)
#define H5T_NATIVE_UINT64	(H5init(), H5T_NATIVE_UINT64_g)
#define H5T_NATIVE_FLOAT	(H5init(), H5T_NATIVE_FLOAT_g)
#define H5T_NATIVE_DOUBLE	(H5init(), H5T_NATIVE_DOUBLE_g)
#define H5T_NATIVE_TIME		(H5init(), H5T_NATIVE_TIME_g)
#define H5T_NATIVE_STRING	(H5init(), H5T_NATIVE_STRING_g)
#define H5T_NATIVE_BITFIELD	(H5init(), H5T_NATIVE_BITFIELD_g)
#define H5T_NATIVE_OPAQUE	(H5init(), H5T_NATIVE_OPAQUE_g)


#ifdef __cplusplus
extern "C" {
#endif

extern hid_t H5T_NATIVE_CHAR_g;
extern hid_t H5T_NATIVE_UCHAR_g;
extern hid_t H5T_NATIVE_SHORT_g;
extern hid_t H5T_NATIVE_USHORT_g;
extern hid_t H5T_NATIVE_INT_g;
extern hid_t H5T_NATIVE_UINT_g;
extern hid_t H5T_NATIVE_LONG_g;
extern hid_t H5T_NATIVE_INT8_g;
extern hid_t H5T_NATIVE_UINT8_g;
extern hid_t H5T_NATIVE_INT16_g;
extern hid_t H5T_NATIVE_UINT16_g;
extern hid_t H5T_NATIVE_INT32_g;
extern hid_t H5T_NATIVE_UINT32_g;
extern hid_t H5T_NATIVE_INT64_g;
extern hid_t H5T_NATIVE_UINT64_g;
extern hid_t H5T_NATIVE_ULONG_g;
extern hid_t H5T_NATIVE_LLONG_g;
extern hid_t H5T_NATIVE_ULLONG_g;
extern hid_t H5T_NATIVE_HYPER_g;
extern hid_t H5T_NATIVE_UHYPER_g;
extern hid_t H5T_NATIVE_FLOAT_g;
extern hid_t H5T_NATIVE_DOUBLE_g;
extern hid_t H5T_NATIVE_TIME_g;
extern hid_t H5T_NATIVE_STRING_g;
extern hid_t H5T_NATIVE_BITFIELD_g;
extern hid_t H5T_NATIVE_OPAQUE_g;

/* Operations defined on all data types */
hid_t H5Tcreate (H5T_class_t type, size_t size);
hid_t H5Tcopy (hid_t type_id);
herr_t H5Tclose (hid_t type_id);
hbool_t H5Tequal (hid_t type1_id, hid_t type2_id);
herr_t H5Tlock (hid_t type_id);

/* Operations defined on compound data types */
herr_t H5Tinsert (hid_t parent_id, const char *name, off_t offset,
		  hid_t member_id);
herr_t H5Tpack (hid_t type_id);

/* Querying property values */
H5T_class_t H5Tget_class (hid_t type_id);
size_t H5Tget_size (hid_t type_id);
H5T_order_t H5Tget_order (hid_t type_id);
size_t H5Tget_precision (hid_t type_id);
size_t H5Tget_offset (hid_t type_id);
herr_t H5Tget_pad (hid_t type_id, H5T_pad_t *lsb/*out*/,
		   H5T_pad_t *msb/*out*/);
H5T_sign_t H5Tget_sign (hid_t type_id);
herr_t H5Tget_fields (hid_t type_id, size_t *spos/*out*/,
		      size_t *epos/*out*/, size_t *esize/*out*/,
		      size_t *mpos/*out*/, size_t *msize/*out*/);
size_t H5Tget_ebias (hid_t type_id);
H5T_norm_t H5Tget_norm (hid_t type_id);
H5T_pad_t H5Tget_inpad (hid_t type_id);
H5T_str_t H5Tget_strpad (hid_t type_id);
intn H5Tget_nmembers (hid_t type_id);
char *H5Tget_member_name (hid_t type_id, int membno);
size_t H5Tget_member_offset (hid_t type_id, int membno);
int H5Tget_member_dims (hid_t type_id, int membno,
			int dims[]/*out*/, int perm[]/*out*/);
hid_t H5Tget_member_type (hid_t type_id, int membno);
H5T_cset_t H5Tget_cset (hid_t type_id);

/* Setting property values */
herr_t H5Tset_size (hid_t type_id, size_t size);
herr_t H5Tset_order (hid_t type_id, H5T_order_t order);
herr_t H5Tset_precision (hid_t type_id, size_t prec);
herr_t H5Tset_offset (hid_t type_id, size_t offset);
herr_t H5Tset_pad (hid_t type_id, H5T_pad_t lsb, H5T_pad_t msb);
herr_t H5Tset_sign (hid_t type_id, H5T_sign_t sign);
herr_t H5Tset_fields (hid_t type_id, size_t spos, size_t epos, size_t esize,
		      size_t mpos, size_t msize);
herr_t H5Tset_ebias (hid_t type_id, size_t ebias);
herr_t H5Tset_norm (hid_t type_id, H5T_norm_t norm);
herr_t H5Tset_inpad (hid_t type_id, H5T_pad_t pad);
herr_t H5Tset_cset (hid_t type_id, H5T_cset_t cset);
herr_t H5Tset_strpad (hid_t type_id, H5T_str_t strpad);

/* Type conversion database */
herr_t H5Tregister_hard (hid_t src_id, hid_t dst_id, H5T_conv_t func);
herr_t H5Tregister_soft (H5T_class_t src, H5T_class_t dst, H5T_conv_t func);
herr_t H5Tunregister (H5T_conv_t func);
H5T_conv_t H5Tfind (hid_t src_id, hid_t dst_id);

#ifdef __cplusplus
}
#endif

#endif