summaryrefslogtreecommitdiffstats
path: root/src/H5C.c
blob: 05686ddac2df13c3c1b5b97c1e33da581b94894b (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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
/****************************************************************************
* 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.                                                        *
*                                                                          *
****************************************************************************/

#ifdef RCSID
static char RcsId[] = "@(#)$Revision$";
#endif

/* $Id$ */

#include <stdarg.h>

/* Private header files */
#include <H5private.h>      	/* Generic Functions 			*/
#include <H5Aprivate.h>		/* Atoms				*/
#include <H5Bprivate.h>	    	/* B-tree subclass names 		*/
#include <H5Cprivate.h>     	/* Template information 		*/
#include <H5Dprivate.h>		/* Datasets				*/
#include <H5Eprivate.h>		/* Error handling			*/
#include <H5MMprivate.h>	/* Memory management			*/

#define PABLO_MASK	H5C_mask

/* Is the interface initialized? */
static hbool_t interface_initialize_g = FALSE;
#define INTERFACE_INIT H5C_init_interface
static herr_t H5C_init_interface(void);

/* PRIVATE PROTOTYPES */
static void H5C_term_interface (void);

/*--------------------------------------------------------------------------
NAME
   H5C_init_interface -- Initialize interface-specific information
USAGE
    herr_t H5C_init_interface()
   
RETURNS
   SUCCEED/FAIL
DESCRIPTION
    Initializes any interface-specific data or routines.

--------------------------------------------------------------------------*/
static herr_t
H5C_init_interface (void)
{
   herr_t 	ret_value = SUCCEED;
   intn		i;
   herr_t	status;
   
   FUNC_ENTER (H5C_init_interface, FAIL);
   
   assert (H5C_NCLASSES <= H5_TEMPLATE_MAX-H5_TEMPLATE_0);

   /*
    * Initialize the mappings between template classes and atom groups. We
    * keep the two separate because template classes are publicly visible but
    * atom groups aren't.
    */
   for (i=0; i<H5C_NCLASSES; i++) {
      status = H5Ainit_group (H5_TEMPLATE_0+i, H5A_TEMPID_HASHSIZE, 0, NULL);
      if (status<0) ret_value = FAIL;
   }
   if (ret_value<0) {
      HRETURN_ERROR (H5E_ATOM, H5E_CANTINIT, FAIL,
		     "unable to initialize atom group");
   }

   /*
    * Register cleanup function.
    */
   if (H5_add_exit (H5C_term_interface)<0) {
      HRETURN_ERROR (H5E_INTERNAL, H5E_CANTINIT, FAIL,
		     "unable to install atexit function");
   }

   FUNC_LEAVE(ret_value);
}

/*--------------------------------------------------------------------------
 NAME
    H5C_term_interface
 PURPOSE
    Terminate various H5C objects
 USAGE
    void H5C_term_interface()
 RETURNS
    SUCCEED/FAIL
 DESCRIPTION
    Release the atom group and any other resources allocated.
 GLOBAL VARIABLES
 COMMENTS, BUGS, ASSUMPTIONS
     Can't report errors...
 EXAMPLES
 REVISION LOG
--------------------------------------------------------------------------*/
static void
H5C_term_interface (void)
{
   intn		i;

   for (i=0; i<H5C_NCLASSES; i++) {
      H5Adestroy_group (H5_TEMPLATE_0+i);
   }
}

/*--------------------------------------------------------------------------
 NAME
    H5Ccreate
 PURPOSE
    Returns a copy of the default template for some class of templates.
 USAGE
    herr_t H5Ccreate (type)
        H5C_class_t type;	IN: Template class whose default is desired.
 RETURNS
    Template ID or FAIL
 
 ERRORS
    ARGS      BADVALUE      Unknown template class. 
    ATOM      CANTINIT      Can't register template. 
    INTERNAL  UNSUPPORTED   Not implemented yet. 

 DESCRIPTION
    Returns a copy of the default template for some class of templates.
--------------------------------------------------------------------------*/
hid_t
H5Ccreate (H5C_class_t type)
{
   hid_t	ret_value = FAIL;
   void		*tmpl = NULL;

   FUNC_ENTER (H5Ccreate, FAIL);

   /* Allocate a new template and initialize it with default values */
   switch (type) {
   case H5C_FILE_CREATE:
      tmpl = H5MM_xmalloc (sizeof(H5F_create_t));
      memcpy (tmpl, &H5F_create_dflt, sizeof(H5F_create_t));
      break;

   case H5C_FILE_ACCESS:
      HRETURN_ERROR (H5E_INTERNAL, H5E_UNSUPPORTED, FAIL,
		     "not implemented yet");

   case H5C_DATASET_CREATE:
      tmpl = H5MM_xmalloc (sizeof(H5D_create_t));
      memcpy (tmpl, &H5D_create_dflt, sizeof(H5D_create_t));
      break;

   case H5C_DATASET_XFER:
      tmpl = H5MM_xmalloc (sizeof(H5D_xfer_t));
      memcpy (tmpl, &H5D_xfer_dflt, sizeof(H5D_xfer_t));
      break;
      
   default:
      HRETURN_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL,
		     "unknown template class");
   }

   /* Atomize the new template */
   if ((ret_value = H5C_create (type, tmpl))<0) {
      HRETURN_ERROR (H5E_ATOM, H5E_CANTINIT, FAIL,
		     "can't register template");
   }

   FUNC_LEAVE (ret_value);
}


