2003-10-23 05:30:19 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2003-10-23 05:30:19 +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 *
|
|
|
|
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
|
|
|
* of the source code distribution tree; Copyright.html can be found at the *
|
|
|
|
* root level of an installed copy of the electronic HDF5 document set and *
|
|
|
|
* is linked from the top-level documents page. It can also be found at *
|
2007-02-07 22:56:24 +08:00
|
|
|
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
* access to either file, you may request a copy from help@hdfgroup.org. *
|
2003-10-23 05:30:19 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
2011-08-09 05:59:09 +08:00
|
|
|
#include <memory.h>
|
2008-10-30 03:47:50 +08:00
|
|
|
#include "h5diff.h"
|
2005-02-17 04:20:40 +08:00
|
|
|
#include "h5diff_common.h"
|
2012-02-29 02:26:34 +08:00
|
|
|
#include "h5tools.h"
|
2008-10-30 03:47:50 +08:00
|
|
|
#include "h5tools_utils.h"
|
2003-10-23 05:30:19 +08:00
|
|
|
|
2010-05-12 04:10:25 +08:00
|
|
|
|
2003-10-23 05:30:19 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: main
|
|
|
|
*
|
2005-02-17 04:20:40 +08:00
|
|
|
* Purpose: h5diff main program
|
2003-10-23 05:30:19 +08:00
|
|
|
*
|
2005-08-14 04:53:35 +08:00
|
|
|
* Return: An exit status of 0 means no differences were found, 1 means some
|
2003-10-23 05:30:19 +08:00
|
|
|
* differences were found.
|
|
|
|
*
|
|
|
|
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
|
|
|
*
|
|
|
|
* Date: May 9, 2003
|
|
|
|
*
|
|
|
|
* Comments:
|
|
|
|
*
|
2004-07-21 03:21:03 +08:00
|
|
|
* Modifications: July 2004
|
|
|
|
* Introduced the four modes:
|
|
|
|
* Normal mode: print the number of differences found and where they occured
|
|
|
|
* Report mode: print the above plus the differences
|
|
|
|
* Verbose mode: print the above plus a list of objects and warnings
|
2005-08-14 04:53:35 +08:00
|
|
|
* Quiet mode: do not print output
|
2003-10-23 05:30:19 +08:00
|
|
|
*
|
2005-01-27 07:03:29 +08:00
|
|
|
* November 2004: Leon Arber (larber@uiuc.edu)
|
2006-03-23 04:53:05 +08:00
|
|
|
* Additions that allow h5diff to be run in parallel
|
2005-02-03 07:01:42 +08:00
|
|
|
*
|
2005-02-17 04:20:40 +08:00
|
|
|
* February 2005: Leon Arber (larber@uiuc.edu)
|
2006-03-23 04:53:05 +08:00
|
|
|
* h5diff and ph5diff split into two files, one that is used
|
|
|
|
* to build a serial h5diff and one used to build a parallel h5diff
|
|
|
|
* Common functions have been moved to h5diff_common.c
|
2007-02-27 02:21:41 +08:00
|
|
|
*
|
|
|
|
* October 2005
|
|
|
|
* Introduced a new field 'not_cmp' to 'diff_opt_t' that detects
|
|
|
|
* if some objects are not comparable and prints the message
|
|
|
|
* "Some objects are not comparable"
|
|
|
|
*
|
|
|
|
* February 2007
|
2008-09-16 23:52:51 +08:00
|
|
|
* Added comparison for dataset regions.
|
2007-02-27 02:21:41 +08:00
|
|
|
* Added support for reading and comparing by hyperslabs for large files.
|
|
|
|
* Inclusion of a relative error formula to compare floating
|
2008-09-16 23:52:51 +08:00
|
|
|
* point numbers in order to deal with floating point uncertainty.
|
2007-02-27 02:21:41 +08:00
|
|
|
* Printing of dataset dimensions along with dataset name
|
2008-09-16 23:52:51 +08:00
|
|
|
*
|
2007-11-20 04:13:56 +08:00
|
|
|
* November 19, 2007
|
|
|
|
* adopted the syntax h5diff [OPTIONS] file1 file2 [obj1[obj2]]
|
2007-02-27 02:21:41 +08:00
|
|
|
*
|
2003-10-23 05:30:19 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2005-02-08 13:42:49 +08:00
|
|
|
|
2003-10-23 05:30:19 +08:00
|
|
|
int main(int argc, const char *argv[])
|
|
|
|
{
|
2007-09-13 23:44:56 +08:00
|
|
|
int ret;
|
2008-10-30 03:47:50 +08:00
|
|
|
const char *fname1 = NULL;
|
|
|
|
const char *fname2 = NULL;
|
|
|
|
const char *objname1 = NULL;
|
|
|
|
const char *objname2 = NULL;
|
2007-09-13 23:44:56 +08:00
|
|
|
hsize_t nfound=0;
|
|
|
|
diff_opt_t options;
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2010-05-12 04:10:25 +08:00
|
|
|
h5tools_setprogname(PROGRAMNAME);
|
|
|
|
h5tools_setstatus(EXIT_SUCCESS);
|
2012-02-25 05:14:47 +08:00
|
|
|
|
|
|
|
/* Initialize h5tools lib */
|
|
|
|
h5tools_init();
|
|
|
|
|
2008-10-30 03:47:50 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* process the command-line
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2007-11-14 05:40:23 +08:00
|
|
|
parse_command_line(argc, argv, &fname1, &fname2, &objname1, &objname2, &options);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2008-10-30 03:47:50 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* do the diff
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
nfound = h5diff(fname1,fname2,objname1,objname2,&options);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
print_info(&options);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2010-02-17 03:43:05 +08:00
|
|
|
out:
|
2007-11-20 03:38:34 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2007-09-13 23:44:56 +08:00
|
|
|
* exit code
|
2008-10-30 03:29:25 +08:00
|
|
|
* 1 if differences, 0 if no differences, 2 if error
|
2007-09-13 23:44:56 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
ret = (nfound == 0 ? 0 : 1 );
|
2008-08-05 05:13:16 +08:00
|
|
|
|
2008-10-30 03:47:50 +08:00
|
|
|
/* if graph difference return 1 for differences */
|
2008-10-30 03:29:25 +08:00
|
|
|
if ( options.contents == 0 )
|
2008-08-05 05:13:16 +08:00
|
|
|
ret = 1;
|
|
|
|
|
2008-10-30 03:47:50 +08:00
|
|
|
/* and return 2 for error */
|
|
|
|
if (options.err_stat)
|
2008-10-30 03:29:25 +08:00
|
|
|
ret = 2;
|
2008-10-30 03:47:50 +08:00
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
return ret;
|
2005-02-07 10:11:31 +08:00
|
|
|
}
|
2003-10-23 05:30:19 +08:00
|
|
|
|
2011-08-09 05:59:09 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: h5diff_exit
|
|
|
|
*
|
|
|
|
* Purpose: dismiss phdiff worker processes and exit
|
|
|
|
*
|
|
|
|
* Return: none
|
|
|
|
*
|
|
|
|
* Programmer: Albert Cheng
|
|
|
|
* Date: Feb 6, 2005
|
|
|
|
*
|
|
|
|
* Comments:
|
|
|
|
*
|
|
|
|
* Modifications:
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
void h5diff_exit(int status)
|
|
|
|
{
|
|
|
|
exit(status);
|
|
|
|
}
|
|
|
|
|