summaryrefslogtreecommitdiffstats
path: root/doc/html/Tutor/examples/java/CreateAttribute.java
blob: c9264221074d9e0f9da62f2d45a1b8103b0f7f7c (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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/******************************************************************
 * CreateAttribute.java (for HDF5 tutorial lesson 7)
 *
 *   -- Creating and Writing a dataset attribute
 *      (a java conversion from h5_crtatt.c)
 *
 ******************************************************************/

import ncsa.hdf.hdf5lib.*;
import ncsa.hdf.hdf5lib.exceptions.*;

public class CreateAttribute
{
   public static void main(String []argv) 
   {
      final String FILE = "dset.h5";
      int file_id = -1;       // file identifier 
      int dataset_id = -1;    // dataset identifier
      int attribute_id = -1;
      int dataspace_id = -1;  // dataspace identifier   
      long[] dims = new long[1];
      int[] attr_data = new int[2];
      int status = -1;
       
      // Initialize the attribute data.
      attr_data[0] = 100;
      attr_data[1] = 200;

      // Open an existing file.
      file_id = H5Fopen_wrap (FILE, HDF5Constants.H5F_ACC_RDWR, 
			      HDF5Constants.H5P_DEFAULT);
       
      // Open an existing dataset.
      dataset_id = H5Dopen_wrap (file_id, "/dset");

      // Create the data space for the attribute.
      dims[0] = 2;
      dataspace_id = H5Screate_simple_wrap (1, dims, null);

      // Create a dataset attribute. 
      attribute_id = H5Acreate_wrap 
	  (dataset_id, "attr", 
	   H5.J2C (HDF5CDataTypes.JH5T_STD_I32BE), 
	   dataspace_id, HDF5Constants.H5P_DEFAULT);
        
      // Write the attribute data. 
      status = H5Awrite_wrap 
	  (attribute_id,    
	   H5.J2C (HDF5CDataTypes.JH5T_NATIVE_INT), 
	   attr_data);
      
      // Close the attribute. 
      status = H5Aclose_wrap (attribute_id);
      
      // Close the dataspace. 
      status = H5Sclose_wrap (dataspace_id);
      
      // Close to the dataset.
      status = H5Dclose_wrap (dataset_id);
   
      // Close the file. 
      status = H5Fclose_wrap (file_id); 
   }


   // Help function for opening an existing file
   public static int H5Fopen_wrap (String name, int flags, int access_id)
   {
      int file_id = -1;    // file identifier 
      try 
      {
	 // Create a new file using default file properties.
	 file_id = H5.H5Fopen (name, flags, access_id);
      }
      catch (HDF5Exception hdf5e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Fopen_wrap() with HDF5Exception: "
	      + hdf5e.getMessage());
      }
      catch (Exception e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Fopen_wrap() with other Exception: " 
	      + e.getMessage());
      }
      return file_id;
   }


   // Help function for opening an existing dataset
   public static int H5Dopen_wrap (int loc_id, String name)
   {
      int dataset_id = -1;  // dataset identifier   
   
      try 
      {
	 // Opening an existing dataset
	 dataset_id = H5.H5Dopen (loc_id, name);
      }
      catch (HDF5Exception hdf5e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Dopen_wrap() with HDF5Exception: "
	      + hdf5e.getMessage());
      }
      catch (Exception e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Dopen_wrap() with other Exception: "
	      + e.getMessage());
      }
      return dataset_id;
   }
    

   // Create the data space for the attribute.
   public static int H5Screate_simple_wrap (int rank, long dims[],
					    long maxdims[])
   {
      int dataspace_id = -1;  // dataspace identifier   
        
      try 
      {
	 // Create the data space for the dataset.
	 dataspace_id = H5.H5Screate_simple (rank, dims, maxdims);
      }
      catch (HDF5Exception hdf5e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Screate_simple_wrap() with HDF5Exception: "
	      + hdf5e.getMessage());
	 
      }
      catch (Exception e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Screate_simple_wrap() with other Exception: "
			     + e.getMessage());
      }
      return dataspace_id;   
   }


   // Help function for creating a dataset attribute. 
   public static int H5Acreate_wrap (int loc_id, String name, int type_id, 
				     int space_id, int create_plist)
   {
      int attribute_id = -1;  // attribute identifier   
   
      try 
      {
	 // Create the dataset 
	 attribute_id = H5.H5Acreate (loc_id, name, type_id, space_id, 
				      create_plist);
      }
      catch (HDF5Exception hdf5e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Acreate_wrap() with HDF5Exception: "
	      + hdf5e.getMessage());
       }
      catch (Exception e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Acreate_wrap() with other Exception: "
	      + e.getMessage());
      }
      return attribute_id;
   }


   // Help function for writing the attribute data.
   public static int H5Awrite_wrap (int attr_id, int mem_type_id,
				    Object buf)
   {
      int status = -1;
      
      try 
      {
	 // Write the attribute data.
	 status = H5.H5Awrite (attr_id, mem_type_id, buf);
      }
      catch (HDF5Exception hdf5e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Awrite_wrap() with HDF5Exception: " 
	      + hdf5e.getMessage());
      }
      catch (Exception e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Awrite_wrap() with other exception: " 
	      + e.getMessage());
      }
      return status;
   }
 

   // Help function for closing the attribute
   public static int H5Aclose_wrap (int attribute_id)
   {
      int status = -1;
      
      try 
      {
	 // Close the dataset
	 status = H5.H5Aclose (attribute_id);
      }
      catch (HDF5Exception hdf5e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Aclose_wrap() with HDF5Exception: " 
	      + hdf5e.getMessage());
      }
      catch (Exception e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Aclose_wrap() with other exception: " 
	      + e.getMessage());
      }
      return status;
   }
 

   // Help function for closing the dataset
   public static int H5Dclose_wrap (int dataset_id)
   {
      int status = -1;
      
      try 
      {
	 // Close the dataset
	 status = H5.H5Dclose (dataset_id);
      }
      catch (HDF5Exception hdf5e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Dclose_wrap() with HDF5Exception: " 
	      + hdf5e.getMessage());
      }
      catch (Exception e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Dclose_wrap() with other exception: " 
	      + e.getMessage());
      }
      return status;
   }
 

   // Help function for closing the dataspace
   public static int H5Sclose_wrap (int dataspace_id)
   {
      int status = -1;
      
      try 
      {
	 // Terminate access to the data space. 
	 status = H5.H5Sclose (dataspace_id);
      }
      catch (HDF5Exception hdf5e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Sclose_wrap() with HDF5Exception: " 
	      + hdf5e.getMessage());
      }
      catch (Exception e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Sclose_wrap() with other exception: " 
	      + e.getMessage());
      }
      return status;
   }
 

   // Help function for terminating access to the file. 
   public static int H5Fclose_wrap (int file_id)
   {
      int status = -1;
      
      try 
      {
	 // Terminate access to the file. 
	 status = H5.H5Fclose (file_id);
      }
      catch (HDF5Exception hdf5e)
      { 
	 System.out.println 
	     ("CreateAttribute.H5Fclose_wrap() with HDF5Exception: " 
	      + hdf5e.getMessage());
      }
      catch (Exception e)
      {
	 System.out.println 
	     ("CreateAttribute.H5Fclose_wrap() with other exception: " 
	      + e.getMessage());
      }
      return status;
   }  
}