/*-------------------------------------------------------------------------
 * Function:	H5C_create
 *
 * Purpose:	Given a pointer to some template struct, atomize the template
 *		and return its ID. The template memory is not copied, so the
 *		caller should not free it; it will be freed by H5C_release().
 *
 * Return:	Success:	A new template ID.
 *
 *		Failure:	FAIL
 *
 * Programmer:	Robb Matzke
 *              Wednesday, December  3, 1997
 *
 * Modifications:
 *
 *-------------------------------------------------------------------------
 */
hid_t
H5C_create (H5C_class_t type, void *tmpl)
{
   hid_t	ret_value = FAIL;
   
   FUNC_ENTER (H5C_create, FAIL);

   /* check args */
   assert (type>=0 && type<H5C_NCLASSES);
   assert (tmpl);

   /* Atomize the new template */
   if ((ret_value = H5Aregister_atom (H5_TEMPLATE_0+type, tmpl))<0) {
      HRETURN_ERROR (H5E_ATOM, H5E_CANTINIT, FAIL,
		     "can't register template");
   }

   FUNC_LEAVE (ret_value);
}
   
/*--------------------------------------------------------------------------
 NAME
    H5Cclose
 PURPOSE
    Release access to a template object.
 USAGE
    herr_t H5Cclose(oid)
        hid_t oid;       IN: Template object to release access to
 RETURNS
    SUCCEED/FAIL
 DESCRIPTION
        This function releases access to a template object
--------------------------------------------------------------------------*/
herr_t
H5Cclose (hid_t template)
{
   void 	*tmpl=NULL;

   FUNC_ENTER (H5Cclose, FAIL);

   /* Chuck the object! :-) */
   if (NULL==(tmpl=H5Aremove_atom (template))) {
      HRETURN_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "unable to remove atom");
   }
   H5MM_xfree (tmpl);

   FUNC_LEAVE (SUCCEED);
}



/*-------------------------------------------------------------------------
 * Function:	H5Cget_class
 *
 * Purpose:	Returns the class identifier for a template.
 *
 * Return:	Success:	A template class
 *
 *		Failure:	H5C_NO_CLASS (-1)
 *
 * Programmer:	Robb Matzke
 *              Wednesday, December  3, 1997
 *
 * Modifications:
 *
 *-------------------------------------------------------------------------
 */
H5C_class_t
H5Cget_class (hid_t template)
{
   group_t	group;
   H5C_class_t	ret_value = H5C_NO_CLASS;
   
   FUNC_ENTER (H5Cget_class, H5C_NO_CLASS);
   
   if ((group = H5Aatom_group (template))<0 ||
#ifndef NDEBUG
       group>=H5_TEMPLATE_MAX ||
#endif
       group<H5_TEMPLATE_0) {
      HRETURN_ERROR (H5E_ATOM, H5E_BADATOM, H5C_NO_CLASS, "not a template");
   }

   ret_value = group - H5_TEMPLATE_0;
   FUNC_LEAVE (ret_value);
}


