mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
3e755623cb
Users can create external links using H5L_create_external(). These links point to an object in another HDF5 file. Users can alter the behavior of external links or create new kinds of links by registering callbacks using the H5L interface. Added tests, tools support, etc. Also a number of other, minor changes have been made (some restructuring of the H5L interface, for instance). Additional documentation and examples are forthcoming.
74 lines
1.8 KiB
SQL
74 lines
1.8 KiB
SQL
#############################
|
|
Expected output for 'h5dump -A -r tall.h5'
|
|
#############################
|
|
HDF5 "tall.h5" {
|
|
GROUP "/" {
|
|
ATTRIBUTE "attr1" {
|
|
DATATYPE H5T_STD_I8BE
|
|
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
|
|
DATA {
|
|
"abcdefghi\000"
|
|
}
|
|
}
|
|
ATTRIBUTE "attr2" {
|
|
DATATYPE H5T_STD_I32BE
|
|
DATASPACE SIMPLE { ( 2, 2 ) / ( 2, 2 ) }
|
|
DATA {
|
|
(0,0): 0, 1,
|
|
(1,0): 2, 3
|
|
}
|
|
}
|
|
GROUP "g1" {
|
|
GROUP "g1.1" {
|
|
DATASET "dset1.1.1" {
|
|
DATATYPE H5T_STD_I32BE
|
|
DATASPACE SIMPLE { ( 10, 10 ) / ( 10, 10 ) }
|
|
ATTRIBUTE "attr1" {
|
|
DATATYPE H5T_STD_I8BE
|
|
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
|
|
DATA {
|
|
"1st attribute of dset1.1.1\000"
|
|
}
|
|
}
|
|
ATTRIBUTE "attr2" {
|
|
DATATYPE H5T_STD_I8BE
|
|
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
|
|
DATA {
|
|
"2nd attribute of dset1.1.1\000"
|
|
}
|
|
}
|
|
}
|
|
DATASET "dset1.1.2" {
|
|
DATATYPE H5T_STD_I32BE
|
|
DATASPACE SIMPLE { ( 20 ) / ( 20 ) }
|
|
}
|
|
}
|
|
GROUP "g1.2" {
|
|
EXTERNAL_LINK "extlink" {
|
|
LINKCLASS 64
|
|
TARGETFILE "somefile"
|
|
TARGETPATH "somepath"
|
|
}
|
|
GROUP "g1.2.1" {
|
|
SOFTLINK "slink" {
|
|
LINKTARGET "somevalue"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
GROUP "g2" {
|
|
DATASET "dset2.1" {
|
|
DATATYPE H5T_IEEE_F32BE
|
|
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
|
|
}
|
|
DATASET "dset2.2" {
|
|
DATATYPE H5T_IEEE_F32BE
|
|
DATASPACE SIMPLE { ( 3, 5 ) / ( 3, 5 ) }
|
|
}
|
|
USERDEFINED_LINK "udlink" {
|
|
LINKCLASS 187
|
|
}
|
|
}
|
|
}
|
|
}
|