forked from HDFGroup/hdf5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileFormatDisc.dox
1114 lines (1059 loc) · 32.4 KB
/
FileFormatDisc.dox
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
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/** \page FMTDISC HDF5 File Format Discussion
<dl>
<dt>Document's Audience:</dt>
<dd>Current H5 library designers and knowledgeable external developers.</dd>
<dt>Background Reading:</dt>
<dd>\ref FMT3 <br />This describes the current HDF5 file format.</dd>
</dl>
\section sec_fmtdisc_intro Introduction
<strong>What is this document about?</strong><br />
This document attempts to explain the HDF5 file format specification with a
few examples and describes some potential improvements to the format specification.
\section sec_fmtdisc_exam File Format Examples
This section has several small programs and describes the format of a file
created with each of them.
Example program one - <em>Create an empty file</em>:
\code
#include "hdf5.h"
#include <assert.h>
int main()
{
hid_t fid; /* File ID */
herr_t ret; /* Generic return value */
/* Create the file */
fid=H5Fcreate("example1.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
assert(fid>=0);
/* Close the file */
ret=H5Fclose(fid);
assert(ret>=0);
return(0);
}
\endcode
<table>
<caption><strong>Super Block</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td>\211</td>
<td>'H'</td>
<td>'D'</td>
<td>'F'</td>
</tr>
<tr align="center">
<td>\\r</td>
<td>\\n</td>
<td>\032</td>
<td>\\n</td>
</tr>
<tr align="center">
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr align="center">
<td>0</td>
<td>8</td>
<td>8</td>
<td>0</td>
</tr>
<tr align="center">
<td colspan="2">4</td>
<td colspan="2">16</td>
</tr>
<tr align="center">
<td colspan="4">0x00000003</td>
</tr>
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4"><br />0xffffffffffffffff<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4">?</td>
</tr>
<tr align="center">
<td colspan="4"><br />0xffffffffffffffff<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4"><br />928<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4">H5G_CACHED_STAB (1)</td>
</tr>
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<tr align="center">
<td colspan="4"><br />384<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4"><br />96<br /><br /></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
\code
%h5debug example1.h5
Reading signature at address 0 (rel)
File Super Block...
File name: example1.h5
File access flags 0x00000000
File open reference count: 1
Address of super block: 0 (abs)
Size of user block: 0 bytes
Super block version number: 0
Free list version number: 0
Root group symbol table entry version number: 0
Shared header version number: 0
Size of file offsets (haddr_t type): 8 bytes
Size of file lengths (hsize_t type): 8 bytes
Symbol table leaf node 1/2 rank: 4
Symbol table internal node 1/2 rank: 16
File consistency flags: 0x00000003
Base address: 0 (abs)
Free list address: UNDEF (rel)
Address of driver information block: UNDEF (rel)
Root group symbol table entry:
Name offset into private heap: 0
Object header address: 928
Dirty: Yes
Cache info type: Symbol Table
Cached information:
B-tree address: 384
Heap address: 96
\endcode
<table>
<caption><strong>Root Group Object Header</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td width="25%">1</td>
<td width="25%">0</td>
<td colspan="2" width="50%">2</td>
</tr>
<tr align="center">
<td colspan="4">1</td>
</tr>
<tr align="center">
<td colspan="4">32</td>
</tr>
<tr align="center">
<td colspan="2">0x0011</td>
<td colspan="2">16</td>
</tr>
<tr align="center">
<td>0x01</td>
<td colspan="3">0</td>
</tr>
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<tr align="center">
<td colspan="4"><br />384<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4"><br />96<br /><br /></td>
</tr>
</table>
</td>
</tr>
<tr align="center">
<td colspan="2">0</td>
<td colspan="2">0</td>
</tr>
<tr align="center">
<td>0x00</td>
<td colspan="3">0</td>
</tr>
</table>
\code
%h5debug example1.h5 928
New address: 928
Reading signature at address 928 (rel)
Object Header...
Dirty: 0
Version: 1
Header size (in bytes): 16
Number of links: 1
Number of messages (allocated): 2 (32)
Number of chunks (allocated): 1 (8)
Chunk 0...
Dirty: 0
Address: 944
Size in bytes: 32
Message 0...
Message ID (sequence number): 0x0011 stab(0)
Shared message: No
Constant: Yes
Raw size in obj header: 16 bytes
Chunk number: 0
Message Information:
B-tree address: 384
Name heap address: 96
Message 1...
Message ID (sequence number): 0x0000 null(0)
Shared message: No
Constant: No
Raw size in obj header: 0 bytes
Chunk number: 0
Message Information:
<no info="" for="" this="" message="">
\endcode
<table>
<caption><strong>Root Group Local Heap</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td>'H'</td>
<td>'E'</td>
<td>'A'</td>
<td>'P'</td>
</tr>
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4">256</td>
</tr>
<tr align="center">
<td colspan="4">8</td>
</tr>
<tr align="center">
<td colspan="4">128</td>
</tr>
</table>
\code
%h5debug example1.h5 96
New address: 96
Reading signature at address 96 (rel)
Local Heap...
Dirty: 0
Header size (in bytes): 32
Address of heap data: 128
Data bytes allocated on disk: 256
Data bytes allocated in core: 256
Free Blocks (offset, size):
Block #0: 8, 248
Percent of heap used: 3.12%
Data follows (`__' indicates free region)...
0: 00 00 00 00 00 00 00 00 __ __ __ __ __ __ __ __ ........
16: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
32: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
48: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
64: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
80: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
96: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
112: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
128: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
144: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
160: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
176: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
192: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
208: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
224: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
240: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
\endcode
<table>
<caption><strong>Root Group B-tree</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td>'T'</td>
<td>'R'</td>
<td>'E'</td>
<td>'E'</td>
</tr>
<tr align="center">
<td>0</td>
<td>0</td>
<td colspan="2">0</td>
</tr>
<tr align="center">
<td colspan="4"><br />0xffffffffffffffff<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4"><br />0xffffffffffffffff<br /><br /></td>
</tr>
</table>
\code
%h5debug example1.h5 384 96
New address: 384
Reading signature at address 384 (rel)
Tree type ID: H5B_SNODE_ID
Size of node: 544
Size of raw (disk) key: 8
Dirty flag: False
Number of initial dirty children: 0
Level: 0
Address of left sibling: UNDEF
Address of right sibling: UNDEF
Number of children (max): 0 (32)
\endcode
Example program two - <em>Create a file with a single dataset in it</em>:
\code
#include "hdf5.h"
#include <assert.h>
int main()
{
hid_t fid; /* File ID */
hid_t sid; /* Dataspace ID */
hid_t did; /* Dataset ID */
herr_t ret; /* Generic return value */
/* Create the file */
fid=H5Fcreate("example2.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
assert(fid>=0);
/* Create a scalar dataspace for the dataset */
sid=H5Screate(H5S_SCALAR);
assert(sid>=0);
/* Create a trivial dataset */
did=H5Dcreate(fid, "Dataset", H5T_NATIVE_INT, sid, H5P_DEFAULT);
assert(did>=0);
/* Close the dataset */
ret=H5Dclose(did);
assert(ret>=0);
/* Close the dataspace */
ret=H5Sclose(sid);
assert(ret>=0);
/* Close the file */
ret=H5Fclose(fid);
assert(ret>=0);
return(0);
}
\endcode
<table border="">
<caption align="top"><strong>Super Block</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td>\211</td>
<td>'H'</td>
<td>'D'</td>
<td>'F'</td>
</tr>
<tr align="center">
<td>\\r</td>
<td>\\n</td>
<td>\032</td>
<td>\\n</td>
</tr>
<tr align="center">
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr align="center">
<td>0</td>
<td>8</td>
<td>8</td>
<td>0</td>
</tr>
<tr align="center">
<td colspan="2">4</td>
<td colspan="2">16</td>
</tr>
<tr align="center">
<td colspan="4">0x00000003</td>
</tr>
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4"><br />0xffffffffffffffff<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4">?</td>
</tr>
<tr align="center">
<td colspan="4"><br />0xffffffffffffffff<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4"><br />928<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4">H5G_CACHED_STAB (1)</td>
</tr>
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<tr align="center">
<td colspan="4"><br />384<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4"><br />96<br /><br /></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
\code
%h5debug example2.h5
Reading signature at address 0 (rel)
File Super Block...
File name: example2.h5
File access flags 0x00000000
File open reference count: 1
Address of super block: 0 (abs)
Size of user block: 0 bytes
Super block version number: 0
Free list version number: 0
Root group symbol table entry version number: 0
Shared header version number: 0
Size of file offsets (haddr_t type): 8 bytes
Size of file lengths (hsize_t type): 8 bytes
Symbol table leaf node 1/2 rank: 4
Symbol table internal node 1/2 rank: 16
File consistency flags: 0x00000003
Base address: 0 (abs)
Free list address: UNDEF (rel)
Address of driver information block: UNDEF (rel)
Root group symbol table entry:
Name offset into private heap: 0
Object header address: 928
Dirty: Yes
Cache info type: Symbol Table
Cached entry information:
B-tree address: 384
Heap address: 96
\endcode
<table border="">
<caption align="top"><strong>Root Group Object Header</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td width="25%">1</td>
<td width="25%">0</td>
<td colspan="2" width="50%">2</td>
</tr>
<tr align="center">
<td colspan="4">1</td>
</tr>
<tr align="center">
<td colspan="4">32</td>
</tr>
<tr align="center">
<td colspan="2">0x0011</td>
<td colspan="2">16</td>
</tr>
<tr align="center">
<td>0x01</td>
<td colspan="3">0</td>
</tr>
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<tr align="center">
<td colspan="4"><br />384<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4"><br />96<br /><br /></td>
</tr>
</table>
</td>
</tr>
<tr align="center">
<td colspan="2">0</td>
<td colspan="2">0</td>
</tr>
<tr align="center">
<td>0x00</td>
<td colspan="3">0</td>
</tr>
</table>
\code
%h5debug example2.h5 928
New address: 928
Reading signature at address 928 (rel)
Object Header...
Dirty: 0
Version: 1
Header size (in bytes): 16
Number of links: 1
Number of messages (allocated): 2 (32)
Number of chunks (allocated): 1 (8)
Chunk 0...
Dirty: 0
Address: 944
Size in bytes: 32
Message 0...
Message ID: 0x0011 stab(0)
Shared message: No
Constant: Yes
Raw size in obj header: 16 bytes
Chunk number: 0
Message Information:
B-tree address: 384
Name heap address: 96
Message 1...
Message ID: 0x0000 null(0)
Shared message: No
Constant: No
Raw size in obj header: 0 bytes
Chunk number: 0
Message Information:
<no info="" for="" this="" message="">
\endcode
<table border="">
<caption align="top"><strong>Root Group Local Heap</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td>'H'</td>
<td>'E'</td>
<td>'A'</td>
<td>'P'</td>
</tr>
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4">256</td>
</tr>
<tr align="center">
<td colspan="4">16</td>
</tr>
<tr align="center">
<td colspan="4">128</td>
</tr>
</table>
\code
%h5debug example2.h5 96
New address: 96
Reading signature at address 96 (rel)
Local Heap...
Dirty: 0
Header size (in bytes): 32
Address of heap data: 128
Data bytes allocated on disk: 256
Data bytes allocated in core: 256
Free Blocks (offset, size):
Block #0: 16, 240
Percent of heap used: 6.25%
Data follows (`__' indicates free region)...
0: 00 00 00 00 00 00 00 00 44 61 74 61 73 65 74 00 ........Dataset.
16: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
32: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
48: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
64: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
80: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
96: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
112: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
128: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
144: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
160: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
176: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
192: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
208: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
224: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
240: __ __ __ __ __ __ __ __ __ __ __ __ __ __ __ __
\endcode
<table border="">
<caption align="top"><strong>Root Group B-tree</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td>'T'</td>
<td>'R'</td>
<td>'E'</td>
<td>'E'</td>
</tr>
<tr align="center">
<td>0</td>
<td>0</td>
<td colspan="2">1</td>
</tr>
<tr align="center">
<td colspan="4"><br />0xffffffffffffffff<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4"><br />0xffffffffffffffff<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4"><br />0<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4"><br />1248<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4"><br />8<br /><br /></td>
</tr>
</table>
\code
%h5debug example2.h5 384 96
New address: 384
Reading signature at address 384 (rel)
Tree type ID: H5B_SNODE_ID
Size of node: 544
Size of raw (disk) key: 8
Dirty flag: False
Number of initial dirty children: 0
Level: 0
Address of left sibling: UNDEF
Address of right sibling: UNDEF
Number of children (max): 1 (32)
Child 0...
Address: 1248
Left Key:
Heap offset: 0
Name :
Right Key:
Heap offset: 8
Name : Dataset
\endcode
<table border="">
<caption align="top"><strong>Root Group B-tree Symbol Table Node</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td>'S'</td>
<td>'N'</td>
<td>'O'</td>
<td>'D'</td>
</tr>
<tr align="center">
<td>1</td>
<td>0</td>
<td colspan="2">1</td>
</tr>
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<tr align="center">
<td colspan="4">8</td>
</tr>
<tr align="center">
<td colspan="4"><br />976<br /><br /></td>
</tr>
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4">0</td>
</tr>
<tr align="center">
<td colspan="4"><br /><br />0<br /><br /><br /></td>
</tr>
</table>
</td>
</tr>
</table>
\code
%h5debug example2.h5 1248 96
New address: 1248
Reading signature at address 1248 (rel)
Symbol Table Node...
Dirty: No
Size of Node (in bytes): 328
Number of Symbols: 1 of 8
Symbol 0:
Name: `Dataset'
Name offset into private heap: 8
Object header address: 976
Dirty: No
Cache info type: Nothing Cached
\endcode
<table border="">
<caption align="top"><strong>'/Dataset' Object Header</strong></caption>
<tr align="center">
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
<th width="25%">byte</th>
</tr>
<tr align="center">
<td ><em>Version:</em> 1</td>
<td ><em>Reserved:</em> 0</td>
<td colspan="2"><em>Number of Header Messages:</em> 6</td>
</tr>
<tr align="center">
<td colspan="4"><em>Object Reference Count:</em> 1</td>
</tr>
<tr align="center">
<td colspan="4"><em>Total Object Header Size:</em> 256</td>
</tr>
<!-- Fill Value Header Message -->
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<caption align="top" color="#80FFFF"><em>Fill Value Header Message</em></caption>
<tr align="center">
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
</tr>
<tr align="center">
<!-- Object Header Message Type -->
<td colspan="2"><em>Message Type:</em> 0x0005</td>
<!-- Object Header Message Length -->
<td colspan="2"><em>Message Data Size:</em> 8</td>
</tr>
<tr align="center">
<!-- Object Header Message Flags -->
<td><em>Flags:</em> 0x01</td>
<!-- Reserved -->
<td colspan="3"><em>Reserved:</em> 0</td>
</tr>
<tr align="center">
<!-- Version -->
<td><em>Version:</em> 1</td>
<!-- Space Allocation Time -->
<td><em>Space Allocation Time:</em> 2 (Late)</td>
<!-- Fill Value Writing Time -->
<td><em>Fill Value Writing Time:</em> 0 (At allocation)</td>
<!-- Fill Value Defined -->
<td><em>Fill Value Defined:</em> 0 (Undefined)</td>
</tr>
<tr align="center">
<!-- Fill Value Datatype Size -->
<td colspan="4"><em>Fill Value Datatype Size:</em> 0 (Use dataset's datatype for fill-value datatype)</td>
</tr>
</table>
</td>
</tr>
<!-- Datatype Header Message -->
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<caption align="top"><em>Datatype Header Message</em></caption>
<tr align="center">
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
</tr>
<tr align="center">
<!-- Object Header Message Type -->
<td colspan="2"><em>Message Type:</em> 0x0003</td>
<!-- Object Header Message Length -->
<td colspan="2"><em>Message Data Size:</em> 16</td>
</tr>
<tr align="center">
<!-- Object Header Message Flags -->
<td><em>Flags:</em> 0x01</td>
<!-- Reserved -->
<tdcolspan="3"><em>Reserved:</em> 0</td>
</tr>
<tr align="center">
<!-- Type Class and Version -->
<td>
<table border="" width="100%">
<tr align="center">
<td width="50%"><em>Version:</em> 0x1</td>
<td><em>Class:</em> 0x0 (Fixed-Point)</td>
</tr>
</table>
</td>
<!-- Class Bit Field -->
<td colspan="3"><em>Fixed-Point Bit-Field:</em> 0x08 (Little-endian, No padding, Signed)</td>
</tr>
<tr align="center">
<!-- Type Size (in bytes) -->
<td colspan="4"><em>Size:</em> 4</td>
</tr>
<tr align="center">
<!-- Bit Offset -->
<td colspan="2"><em>Bit Offset:</em> 0</td>
<!-- Bit Precision -->
<td colspan="2"><em>Bit Precision:</em> 32</td>
</tr>
<tr align="center">
<!-- Message alignment filler -->
<td colspan="4"><em>Message Alignment Filler:</em> -</td>
</tr>
</table>
</td>
</tr>
<!-- Dataspace Header Message -->
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<caption align="top"><em>Dataspace Header Message</em></caption>
<tr align="center">
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
</tr>
<tr align="center">
<!-- Object Header Message Type -->
<td colspan="2"><em>Message Type:</em> 0x0001</td>
<!-- Object Header Message Length -->
<td colspan="2"><em>Message Data Size:</em> 8</td>
</tr>
<tr align="center">
<!-- Object Header Message Flags -->
<td><em>Flags:</em> 0x00</td>
<!-- Reserved -->
<td colspan="3"><em>Reserved:</em> 0</td>
</tr>
<tr align="center">
<!-- Version -->
<td><em>Version:</em> 1</td>
<!-- Rank -->
<td><em>Rank:</em> 0 (Scalar)</td>
<!-- Flags -->
<td><em>Flags:</em> 0x00 (No maximum dimensions, no permutation information)</td>
<!-- Reserved -->
<td><em>Reserved:</em> 0</td>
</tr>
<tr align="center">
<!-- Reserved -->
<td colspan="4"><em>Reserved:</em> 0</td>
</tr>
</table>
</td>
</tr>
<!-- Layout Header Message -->
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<caption align="top"><em>Layout Header Message</em></caption>
<tr align="center">
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
</tr>
<tr align="center">
<!-- Object Header Message Type -->
<td colspan="2"><em>Message Type:</em> 0x0008</td>
<!-- Object Header Message Length -->
<td colspan="2"><em>Message Data Size:</em> 24</td>
</tr>
<tr align="center">
<!-- Object Header Message Flags -->
<td><em>Flags:</em> 0x00</td>
<!-- Reserved -->
<td colspan="3"><em>Reserved:</em> 0</td>
</tr>
<tr align="center">
<!-- Version -->
<td><em>Version:</em> 1</td>
<!-- Rank -->
<td><em>Rank:</em> 1 (Dataspace rank+1)</td>
<!-- Class -->
<td><em>Class:</em> 1 (Contiguous)</td>
<!-- Reserved -->
<td><em>Reserved:</em> 0</td>
</tr>
<tr align="center">
<!-- Reserved -->
<td colspan="4"><em>Reserved:</em> 0</td>
</tr>
<tr align="center">
<!-- Address -->
<td colspan="4"><br><em>Address:</em> 0xffffffffffffffff (Undefined)<br><br></td>
</tr>
<tr align="center">
<!-- Layout Dimensions -->
<td colspan="4"><em>Dimension 0 Size:</em> 4 (Datatype size)</td>
</tr>
<tr align="center">
<!-- Message alignment filler -->
<td colspan="4"><em>Message Alignment Filler:</em> -</td>
</tr>
</table>
</td>
</tr>
<!-- Modification Date & Time Header Message -->
<tr align="center">
<td colspan="4">
<table border="" width="100%">
<caption align="top"><em>Modification Date & Time Header Message</em></caption>
<tr align="center">
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
<th width="25%"></th>
</tr>
<tr align="center">
<!-- Object Header Message Type -->
<td colspan="2"><em>Message Type:</em> 0x0012</td>
<!-- Object Header Message Length -->
<td colspan="2"><em>Message Data Size:</em> 8</td>
</tr>
<tr align="center">
<!-- Object Header Message Flags -->
<td><em>Flags:</em> 0x00</td>
<!-- Reserved -->
<td colspan="3"><em>Reserved:</em> 0</td>
</tr>
<tr align="center">
<!-- Version -->
<td><em>Version:</em> 1</td>
<!-- Reserved -->
<td colspan="3"><em>Reserved:</em> 0</td>