/*-------------------------------------------------------------------------
 * Function:	H5Cget_prop
 *
 * Purpose:	Retrieves a property value from a template.  The value is
 *		returned through an argument, BUF, of the appropriate pointer
 *		type.
 *
 *		Properties of H5C_FILE_CREATE templates and the type for the
 *		return argument(s):
 *
 *	 		H5F_USERBLOCK_SIZE	(size_t*)
 *			Size of the initial part of the file that is not used
 *			by HDF5 and may contain user-defined data.
 *
 *			H5F_SIZEOF_ADDR		(size_t*)
 *			Size in bytes of addresses stored in the file.  This
 *			is similar in nature to the `off_t' type in memory.
 *
 *			H5F_SIZEOF_SIZE		(size_t*)
 *			Size in bytes of fields that contains object sizes in
 *			the file.  This is similar in nature to the `size_t'
 *			type in memory.
 *
 *			H5F_SYM_LEAF_K		(int*)
 *			One half of the number of symbols that can be stored
 *			in a symbol table node.  A symbol table node is the
 *			leaf of a symbol table tree which is used to store a
 *			group.  When symbols are insterted randomly into a
 *			group, the group's symbol table nodes are 75% full on
 *			average.  That is, they contain 1.5 times the number
 *			of symbols specified by this property.
 *
 *			H5F_SYM_INTERN_K	(int*)
 *			One half the rank of a tree that stores a symbol
 *			table.  Internal nodes of the symbol table are on
 *			average 75% full.  That is, the average rank of the
 *			tree is 1.5 times the value specified for this
 *			property.
 *
 *			H5F_ISTORE_K		(int*)
 *			One half the rank of a tree that stores chunked raw
 *			data. On average, such a tree will be 75% full, or
 *			have an average rank of 1.5 times the value specified
 *			for this property.
 *
 *			H5F_BOOTBLOCK_VER	(int*)
 *			The version number of the file boot block.  This is a
 *			read-only property.
 *
 *			H5F_SMALLOBJECT_VER	(int*)
 *			The version number of the global heap.  This is a
 *			read-only property.
 *
 *			H5F_FREESPACE_VER	(int*)
 *			The version number of the free list.  This is a
 *			read-only property.
 *
 *			H5F_OBJECTDIR_VER	(int*)
 *			The version number of the root symbol table entry.
 *			This is a read-only property.
 *
 *			H5F_SHAREDHEADER_VER	(int*)
 *			The version number for shared object header messages.
 *			This is a read-only property.
 *
 *		Properties of H5C_FILE_ACCESS templates and the type for the
 *		return argument(s):
 *
 * 			** None defined yet **
 *
 *		Properties of H5C_DATASET_CREATE templates and the type for
 *		the return argument(s):
 *
 * 			H5D_LAYOUT		(H5D_layout_t*)
 *			The layout of raw data on disk.
 *
 * 			H5D_CHUNK_NDIMS		(int*)
 *			The number of dimensions per chunk.  This is actually
 *			one less than the real number of dimensions since the
 *			real chunk dimensions also include the data type
 *			itself.  The number of dimensions returned here
 *			should be the same as the number of dimensions
 *			returned by H5Pget_ndims().
 *
 * 			H5D_CHUNK_SIZE		(size_t[])
 *			An array that specifies the chunk size in each
 *			dimension. The actual dimension list omits the final
 *			dimension corresponding to the data type and returns
 *			only the dimensions corresponding to the data space.
 *			The array should be large enough to hold at least the
 *			number of dimension sizes returned by the
 *			H5D_CHUNK_NDIMS property.
 *
 * 			H5D_COMPRESS		(H5D_compress_t*)
 *			The raw data compression algorithm.
 *
 * 			H5D_PRE_OFFSET		(double*)
 *			The value which is added to each data point before
 *			compression or subtracted from each data point after
 *			uncompression.
 *
 *			H5D_PRE_SCALE		(double*)
 *			The value by which each data point is multiplied
 *			before compression or divided after uncompression.
 *
 *		Properties of H5C_DATASET_XFER templates and the type for
 *		the return argument(s):
 * 			
 * 			** None defined yet **
 *
 * Return:	Success:	SUCCEED
 *
 *		Failure:	FAIL
 *
 * Errors:
 *		ARGS      BADRANGE      Unknown property for dataset create
 *		                        template. 
 *		ARGS      BADRANGE      Unknown property for dataset transfer
 *		                        template. 
 *		ARGS      BADRANGE      Unknown property for file access
 *		                        template. 
 *		ARGS      BADRANGE      Unknown property for file create
 *		                        template. 
 *		ARGS      BADRANGE      Unknown template class. 
 *		ARGS      BADTYPE       Not a template. 
 *		INTERNAL  UNSUPPORTED   Not implemented yet. 
 *		TEMPLATE  UNINITIALIZED Chunk dimensionality is not initialized
 *		TEMPLATE  UNINITIALIZED Chunk size is not initialized. 
 *
 * Programmer:	Robb Matzke
 *              Thursday, December 11, 1997
 *
 * Modifications:
 *
 *-------------------------------------------------------------------------
 */
