diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2000-11-08 23:14:41 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2000-11-08 23:14:41 (GMT) |
commit | a219b97a88ffbc8d1641b1a1de7897823e7716ae (patch) | |
tree | 3a886a5dbe741f76056fa06869a6894c3e11eca5 /tools/h4toh5util.h | |
parent | 34b23b7dfab6cfdc6d38d05b8c5cf4dde60a2059 (diff) | |
download | hdf5-a219b97a88ffbc8d1641b1a1de7897823e7716ae.zip hdf5-a219b97a88ffbc8d1641b1a1de7897823e7716ae.tar.gz hdf5-a219b97a88ffbc8d1641b1a1de7897823e7716ae.tar.bz2 |
[svn-r2839]
Purpose:
check in beta release h4toh5 converter
Description:
1. add copy right and other comments to all .h and .c files
2. fix bugs on sds unlimited dimension, hdf5 dimensional scale attribute and vdata translating
from h4 to h5.
Solution:
2.
1) for sds with unlimited dimension to be converted into extensible hdf5 dataset,
on hdf5 side, has to set a default chunk size even though the corresponding hdf4 file is not
chunked.
2) in this version, if sds object doesn't have dimensional scale data, we will not show
the default hdf4 dimensional name ("fakedim0", etc.) in the new hdf5 dimensional scale
name attribute.
3) fix a bug transferring vdata of which the field includes a character array. Make it correctly transfer into the corresponding hdf5 compound data type.
Platforms tested:
eirene,arabica,baldric,hawkwind,paz,gondolin on new set of hdf4 test files.
Diffstat (limited to 'tools/h4toh5util.h')
-rw-r--r-- | tools/h4toh5util.h | 46 |
1 files changed, 40 insertions, 6 deletions
diff --git a/tools/h4toh5util.h b/tools/h4toh5util.h index 503e02c..5772325 100644 --- a/tools/h4toh5util.h +++ b/tools/h4toh5util.h @@ -1,3 +1,34 @@ +/*------------------------------------------------------------------------- + * + * Copyright (C) 2000 National Center for Supercomputing Applications. + * All rights reserved. + * + *------------------------------------------------------------------------- + */ + +/****************************************************************************** + + Description: + +1. converter + +See HDF4 to HDF5 mapping specification at +(http://hdf.ncsa.uiuc.edu/HDF5/papers/h4toh5) for the default mapping +from HDF4 object to HDF5 object. + +The whole converter includes 10 files, h4toh5util.h, h4toh5main.h, h4toh5util.c, h4toh5main.c, h4toh5sds.c, h4toh5image.c,h4toh5vdata.c,h4toh5vgroup.c,h4toh5pal.c and h4toh5anno.c. + +2. this file + +Including declarations of global variables,global hashtables,constant +and utility subroutines of h4toh5util.c + +Author: Kent Yang(ymuqun@ncsa.uiuc.edu) + + +*****************************************************************************/ + + #ifndef UTILITY_H #define UTILITY_H #include "hdf5.h" @@ -11,7 +42,7 @@ converter.*/ /*********************************************/ /* 0. if "/" is found in hdf4 object name, we will use another - character "_" to replace it. */ + character "_" to replace it, since "/" is a reserved symbol for hdf5. */ #define ORI_SLASH '/' #define CHA_SLASH '_' @@ -47,7 +78,8 @@ converter.*/ #define DIMSCALE "DIMSCALE" -/* 5. define affix GLOBAL for dealing sds and image file attributes. */ +/* 5. define affix GLO for sds and image file attributes. these file attributes + will be put under root group. */ #define GLOSDS "GLOSDS" #define GLOIMAGE "GLOIMAGE" @@ -60,7 +92,7 @@ converter.*/ #define RAST24LABEL "raster24" #define PALABEL "palette" -/* 7. define HDF object class. */ +/* 7. define "IMAGE" CLASS required by image spec. */ #define IM_CLASS "IMAGE" /* 8. reserved group name for HDF4 dimensional scale and palette. */ @@ -112,9 +144,9 @@ extern int32 num_glgrattrs; functions used in h4-h5 converter.*/ /*********************************************/ /*define two kinds of hashtables. - 1. struct table will use object reference as the key to handle whether this + 1. struct table uses object reference as the key to handle whether this object is visited or not. - 2. struct name_table will use name as the key to handle name clashings and + 2. struct name_table uses object name as the key to handle name clashings and dimensional scale dataset. */ @@ -139,6 +171,7 @@ extern struct name_table* dim_hashtab; /* routine for zeroing out the memory. */ void h4toh5_ZeroMemory(void*s,size_t n); + /* look-up table, object reference is the key.*/ int lookup(int,int,struct table*); @@ -165,7 +198,7 @@ void freehashmemory(void); functions used in h4-h5 converter.*/ /*********************************************/ -/* this routine defines the convertion of data type from h4 to h5. */ +/* this routine defines the conversion of data type from h4 to h5. */ herr_t h4type_to_h5type(const int32 h4type, hid_t* h5memtype, size_t* h4memsize, size_t* h4size, hid_t *h5type); @@ -179,6 +212,7 @@ hid_t mkstr(int size, H5T_str_t pad); herr_t h5string_to_int(const int32, hid_t*,const size_t,hid_t* ); int conv_int_str(uint16, char*); +/* these routines were utility functions for other routines at h4toh5util.c */ char* trans_obj_name(int32,int32); char* get_obj_aboname(char*,char*,char*,const char*); char* make_objname_no(char*,char*,const char*); |