2003-10-23 05:56:21 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2003-10-23 05:56:21 +08:00
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
|
|
|
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2003-10-23 05:56:21 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
#ifndef H5DIFF_H__
|
|
|
|
#define H5DIFF_H__
|
|
|
|
|
|
|
|
#include "hdf5.h"
|
|
|
|
#include "h5trav.h"
|
|
|
|
|
2012-08-04 04:11:36 +08:00
|
|
|
/*
|
|
|
|
* Debug printf macros. The prefix allows output filtering by test scripts.
|
|
|
|
*/
|
|
|
|
#ifdef H5DIFF_DEBUG
|
|
|
|
#define h5difftrace(x) HDfprintf(stderr, "h5diff debug: " x)
|
|
|
|
#define h5diffdebug2(x1, x2) HDfprintf(stderr, "h5diff debug: " x1, x2)
|
|
|
|
#define h5diffdebug3(x1, x2, x3) HDfprintf(stderr, "h5diff debug: " x1, x2, x3)
|
|
|
|
#define h5diffdebug4(x1, x2, x3, x4) HDfprintf(stderr, "h5diff debug: " x1, x2, x3, x4)
|
|
|
|
#define h5diffdebug5(x1, x2, x3, x4, x5) HDfprintf(stderr, "h5diff debug: " x1, x2, x3, x4, x5)
|
|
|
|
#else
|
|
|
|
#define h5difftrace(x)
|
|
|
|
#define h5diffdebug2(x1, x2)
|
|
|
|
#define h5diffdebug3(x1, x2, x3)
|
|
|
|
#define h5diffdebug4(x1, x2, x3, x4)
|
|
|
|
#define h5diffdebug5(x1, x2, x3, x4, x5)
|
|
|
|
#endif
|
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
#define MAX_FILENAME 1024
|
|
|
|
|
2011-05-07 06:02:24 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* This is used to pass multiple args into diff().
|
|
|
|
* Passing this instead of several each arg provides smoother extensibility
|
|
|
|
* through its members along with MPI code for ph5diff
|
|
|
|
* as it doesn't require interface change.
|
|
|
|
*------------------------------------------------------------------------*/
|
|
|
|
typedef struct {
|
[svn-r22176] Purpose:
Fix for HDFFV-7644 GMQS: h5diff - incorrect behaviors when comparing HDF5 files with different type of objects (dataset, group, type) as common objects
Description:
Fixed failure for comparing same named object with different object types in comparing groups. (common object comparison)
Prior to the fix, h5diff resulted in error. After the fix, h5diff detects such case as non-comparable and display messages accordingly.
Test cases were added and tagged with jira#.
Tested:
jam (linux32-LE), koala (linux64-LE), ostrich (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Windows (32-LE cmake), Cmake (jam)
2012-03-29 06:09:38 +08:00
|
|
|
h5trav_type_t type[2];
|
2011-05-07 06:02:24 +08:00
|
|
|
hbool_t is_same_trgobj;
|
|
|
|
} diff_args_t;
|
2003-10-23 05:56:21 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* command line options
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2010-09-17 05:46:16 +08:00
|
|
|
/* linked list to keep exclude path list */
|
|
|
|
struct exclude_path_list {
|
|
|
|
char *obj_path;
|
|
|
|
h5trav_type_t obj_type;
|
|
|
|
struct exclude_path_list * next;
|
|
|
|
};
|
2003-10-23 05:56:21 +08:00
|
|
|
|
|
|
|
typedef struct {
|
2009-09-12 04:09:34 +08:00
|
|
|
int m_quiet; /* quiet mide: no output at all */
|
|
|
|
int m_report; /* report mode: print the data */
|
|
|
|
int m_verbose; /* verbose mode: print the data, list of objcets, warnings */
|
2011-03-22 23:47:07 +08:00
|
|
|
int m_verbose_level; /* control verbose details */
|
2009-09-12 04:09:34 +08:00
|
|
|
int d; /* delta, absolute value to compare */
|
|
|
|
double delta; /* delta value */
|
|
|
|
int p; /* relative error to compare*/
|
|
|
|
int use_system_epsilon; /* flag to use system epsilon (1 or 0) */
|
|
|
|
double percent; /* relative error value */
|
|
|
|
int n; /* count, compare up to count */
|
|
|
|
hsize_t count; /* count value */
|
2013-09-14 05:11:30 +08:00
|
|
|
hbool_t follow_links; /* follow symbolic links */
|
2010-02-17 03:43:05 +08:00
|
|
|
int no_dangle_links; /* return error when find dangling link */
|
2009-09-12 04:09:34 +08:00
|
|
|
int err_stat; /* an error ocurred (1, error, 0, no error) */
|
|
|
|
int cmn_objs; /* do we have common objects */
|
|
|
|
int not_cmp; /* are the objects comparable */
|
|
|
|
int contents; /* equal contents */
|
|
|
|
int do_nans; /* consider Nans while diffing floats */
|
|
|
|
int m_list_not_cmp; /* list not comparable messages */
|
2010-09-17 05:46:16 +08:00
|
|
|
int exclude_path; /* exclude path to an object */
|
|
|
|
struct exclude_path_list * exclude; /* keep exclude path list */
|
2003-10-29 01:40:05 +08:00
|
|
|
} diff_opt_t;
|
2003-10-23 05:56:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* public functions
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-05-12 04:10:25 +08:00
|
|
|
H5TOOLS_DLL hsize_t h5diff(const char *fname1,
|
2005-08-14 04:53:35 +08:00
|
|
|
const char *fname2,
|
|
|
|
const char *objname1,
|
|
|
|
const char *objname2,
|
2004-07-21 03:21:03 +08:00
|
|
|
diff_opt_t *options);
|
2005-02-10 02:19:54 +08:00
|
|
|
|
2011-08-09 05:59:09 +08:00
|
|
|
H5TOOLS_DLL hsize_t diff( hid_t file1_id,
|
|
|
|
const char *path1,
|
|
|
|
hid_t file2_id,
|
|
|
|
const char *path2,
|
|
|
|
diff_opt_t *options,
|
|
|
|
diff_args_t *argdata);
|
|
|
|
|
2005-02-09 19:36:17 +08:00
|
|
|
#ifdef H5_HAVE_PARALLEL
|
2010-05-12 04:10:25 +08:00
|
|
|
H5TOOLS_DLL void phdiff_dismiss_workers(void);
|
|
|
|
H5TOOLS_DLL void print_manager_output(void);
|
2005-02-09 19:36:17 +08:00
|
|
|
#endif
|
2003-10-23 05:56:21 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* private functions
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
hsize_t diff_dataset( hid_t file1_id,
|
|
|
|
hid_t file2_id,
|
|
|
|
const char *obj1_name,
|
2004-07-21 03:21:03 +08:00
|
|
|
const char *obj2_name,
|
2007-02-22 04:05:04 +08:00
|
|
|
diff_opt_t *options);
|
2003-10-29 01:40:05 +08:00
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
hsize_t diff_datasetid( hid_t dset1_id,
|
|
|
|
hid_t dset2_id,
|
|
|
|
const char *obj1_name,
|
|
|
|
const char *obj2_name,
|
2007-02-22 04:05:04 +08:00
|
|
|
diff_opt_t *options);
|
2004-07-21 03:21:03 +08:00
|
|
|
|
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
hsize_t diff_match( hid_t file1_id, const char *grp1, trav_info_t *info1,
|
|
|
|
hid_t file2_id, const char *grp2, trav_info_t *info2,
|
|
|
|
trav_table_t *table, diff_opt_t *options );
|
2003-12-03 07:13:27 +08:00
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
hsize_t diff_array( void *_mem1,
|
|
|
|
void *_mem2,
|
|
|
|
hsize_t nelmts,
|
2006-10-26 04:38:28 +08:00
|
|
|
hsize_t hyper_start,
|
2005-08-14 04:53:35 +08:00
|
|
|
int rank,
|
|
|
|
hsize_t *dims,
|
|
|
|
diff_opt_t *options,
|
|
|
|
const char *name1,
|
2004-07-21 03:21:03 +08:00
|
|
|
const char *name2,
|
|
|
|
hid_t m_type,
|
|
|
|
hid_t container1_id,
|
|
|
|
hid_t container2_id); /* dataset where the reference came from*/
|
2003-10-23 05:56:21 +08:00
|
|
|
|
2003-11-04 06:10:57 +08:00
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
int diff_can_type( hid_t f_type1, /* file data type */
|
2003-11-04 06:10:57 +08:00
|
|
|
hid_t f_type2, /* file data type */
|
2005-08-14 04:53:35 +08:00
|
|
|
int rank1,
|
2003-11-04 06:10:57 +08:00
|
|
|
int rank2,
|
2005-08-14 04:53:35 +08:00
|
|
|
hsize_t *dims1,
|
2003-11-04 06:10:57 +08:00
|
|
|
hsize_t *dims2,
|
2005-08-14 04:53:35 +08:00
|
|
|
hsize_t *maxdim1,
|
2003-11-04 06:10:57 +08:00
|
|
|
hsize_t *maxdim2,
|
2005-08-14 04:53:35 +08:00
|
|
|
const char *obj1_name,
|
|
|
|
const char *obj2_name,
|
2009-02-11 23:57:25 +08:00
|
|
|
diff_opt_t *options,
|
|
|
|
int is_compound);
|
2003-11-04 06:10:57 +08:00
|
|
|
|
|
|
|
|
2007-03-06 00:26:50 +08:00
|
|
|
hsize_t diff_attr(hid_t loc1_id,
|
|
|
|
hid_t loc2_id,
|
|
|
|
const char *path1,
|
|
|
|
const char *path2,
|
|
|
|
diff_opt_t *options);
|
2003-11-04 06:10:57 +08:00
|
|
|
|
|
|
|
|
2003-10-23 05:56:21 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* utility functions
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2012-08-16 00:04:26 +08:00
|
|
|
/* in h5diff_util.c */
|
2004-07-21 03:21:03 +08:00
|
|
|
void print_found(hsize_t nfound);
|
2003-10-29 01:40:05 +08:00
|
|
|
void print_type(hid_t type);
|
|
|
|
const char* diff_basename(const char *name);
|
[svn-r14154] Description:
Finish deprecating last H5G symbol (H5G_obj_t) - yay!
Lots of misc. library fixes to remove confusion between links and
objects. The tools could still use another pass, to remove h5trav_type_t type
and make the correct distinction between links & objects.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
AIX/32 5.3 (copper) w/FORTRAN, w/parallel, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-09-26 06:18:33 +08:00
|
|
|
const char* get_type(h5trav_type_t type);
|
2003-10-23 05:56:21 +08:00
|
|
|
const char* get_class(H5T_class_t tclass);
|
|
|
|
const char* get_sign(H5T_sign_t sign);
|
2007-02-22 04:05:04 +08:00
|
|
|
void print_dimensions (int rank, hsize_t *dims);
|
2012-08-16 00:04:26 +08:00
|
|
|
herr_t match_up_memsize (hid_t f_tid1_id, hid_t f_tid2_id,
|
|
|
|
hid_t *m_tid1, hid_t *m_tid2,
|
|
|
|
size_t *m_size1, size_t *m_size2);
|
|
|
|
/* in h5diff.c */
|
2006-03-22 00:01:42 +08:00
|
|
|
int print_objname(diff_opt_t *options, hsize_t nfound);
|
2011-03-22 23:47:07 +08:00
|
|
|
void do_print_objname (const char *OBJ, const char *path1, const char *path2, diff_opt_t * opts);
|
|
|
|
void do_print_attrname (const char *attr, const char *path1, const char *path2);
|
2007-02-20 04:21:09 +08:00
|
|
|
|
2003-10-23 05:56:21 +08:00
|
|
|
#endif /* H5DIFF_H__ */
|
2007-09-13 23:44:56 +08:00
|
|
|
|