herr_t
H5Cget_prop (hid_t template, H5C_prop_t prop, void *buf/*out*/)
{
   const void		*tmpl = NULL;
   const H5F_create_t	*file_create = NULL;
   const H5D_create_t	*dset_create = NULL;
   H5C_class_t		type;
   intn			i;
   
   FUNC_ENTER (H5Cget_prop, FAIL);
   H5ECLEAR;

   
   /* check args */
   if ((type=H5Cget_class (template))<0 ||
       NULL==(tmpl=H5Aatom_object (template))) {
      HRETURN_ERROR (H5E_ARGS, H5E_BADTYPE, FAIL, "not a template");
   }

   /* Handle each class of template */
   switch (type) {
   case H5C_FILE_CREATE:
      file_create = (const H5F_create_t *)tmpl;
      
      switch (prop) {
      case H5F_SIZEOF_USERBLOCK:
	 *(size_t *)buf = file_create->userblock_size;
	 break;

      case H5F_SIZEOF_ADDR:
	 *(size_t *)buf = file_create->sizeof_addr;
	 break;

      case H5F_SIZEOF_SIZE:
	 *(size_t *)buf = file_create->sizeof_size;
	 break;

      case H5F_SYM_LEAF_K:
	 *(int *)buf=file_create->sym_leaf_k;
	 break;

      case H5F_SYM_INTERN_K:
	 *(int *)buf = file_create->btree_k[H5B_SNODE_ID];
	 break;

      case H5F_ISTORE_K:
	 *(int *)buf = file_create->btree_k[H5B_ISTORE_ID];
	 break;

      case H5F_BOOTBLOCK_VER:
	 *(int *)buf=file_create->bootblock_ver;
	 break;

      case H5F_SMALLOBJECT_VER:
	 *(int *)buf=file_create->smallobject_ver;
	 break;

      case H5F_FREESPACE_VER:
	 *(int *)buf=file_create->freespace_ver;
	 break;

      case H5F_OBJECTDIR_VER:
	 *(int *)buf=file_create->objectdir_ver;
	 break;

      case H5F_SHAREDHEADER_VER:
	 *(int *)buf=file_create->sharedheader_ver;
	 break;

      default:
	 HRETURN_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
			"unknown property for file create template");
      }
      break;

   case H5C_FILE_ACCESS:
      HRETURN_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
		     "unknown property for file access template");
       
   case H5C_DATASET_CREATE:
      dset_create = (const H5D_create_t *)tmpl;
      switch (prop) {
      case H5D_LAYOUT:
	 *(H5D_layout_t*)buf = dset_create->layout;
	 break;

      case H5D_CHUNK_NDIMS:
	 if (H5D_CHUNKED==dset_create->layout) {
	    *(int*)buf = dset_create->chunk_ndims; 
	 } else {
	    HRETURN_ERROR (H5E_TEMPLATE, H5E_UNINITIALIZED, FAIL,
			   "chunk dimensionality is not initialized");
	 }
	 break;

      case H5D_CHUNK_SIZE:
	 if (H5D_CHUNKED==dset_create->layout) {
	    for (i=0; i<dset_create->chunk_ndims; i++) {
	       ((size_t*)buf)[i] = dset_create->chunk_size[i];
	    }
	 } else {
	    HRETURN_ERROR (H5E_TEMPLATE, H5E_UNINITIALIZED, FAIL,
			   "chunk size is not initialized");
	 }
	 break;

      case H5D_COMPRESS:
      case H5D_PRE_OFFSET:
      case H5D_PRE_SCALE:
	 HRETURN_ERROR (H5E_INTERNAL, H5E_UNSUPPORTED, FAIL,
			"not implemented yet");

      default:
	 HRETURN_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
			"unknown property for dataset create template");
      }
      break;
       
   case H5C_DATASET_XFER:
      HRETURN_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
		     "unknown property for dataset transfer template");

   default:
      HRETURN_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
		     "unknown template class");
   }
   FUNC_LEAVE (SUCCEED);
}


/*-------------------------------------------------------------------------
 * Function:	H5Cset_prop
 *
 * Purpose:	Sets a property, PROP, to a specified value in a TEMPLATE.
 *		The value data type depends on the property being set and is
 *		documented in H5Cget_prop().  The data type does not include
 *		the pointer (that is, property values are passed by value,
 *		not reference).
 *
 * Note:	Not all properties that can be queried with H5Cget_prop() can
 *		be set to a value with H5Cset_prop().  Such properties are
 *		documented as read-only in H5Cget_prop().
 *
 * Return:	Success:	SUCCEED
 *
 *		Failure:	FAIL
 *
 * Programmer:	Robb Matzke
 *              Thursday, December 11, 1997
 *
 * Modifications:
 *
 *-------------------------------------------------------------------------
 */
herr_t
H5Cset_prop (hid_t template, H5C_prop_t prop, ...)
{
   void			*tmpl = NULL;
   H5F_create_t		*file_create = NULL;
   H5D_create_t		*dset_create = NULL;
   H5C_class_t		type;
   H5D_layout_t		layout;
   size_t		size, *dims = NULL;
   intn			i, n;
   va_list		ap;
   herr_t		ret_value = FAIL;

   FUNC_ENTER (H5Cset_prop, FAIL);
   H5ECLEAR;

   va_start (ap, prop);
   
   if ((type=H5Cget_class (template))<0 ||
       NULL==(tmpl=H5Aatom_object (template))) {
      HGOTO_ERROR (H5E_ARGS, H5E_BADTYPE, FAIL, "not a template");
   }

   /* Handle each class of template */
   switch (type) {
   case H5C_FILE_CREATE:
      file_create = (H5F_create_t *)tmpl;
      
      switch (prop) {
      case H5F_SIZEOF_USERBLOCK:
	 size = va_arg (ap, size_t);
	 for (i=8; i<8*sizeof(int); i++) {
	    uintn p2 = 8==i ? 0 :1<<i;
	    if (size==p2) break;
	 }
	 if (i>=8*sizeof(int)) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL,
			 "userblock size is not valid");
	 }
	 file_create->userblock_size = size;
	 break;

      case H5F_SIZEOF_ADDR:
	 size = va_arg (ap, size_t);
	 if (size!=2 && size!=4 && size!=8 && size!=16) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL,
			 "file haddr_t size is not valid");
	 }
	 file_create->sizeof_addr = size;
	 break;

      case H5F_SIZEOF_SIZE:
	 size = va_arg (ap, size_t);
	 if (size!=2 && size!=4 && size!=8 && size!=16) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL,
			 "file size_t size is not valid");
	 }
	 file_create->sizeof_size = size;
	 break;

      case H5F_SYM_LEAF_K:
	 n = va_arg (ap, int);
	 if (n<2) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
			 "symbol leaf node 1/2 rank is not valid");
	 }
	 file_create->sym_leaf_k = n;
	 break;

      case H5F_SYM_INTERN_K:
	 n = va_arg (ap, int);
	 if (n<2) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
			 "symbol internal node 1/2 rank is not valid");
	 }
	 file_create->btree_k[H5B_SNODE_ID] = n;
	 break;

      case H5F_ISTORE_K:
	 n = va_arg (ap, int);
	 if (n<2) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
			 "indexed storage internal node 1/2 rank not valid");
	 }
	 file_create->btree_k[H5B_ISTORE_ID] = n;
	 break;
	    
      case H5F_BOOTBLOCK_VER:
      case H5F_SMALLOBJECT_VER:
      case H5F_FREESPACE_VER:
      case H5F_OBJECTDIR_VER:
      case H5F_SHAREDHEADER_VER:
	 HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
		      "this is a read-only property");

      default:
	 HGOTO_ERROR(H5E_ARGS, H5E_BADRANGE, FAIL,
		     "unknown file creation property");
      }
      break;

   case H5C_FILE_ACCESS:
      HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
		   "unknown property for file access template");
       
   case H5C_DATASET_CREATE:
      dset_create = (H5D_create_t *)tmpl;
      
      switch (prop) {
      case H5D_LAYOUT:
	 layout = va_arg (ap, H5D_layout_t);
	 if (layout<0 || layout>=H5D_NLAYOUTS) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
			 "raw data layout method is not valid");
	 }
	 dset_create->layout = layout;
	 break;
	 
      case H5D_CHUNK_NDIMS:
	 n = va_arg (ap, int);
	 if (H5D_CHUNKED!=dset_create->layout) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADTYPE, FAIL,
			 "not a chunked layout template");
	 }
	 if (n<=0 || n>NELMTS (dset_create->chunk_size)) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL,
			 "invalid number of dimensions");
	 }
	 dset_create->chunk_ndims = n;
	 for (i=0; i<n; i++) dset_create->chunk_size[i] = 1;
	 break;

      case H5D_CHUNK_SIZE:
	 dims = va_arg (ap, size_t*);
	 if (H5D_CHUNKED!=dset_create->layout) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADTYPE, FAIL,
			 "not a chunked layout template");
	 }
	 if (!dims) {
	    HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "no dims");
	 }
	 for (i=0; i<dset_create->chunk_ndims; i++) {
	    if (dims[i]<=0) {
	       HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL,
			    "invalid dimension size");
	    }
	 }
	 for (i=0; i<dset_create->chunk_ndims; i++) {
	    dset_create->chunk_size[i] = dims[i];
	 }
	 break;

      case H5D_COMPRESS:
      case H5D_PRE_OFFSET:
      case H5D_PRE_SCALE:
	 HGOTO_ERROR (H5E_INTERNAL, H5E_UNSUPPORTED, FAIL,
		      "not implemented yet");

      default:
	 HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
		      "unknown property for dataset create template");
      }
      break;
       
   case H5C_DATASET_XFER:
      HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
		   "unknown property for dataset transfer template");

   default:
      HGOTO_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
		   "unknown template class");
   }

   ret_value = SUCCEED;

 done:
   va_end (ap);
   FUNC_LEAVE (ret_value);
}

/*--------------------------------------------------------------------------
 NAME
    H5Ccopy
 PURPOSE
    Copy a template
 USAGE
    hid_t H5C_copy(tid)
        hid_t tid;        IN: Template object to copy
 RETURNS
    Returns template ID (atom) on success, FAIL on failure

 ERRORS
    ARGS      BADRANGE      Unknown template class. 
    ATOM      BADATOM       Can't unatomize template. 
    ATOM      CANTREGISTER  Register the atom for the new template. 
    INTERNAL  UNSUPPORTED   Dataset transfer properties are not implemented
                            yet. 
    INTERNAL  UNSUPPORTED   File access properties are not implemented yet. 

 DESCRIPTION
    This function creates a new copy of a template with all the same parameter
    settings.
--------------------------------------------------------------------------*/
hid_t
H5Ccopy (hid_t template)
{
   const void	*tmpl = NULL;
   void		*new_tmpl = NULL;
   H5C_class_t	type;
   size_t	size;
   hid_t	ret_value = FAIL;
   group_t	group;

   FUNC_ENTER (H5Ccopy, FAIL);
   H5ECLEAR;

   /* check args */
   if (NULL==(tmpl=H5Aatom_object (template)) ||
       (type=H5Cget_class (template))<0 ||
       (group=H5Aatom_group (template))<0) {
      HRETURN_ERROR (H5E_ATOM, H5E_BADATOM, FAIL,
		     "can't unatomize template");
   }

   /* How big is the template */
   switch (type) {
   case H5C_FILE_CREATE:
      size = sizeof(H5F_create_t);
      break;

   case H5C_FILE_ACCESS:
      HRETURN_ERROR (H5E_INTERNAL, H5E_UNSUPPORTED, FAIL,
		     "file access properties are not implemented yet");

   case H5C_DATASET_CREATE:
      size = sizeof(H5D_create_t);
      break;
      
   case H5C_DATASET_XFER:
      size = sizeof(H5D_xfer_t);
      break;

   default:
      HRETURN_ERROR (H5E_ARGS, H5E_BADRANGE, FAIL,
		     "unknown template class");
   }

   /* Create the new template */
   new_tmpl = H5MM_xmalloc (size);
   HDmemcpy (new_tmpl, tmpl, size);

   /* Register the atom for the new template */
   if ((ret_value=H5Aregister_atom (group, new_tmpl))<0) {
      HRETURN_ERROR (H5E_ATOM, H5E_CANTREGISTER, FAIL,
		     "unable to atomize template pointer");
   }

   FUNC_LEAVE (ret_value);
}