2003-04-03 02:44:12 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2003-04-03 02:44:12 +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 *
|
2021-02-17 22:52:36 +08:00
|
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
2017-04-18 03:32:16 +08:00
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2003-04-03 02:44:12 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
2005-01-27 07:03:29 +08:00
|
|
|
#include "H5private.h"
|
2009-06-16 03:05:42 +08:00
|
|
|
#include "h5tools.h"
|
|
|
|
#include "h5tools_utils.h"
|
2011-02-09 05:35:54 +08:00
|
|
|
#include "h5diff.h"
|
|
|
|
#include "ph5diff.h"
|
2002-10-10 00:33:05 +08:00
|
|
|
|
2004-07-21 03:21:03 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: print_objname
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: check if object name is to be printed, only when:
|
|
|
|
* 1) verbose mode
|
|
|
|
* 2) when diff was found (normal mode)
|
2004-07-21 03:21:03 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2016-06-29 05:53:48 +08:00
|
|
|
H5_ATTR_PURE int
|
2020-09-30 22:27:10 +08:00
|
|
|
print_objname(diff_opt_t *opts, hsize_t nfound)
|
2004-07-21 03:21:03 +08:00
|
|
|
{
|
2020-07-16 00:20:16 +08:00
|
|
|
return ((opts->mode_verbose || nfound) && !opts->mode_quiet) ? 1 : 0;
|
2004-07-21 03:21:03 +08:00
|
|
|
}
|
|
|
|
|
2007-02-20 04:21:09 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: do_print_objname
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: print object name
|
2007-02-20 04:21:09 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2017-10-14 05:34:01 +08:00
|
|
|
void
|
2020-09-30 22:27:10 +08:00
|
|
|
do_print_objname(const char *OBJ, const char *path1, const char *path2, diff_opt_t *opts)
|
2007-02-20 04:21:09 +08:00
|
|
|
{
|
2011-03-22 23:47:07 +08:00
|
|
|
/* if verbose level is higher than 0, put space line before
|
|
|
|
* displaying any object or symbolic links. This improves
|
2017-01-17 23:55:15 +08:00
|
|
|
* readability of the output.
|
2011-03-22 23:47:07 +08:00
|
|
|
*/
|
2020-07-16 00:20:16 +08:00
|
|
|
if (opts->mode_verbose_level >= 1)
|
2011-03-22 23:47:07 +08:00
|
|
|
parallel_print("\n");
|
2007-02-22 04:05:04 +08:00
|
|
|
parallel_print("%-7s: <%s> and <%s>\n", OBJ, path1, path2);
|
2007-02-20 04:21:09 +08:00
|
|
|
}
|
|
|
|
|
2011-03-22 23:47:07 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: do_print_attrname
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: print attribute name
|
2011-03-22 23:47:07 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
void
|
2020-09-30 22:27:10 +08:00
|
|
|
do_print_attrname(const char *attr, const char *path1, const char *path2)
|
2011-03-22 23:47:07 +08:00
|
|
|
{
|
|
|
|
parallel_print("%-7s: <%s> and <%s>\n", attr, path1, path2);
|
|
|
|
}
|
|
|
|
|
2010-02-17 03:43:05 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: print_warn
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: check print warning condition.
|
2017-01-17 23:55:15 +08:00
|
|
|
* Return:
|
2017-10-14 05:34:01 +08:00
|
|
|
* 1 if verbose mode
|
|
|
|
* 0 if not verbos mode
|
2010-02-17 03:43:05 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2017-10-14 05:34:01 +08:00
|
|
|
static int
|
2017-10-17 06:26:23 +08:00
|
|
|
print_warn(diff_opt_t *opts)
|
2010-02-17 03:43:05 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
return ((opts->mode_verbose)) ? 1 : 0;
|
2010-02-17 03:43:05 +08:00
|
|
|
}
|
2007-02-20 04:21:09 +08:00
|
|
|
|
2005-02-08 13:42:49 +08:00
|
|
|
#ifdef H5_HAVE_PARALLEL
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: phdiff_dismiss_workers
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: tell all workers to end.
|
2005-02-08 13:42:49 +08:00
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Return: none
|
2005-02-08 13:42:49 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2017-10-14 05:34:01 +08:00
|
|
|
void
|
|
|
|
phdiff_dismiss_workers(void)
|
2005-02-08 13:42:49 +08:00
|
|
|
{
|
2010-02-17 03:43:05 +08:00
|
|
|
int i;
|
2017-10-14 05:34:01 +08:00
|
|
|
for (i = 1; i < g_nTasks; i++)
|
2010-02-17 03:43:05 +08:00
|
|
|
MPI_Send(NULL, 0, MPI_BYTE, i, MPI_TAG_END, MPI_COMM_WORLD);
|
2005-02-08 13:42:49 +08:00
|
|
|
}
|
|
|
|
|
[svn-r10170] Purpose:
Bug Fixes
Description:
Fixes for several bugs, including dumping of excess output to a temporary file, fix for printing
hsize_t datatype, and the long awaited fix for intermixed output.
Solution:
Fix 1: Overflow file
Previously, any output that a worker task made was buffered locally in memory, up to a point. Any
output beyond the size of the buffer (used to be 10k) was discarded. Now, the memory buffer size has been
changed to 1k and any output beyond this amount is sent a temporary file. This way, no output is lost
and memory usage is kept under control. The temporary file is deleted as soon as a worker task finishes
sending its contents to the manager.
Fix 2: hsize_t printing
Printing of the hsize_t datatype used to be handled by %Hu passed to HDfprintf. However, there is no corresponding HDvsnprintf that
is able to print hsize_t types. These are now printed with the aid of H5_PRINTF_LL_WIDTH.
Fix 3: Intermixed output fix
Intermixed output would occur on some machines (although I haven't seen it happen for a while) due to the unpredictability of the underlying network
and the speed at which various message would travel. This has been fixed by having all output send to the manager
for printing. The worker tasks no longer print the output themselves upon receipt of a token, but instead
send that data to the manager.
Platforms tested:
heping, eirene, tg-login (the only place that seems to still experience intermixed output every now and then)
Misc. update:
2005-03-10 02:38:36 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: print_incoming_data
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: special function that prints any output that has been sent to the manager
|
|
|
|
* and is currently sitting in the incoming message queue
|
[svn-r10170] Purpose:
Bug Fixes
Description:
Fixes for several bugs, including dumping of excess output to a temporary file, fix for printing
hsize_t datatype, and the long awaited fix for intermixed output.
Solution:
Fix 1: Overflow file
Previously, any output that a worker task made was buffered locally in memory, up to a point. Any
output beyond the size of the buffer (used to be 10k) was discarded. Now, the memory buffer size has been
changed to 1k and any output beyond this amount is sent a temporary file. This way, no output is lost
and memory usage is kept under control. The temporary file is deleted as soon as a worker task finishes
sending its contents to the manager.
Fix 2: hsize_t printing
Printing of the hsize_t datatype used to be handled by %Hu passed to HDfprintf. However, there is no corresponding HDvsnprintf that
is able to print hsize_t types. These are now printed with the aid of H5_PRINTF_LL_WIDTH.
Fix 3: Intermixed output fix
Intermixed output would occur on some machines (although I haven't seen it happen for a while) due to the unpredictability of the underlying network
and the speed at which various message would travel. This has been fixed by having all output send to the manager
for printing. The worker tasks no longer print the output themselves upon receipt of a token, but instead
send that data to the manager.
Platforms tested:
heping, eirene, tg-login (the only place that seems to still experience intermixed output every now and then)
Misc. update:
2005-03-10 02:38:36 +08:00
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Return: none
|
[svn-r10170] Purpose:
Bug Fixes
Description:
Fixes for several bugs, including dumping of excess output to a temporary file, fix for printing
hsize_t datatype, and the long awaited fix for intermixed output.
Solution:
Fix 1: Overflow file
Previously, any output that a worker task made was buffered locally in memory, up to a point. Any
output beyond the size of the buffer (used to be 10k) was discarded. Now, the memory buffer size has been
changed to 1k and any output beyond this amount is sent a temporary file. This way, no output is lost
and memory usage is kept under control. The temporary file is deleted as soon as a worker task finishes
sending its contents to the manager.
Fix 2: hsize_t printing
Printing of the hsize_t datatype used to be handled by %Hu passed to HDfprintf. However, there is no corresponding HDvsnprintf that
is able to print hsize_t types. These are now printed with the aid of H5_PRINTF_LL_WIDTH.
Fix 3: Intermixed output fix
Intermixed output would occur on some machines (although I haven't seen it happen for a while) due to the unpredictability of the underlying network
and the speed at which various message would travel. This has been fixed by having all output send to the manager
for printing. The worker tasks no longer print the output themselves upon receipt of a token, but instead
send that data to the manager.
Platforms tested:
heping, eirene, tg-login (the only place that seems to still experience intermixed output every now and then)
Misc. update:
2005-03-10 02:38:36 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2017-10-14 05:34:01 +08:00
|
|
|
static void
|
|
|
|
print_incoming_data(void)
|
[svn-r10170] Purpose:
Bug Fixes
Description:
Fixes for several bugs, including dumping of excess output to a temporary file, fix for printing
hsize_t datatype, and the long awaited fix for intermixed output.
Solution:
Fix 1: Overflow file
Previously, any output that a worker task made was buffered locally in memory, up to a point. Any
output beyond the size of the buffer (used to be 10k) was discarded. Now, the memory buffer size has been
changed to 1k and any output beyond this amount is sent a temporary file. This way, no output is lost
and memory usage is kept under control. The temporary file is deleted as soon as a worker task finishes
sending its contents to the manager.
Fix 2: hsize_t printing
Printing of the hsize_t datatype used to be handled by %Hu passed to HDfprintf. However, there is no corresponding HDvsnprintf that
is able to print hsize_t types. These are now printed with the aid of H5_PRINTF_LL_WIDTH.
Fix 3: Intermixed output fix
Intermixed output would occur on some machines (although I haven't seen it happen for a while) due to the unpredictability of the underlying network
and the speed at which various message would travel. This has been fixed by having all output send to the manager
for printing. The worker tasks no longer print the output themselves upon receipt of a token, but instead
send that data to the manager.
Platforms tested:
heping, eirene, tg-login (the only place that seems to still experience intermixed output every now and then)
Misc. update:
2005-03-10 02:38:36 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
char data[PRINT_DATA_MAX_SIZE + 1];
|
|
|
|
int incomingMessage;
|
2010-02-17 03:43:05 +08:00
|
|
|
MPI_Status Status;
|
|
|
|
|
2017-10-14 05:34:01 +08:00
|
|
|
do {
|
2010-02-17 03:43:05 +08:00
|
|
|
MPI_Iprobe(MPI_ANY_SOURCE, MPI_TAG_PRINT_DATA, MPI_COMM_WORLD, &incomingMessage, &Status);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (incomingMessage) {
|
|
|
|
HDmemset(data, 0, PRINT_DATA_MAX_SIZE + 1);
|
|
|
|
MPI_Recv(data, PRINT_DATA_MAX_SIZE, MPI_CHAR, Status.MPI_SOURCE, MPI_TAG_PRINT_DATA,
|
|
|
|
MPI_COMM_WORLD, &Status);
|
2010-02-17 03:43:05 +08:00
|
|
|
|
2019-08-16 05:46:00 +08:00
|
|
|
HDprintf("%s", data);
|
2010-02-17 03:43:05 +08:00
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
} while (incomingMessage);
|
[svn-r10170] Purpose:
Bug Fixes
Description:
Fixes for several bugs, including dumping of excess output to a temporary file, fix for printing
hsize_t datatype, and the long awaited fix for intermixed output.
Solution:
Fix 1: Overflow file
Previously, any output that a worker task made was buffered locally in memory, up to a point. Any
output beyond the size of the buffer (used to be 10k) was discarded. Now, the memory buffer size has been
changed to 1k and any output beyond this amount is sent a temporary file. This way, no output is lost
and memory usage is kept under control. The temporary file is deleted as soon as a worker task finishes
sending its contents to the manager.
Fix 2: hsize_t printing
Printing of the hsize_t datatype used to be handled by %Hu passed to HDfprintf. However, there is no corresponding HDvsnprintf that
is able to print hsize_t types. These are now printed with the aid of H5_PRINTF_LL_WIDTH.
Fix 3: Intermixed output fix
Intermixed output would occur on some machines (although I haven't seen it happen for a while) due to the unpredictability of the underlying network
and the speed at which various message would travel. This has been fixed by having all output send to the manager
for printing. The worker tasks no longer print the output themselves upon receipt of a token, but instead
send that data to the manager.
Platforms tested:
heping, eirene, tg-login (the only place that seems to still experience intermixed output every now and then)
Misc. update:
2005-03-10 02:38:36 +08:00
|
|
|
}
|
2005-02-10 02:19:54 +08:00
|
|
|
#endif
|
|
|
|
|
2010-02-19 00:51:12 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: is_valid_options
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: check if options are valid
|
2010-02-19 00:51:12 +08:00
|
|
|
*
|
2017-01-17 23:55:15 +08:00
|
|
|
* Return:
|
2017-10-14 05:34:01 +08:00
|
|
|
* 1 : Valid
|
|
|
|
* 0 : Not valid
|
2010-02-19 00:51:12 +08:00
|
|
|
*------------------------------------------------------------------------*/
|
2017-10-14 05:34:01 +08:00
|
|
|
static int
|
2017-10-17 06:26:23 +08:00
|
|
|
is_valid_options(diff_opt_t *opts)
|
2010-02-19 00:51:12 +08:00
|
|
|
{
|
2017-10-14 05:34:01 +08:00
|
|
|
int ret_value = 1; /* init to valid */
|
2010-02-19 00:51:12 +08:00
|
|
|
|
|
|
|
/*-----------------------------------------------
|
|
|
|
* no -q(quiet) with -v (verbose) or -r (report) */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_quiet && (opts->mode_verbose || opts->mode_report)) {
|
2010-02-19 00:51:12 +08:00
|
|
|
parallel_print("Error: -q (quiet mode) cannot be added to verbose or report modes\n");
|
2019-12-28 13:02:26 +08:00
|
|
|
opts->err_stat = H5DIFF_ERR;
|
|
|
|
H5TOOLS_GOTO_DONE(0);
|
2010-02-19 00:51:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------------------
|
2010-05-22 04:12:22 +08:00
|
|
|
* only allow --no-dangling-links along with --follow-symlinks */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->no_dangle_links && !opts->follow_links) {
|
2010-05-22 04:12:22 +08:00
|
|
|
parallel_print("Error: --no-dangling-links must be used along with --follow-symlinks option.\n");
|
2019-12-28 13:02:26 +08:00
|
|
|
opts->err_stat = H5DIFF_ERR;
|
|
|
|
H5TOOLS_GOTO_DONE(0);
|
2010-02-19 00:51:12 +08:00
|
|
|
}
|
|
|
|
|
2017-10-14 05:34:01 +08:00
|
|
|
done:
|
|
|
|
return ret_value;
|
2010-02-19 00:51:12 +08:00
|
|
|
}
|
|
|
|
|
2010-09-17 05:46:16 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: is_exclude_path
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: check if 'paths' are part of exclude path list
|
2010-09-17 05:46:16 +08:00
|
|
|
*
|
2017-01-17 23:55:15 +08:00
|
|
|
* Return:
|
2017-10-14 05:34:01 +08:00
|
|
|
* 1 - excluded path
|
|
|
|
* 0 - not excluded path
|
2010-09-17 05:46:16 +08:00
|
|
|
*------------------------------------------------------------------------*/
|
2017-10-14 05:34:01 +08:00
|
|
|
static int
|
2020-09-30 22:27:10 +08:00
|
|
|
is_exclude_path(char *path, h5trav_type_t type, diff_opt_t *opts)
|
2010-09-17 05:46:16 +08:00
|
|
|
{
|
2020-07-16 00:20:16 +08:00
|
|
|
struct exclude_path_list *exclude_path_ptr;
|
2020-09-30 22:27:10 +08:00
|
|
|
int ret_cmp;
|
|
|
|
int ret_value = 0;
|
2010-09-17 05:46:16 +08:00
|
|
|
|
|
|
|
/* check if exclude path option is given */
|
2017-10-17 06:26:23 +08:00
|
|
|
if (!opts->exclude_path)
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_GOTO_DONE(0);
|
2010-09-17 05:46:16 +08:00
|
|
|
|
|
|
|
/* assign to local exclude list pointer */
|
2017-10-17 06:26:23 +08:00
|
|
|
exclude_path_ptr = opts->exclude;
|
2010-09-17 05:46:16 +08:00
|
|
|
|
|
|
|
/* search objects in exclude list */
|
2017-10-14 05:34:01 +08:00
|
|
|
while (NULL != exclude_path_ptr) {
|
2022-08-11 04:57:26 +08:00
|
|
|
/* if exclude path is in group, exclude its members as well */
|
2017-10-14 05:34:01 +08:00
|
|
|
if (exclude_path_ptr->obj_type == H5TRAV_TYPE_GROUP) {
|
2020-09-30 22:27:10 +08:00
|
|
|
ret_cmp = HDstrncmp(exclude_path_ptr->obj_path, path, HDstrlen(exclude_path_ptr->obj_path));
|
|
|
|
if (ret_cmp == 0) { /* found matching members */
|
[svn-r23395] Description:
Bring Coverity changes from branch to trunk:
r20682:
fixed coverity:
76, 77, 635, 636, 1164, 1165, 1166, 1121, 1122, 1117, 1343
Tested on:
Mac OSX/64 10.8.3 (amazon) w/C++ & FORTRAN
(too minor to require h5committest)
2013-03-20 11:44:28 +08:00
|
|
|
size_t len_grp;
|
|
|
|
|
2017-01-17 23:55:15 +08:00
|
|
|
/* check if given path belong to an excluding group, if so
|
2010-09-17 05:46:16 +08:00
|
|
|
* exclude it as well.
|
|
|
|
* This verifies if “/grp1/dset1” is only under “/grp1”, but
|
2017-01-17 23:55:15 +08:00
|
|
|
* not under “/grp1xxx/” group.
|
|
|
|
*/
|
2010-09-17 05:46:16 +08:00
|
|
|
len_grp = HDstrlen(exclude_path_ptr->obj_path);
|
2017-10-14 05:34:01 +08:00
|
|
|
if (path[len_grp] == '/') {
|
2010-09-17 05:46:16 +08:00
|
|
|
/* belong to excluded group! */
|
2017-10-14 05:34:01 +08:00
|
|
|
ret_value = 1;
|
2020-09-30 22:27:10 +08:00
|
|
|
break; /* while */
|
2010-09-17 05:46:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* exclude target is not group, just exclude the object */
|
2017-10-14 05:34:01 +08:00
|
|
|
else {
|
2010-09-21 06:11:50 +08:00
|
|
|
ret_cmp = HDstrcmp(exclude_path_ptr->obj_path, path);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (ret_cmp == 0) { /* found matching object */
|
2010-09-17 05:46:16 +08:00
|
|
|
/* excluded non-group object */
|
2017-10-14 05:34:01 +08:00
|
|
|
ret_value = 1;
|
2020-07-16 00:20:16 +08:00
|
|
|
/* remember the type of this matching object.
|
2017-01-17 23:55:15 +08:00
|
|
|
* if it's group, it can be used for excluding its member
|
2012-03-22 05:00:15 +08:00
|
|
|
* objects in this while() loop */
|
2010-09-21 06:11:50 +08:00
|
|
|
exclude_path_ptr->obj_type = type;
|
2010-09-17 05:46:16 +08:00
|
|
|
break; /* while */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exclude_path_ptr = exclude_path_ptr->next;
|
|
|
|
}
|
|
|
|
|
2017-10-14 05:34:01 +08:00
|
|
|
done:
|
2020-09-30 22:27:10 +08:00
|
|
|
return ret_value;
|
2010-09-17 05:46:16 +08:00
|
|
|
}
|
|
|
|
|
2020-07-16 00:20:16 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: is_exclude_attr
|
|
|
|
*
|
|
|
|
* Purpose: check if 'paths' are part of exclude path list
|
|
|
|
*
|
|
|
|
* Return:
|
|
|
|
* 1 - excluded path
|
|
|
|
* 0 - not excluded path
|
|
|
|
*------------------------------------------------------------------------*/
|
|
|
|
static int
|
2020-09-30 22:27:10 +08:00
|
|
|
is_exclude_attr(const char *path, h5trav_type_t type, diff_opt_t *opts)
|
2020-07-16 00:20:16 +08:00
|
|
|
{
|
|
|
|
struct exclude_path_list *exclude_ptr;
|
2020-09-30 22:27:10 +08:00
|
|
|
int ret_cmp;
|
|
|
|
int ret_value = 0;
|
2020-07-16 00:20:16 +08:00
|
|
|
|
|
|
|
/* check if exclude attr option is given */
|
|
|
|
if (!opts->exclude_attr_path)
|
|
|
|
H5TOOLS_GOTO_DONE(0);
|
|
|
|
|
|
|
|
/* assign to local exclude list pointer */
|
|
|
|
exclude_ptr = opts->exclude_attr;
|
|
|
|
|
|
|
|
/* search objects in exclude list */
|
|
|
|
while (NULL != exclude_ptr) {
|
2022-08-11 04:57:26 +08:00
|
|
|
/* if exclude path is in group, exclude its members as well */
|
2020-07-16 00:20:16 +08:00
|
|
|
if (exclude_ptr->obj_type == H5TRAV_TYPE_GROUP) {
|
2020-09-30 22:27:10 +08:00
|
|
|
ret_cmp = HDstrncmp(exclude_ptr->obj_path, path, HDstrlen(exclude_ptr->obj_path));
|
|
|
|
if (ret_cmp == 0) { /* found matching members */
|
2020-07-16 00:20:16 +08:00
|
|
|
size_t len_grp;
|
|
|
|
|
|
|
|
/* check if given path belong to an excluding group, if so
|
|
|
|
* exclude it as well.
|
|
|
|
* This verifies if “/grp1/dset1” is only under “/grp1”, but
|
|
|
|
* not under “/grp1xxx/” group.
|
|
|
|
*/
|
|
|
|
len_grp = HDstrlen(exclude_ptr->obj_path);
|
|
|
|
if (path[len_grp] == '/') {
|
|
|
|
/* belong to excluded group! */
|
|
|
|
ret_value = 1;
|
2020-09-30 22:27:10 +08:00
|
|
|
break; /* while */
|
2020-07-16 00:20:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* exclude target is not group, just exclude the object */
|
|
|
|
else {
|
|
|
|
ret_cmp = HDstrcmp(exclude_ptr->obj_path, path);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (ret_cmp == 0) { /* found matching object */
|
2020-07-16 00:20:16 +08:00
|
|
|
/* excluded non-group object */
|
|
|
|
ret_value = 1;
|
|
|
|
/* remember the type of this matching object.
|
|
|
|
* if it's group, it can be used for excluding its member
|
|
|
|
* objects in this while() loop */
|
|
|
|
exclude_ptr->obj_type = type;
|
|
|
|
break; /* while */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exclude_ptr = exclude_ptr->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
2020-09-30 22:27:10 +08:00
|
|
|
return ret_value;
|
2020-07-16 00:20:16 +08:00
|
|
|
}
|
|
|
|
|
2010-09-17 05:46:16 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: free_exclude_path_list
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: free exclude object list from diff options
|
2010-09-17 05:46:16 +08:00
|
|
|
*------------------------------------------------------------------------*/
|
2017-10-14 05:34:01 +08:00
|
|
|
static void
|
2017-10-17 06:26:23 +08:00
|
|
|
free_exclude_path_list(diff_opt_t *opts)
|
2010-09-17 05:46:16 +08:00
|
|
|
{
|
2017-10-17 06:26:23 +08:00
|
|
|
struct exclude_path_list *curr = opts->exclude;
|
2017-10-14 05:34:01 +08:00
|
|
|
struct exclude_path_list *next;
|
2010-09-17 05:46:16 +08:00
|
|
|
|
2017-10-14 05:34:01 +08:00
|
|
|
while (NULL != curr) {
|
2010-09-17 05:46:16 +08:00
|
|
|
next = curr->next;
|
|
|
|
HDfree(curr);
|
|
|
|
curr = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-16 00:20:16 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: free_exclude_attr_list
|
|
|
|
*
|
|
|
|
* Purpose: free exclude object attribute list from diff options
|
|
|
|
*------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
free_exclude_attr_list(diff_opt_t *opts)
|
|
|
|
{
|
|
|
|
struct exclude_path_list *curr = opts->exclude_attr;
|
|
|
|
struct exclude_path_list *next;
|
|
|
|
|
|
|
|
while (NULL != curr) {
|
|
|
|
next = curr->next;
|
|
|
|
HDfree(curr);
|
|
|
|
curr = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: build_match_list
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: get list of matching path_name from info1 and info2
|
2010-09-17 01:48:06 +08:00
|
|
|
*
|
|
|
|
* Note:
|
2017-10-14 05:34:01 +08:00
|
|
|
* Find common objects; the algorithm used for this search is the
|
|
|
|
* cosequential match algorithm and is described in
|
|
|
|
* Folk, Michael; Zoellick, Bill. (1992). File Structures. Addison-Wesley.
|
|
|
|
* Moved out from diff_match() to make code more flexible.
|
2010-09-17 01:48:06 +08:00
|
|
|
*
|
|
|
|
* Parameter:
|
2017-10-14 05:34:01 +08:00
|
|
|
* table_out [OUT] : return the list
|
2010-09-17 01:48:06 +08:00
|
|
|
*------------------------------------------------------------------------*/
|
2017-10-14 05:34:01 +08:00
|
|
|
static void
|
2020-09-30 22:27:10 +08:00
|
|
|
build_match_list(const char *objname1, trav_info_t *info1, const char *objname2, trav_info_t *info2,
|
|
|
|
trav_table_t **table_out, diff_opt_t *opts)
|
2010-09-17 01:48:06 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
size_t curr1 = 0;
|
|
|
|
size_t curr2 = 0;
|
|
|
|
unsigned infile[2];
|
2022-07-27 05:45:46 +08:00
|
|
|
char *path1_lp = NULL;
|
|
|
|
char *path2_lp = NULL;
|
2010-09-21 06:11:50 +08:00
|
|
|
h5trav_type_t type1_l;
|
|
|
|
h5trav_type_t type2_l;
|
2020-09-30 22:27:10 +08:00
|
|
|
size_t path1_offset = 0;
|
|
|
|
size_t path2_offset = 0;
|
|
|
|
int cmp;
|
2017-10-14 05:34:01 +08:00
|
|
|
trav_table_t *table = NULL;
|
2020-09-30 22:27:10 +08:00
|
|
|
size_t idx;
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2020-01-24 00:20:34 +08:00
|
|
|
H5TOOLS_START_DEBUG(" - errstat:%d", opts->err_stat);
|
2010-09-17 01:48:06 +08:00
|
|
|
/* init */
|
2020-01-17 05:29:34 +08:00
|
|
|
trav_table_init(info1->fid, &table);
|
2018-10-09 22:23:09 +08:00
|
|
|
if (table == NULL) {
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_INFO("Cannot create traverse table");
|
|
|
|
H5TOOLS_GOTO_DONE_NO_RET();
|
2018-10-09 22:23:09 +08:00
|
|
|
}
|
2019-12-28 16:16:44 +08:00
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
/*
|
|
|
|
* This is necessary for the case that given objects are group and
|
|
|
|
* have different names (ex: obj1 is /grp1 and obj2 is /grp5).
|
2017-10-14 05:34:01 +08:00
|
|
|
* All the objects belong to given groups are the candidates.
|
2010-09-17 01:48:06 +08:00
|
|
|
* So prepare to compare paths without the group names.
|
|
|
|
*/
|
2020-07-16 00:20:16 +08:00
|
|
|
H5TOOLS_DEBUG("objname1 = %s objname2 = %s ", objname1, objname2);
|
2012-08-04 04:11:36 +08:00
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
/* if obj1 is not root */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (HDstrcmp(objname1, "/") != 0)
|
2010-09-17 01:48:06 +08:00
|
|
|
path1_offset = HDstrlen(objname1);
|
|
|
|
/* if obj2 is not root */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (HDstrcmp(objname2, "/") != 0)
|
2010-09-17 01:48:06 +08:00
|
|
|
path2_offset = HDstrlen(objname2);
|
|
|
|
|
|
|
|
/*--------------------------------------------------
|
2020-09-30 22:27:10 +08:00
|
|
|
* build the list
|
|
|
|
*/
|
|
|
|
while (curr1 < info1->nused && curr2 < info2->nused) {
|
2010-09-17 01:48:06 +08:00
|
|
|
path1_lp = (info1->paths[curr1].path) + path1_offset;
|
|
|
|
path2_lp = (info2->paths[curr2].path) + path2_offset;
|
2020-09-30 22:27:10 +08:00
|
|
|
type1_l = info1->paths[curr1].type;
|
|
|
|
type2_l = info2->paths[curr2].type;
|
2017-01-17 23:55:15 +08:00
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
/* criteria is string compare */
|
|
|
|
cmp = HDstrcmp(path1_lp, path2_lp);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (cmp == 0) {
|
|
|
|
if (!is_exclude_path(path1_lp, type1_l, opts)) {
|
2010-09-17 05:46:16 +08:00
|
|
|
infile[0] = 1;
|
|
|
|
infile[1] = 1;
|
|
|
|
trav_table_addflags(infile, path1_lp, info1->paths[curr1].type, table);
|
2011-05-07 06:02:24 +08:00
|
|
|
/* if the two point to the same target object,
|
|
|
|
* mark that in table */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (info1->paths[curr1].fileno == info2->paths[curr2].fileno) {
|
2020-01-17 05:29:34 +08:00
|
|
|
int token_cmp;
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Otoken_cmp(info1->fid, &info1->paths[curr1].obj_token,
|
|
|
|
&info2->paths[curr2].obj_token, &token_cmp) < 0) {
|
2020-01-17 05:29:34 +08:00
|
|
|
H5TOOLS_INFO("Failed to compare object tokens");
|
|
|
|
opts->err_stat = H5DIFF_ERR;
|
|
|
|
H5TOOLS_GOTO_DONE_NO_RET();
|
|
|
|
}
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (!token_cmp) {
|
|
|
|
idx = table->nobjs - 1;
|
2020-01-17 05:29:34 +08:00
|
|
|
table->objs[idx].is_same_trgobj = 1;
|
|
|
|
}
|
2011-05-07 06:02:24 +08:00
|
|
|
}
|
2010-09-17 05:46:16 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
curr1++;
|
|
|
|
curr2++;
|
|
|
|
} /* end if */
|
2020-09-30 22:27:10 +08:00
|
|
|
else if (cmp < 0) {
|
|
|
|
if (!is_exclude_path(path1_lp, type1_l, opts)) {
|
2010-09-17 05:46:16 +08:00
|
|
|
infile[0] = 1;
|
|
|
|
infile[1] = 0;
|
|
|
|
trav_table_addflags(infile, path1_lp, info1->paths[curr1].type, table);
|
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
curr1++;
|
|
|
|
} /* end else-if */
|
2017-10-14 05:34:01 +08:00
|
|
|
else {
|
2017-10-17 06:26:23 +08:00
|
|
|
if (!is_exclude_path(path2_lp, type2_l, opts)) {
|
2010-09-17 05:46:16 +08:00
|
|
|
infile[0] = 0;
|
|
|
|
infile[1] = 1;
|
|
|
|
trav_table_addflags(infile, path2_lp, info2->paths[curr2].type, table);
|
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
curr2++;
|
|
|
|
} /* end else */
|
2020-09-30 22:27:10 +08:00
|
|
|
} /* end while */
|
2010-09-17 01:48:06 +08:00
|
|
|
|
|
|
|
/* list1 did not end */
|
|
|
|
infile[0] = 1;
|
|
|
|
infile[1] = 0;
|
2020-09-30 22:27:10 +08:00
|
|
|
while (curr1 < info1->nused) {
|
2012-03-22 05:00:15 +08:00
|
|
|
path1_lp = (info1->paths[curr1].path) + path1_offset;
|
2020-09-30 22:27:10 +08:00
|
|
|
type1_l = info1->paths[curr1].type;
|
2012-03-22 05:00:15 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (!is_exclude_path(path1_lp, type1_l, opts)) {
|
2010-09-17 05:46:16 +08:00
|
|
|
trav_table_addflags(infile, path1_lp, info1->paths[curr1].type, table);
|
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
curr1++;
|
|
|
|
} /* end while */
|
|
|
|
|
|
|
|
/* list2 did not end */
|
|
|
|
infile[0] = 0;
|
|
|
|
infile[1] = 1;
|
2020-09-30 22:27:10 +08:00
|
|
|
while (curr2 < info2->nused) {
|
2012-03-22 05:00:15 +08:00
|
|
|
path2_lp = (info2->paths[curr2].path) + path2_offset;
|
2020-09-30 22:27:10 +08:00
|
|
|
type2_l = info2->paths[curr2].type;
|
2012-03-22 05:00:15 +08:00
|
|
|
|
2017-10-17 06:26:23 +08:00
|
|
|
if (!is_exclude_path(path2_lp, type2_l, opts)) {
|
2010-09-17 05:46:16 +08:00
|
|
|
trav_table_addflags(infile, path2_lp, info2->paths[curr2].type, table);
|
2017-01-17 23:55:15 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
curr2++;
|
|
|
|
} /* end while */
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
free_exclude_path_list(opts);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2018-10-09 22:23:09 +08:00
|
|
|
done:
|
2010-09-17 01:48:06 +08:00
|
|
|
*table_out = table;
|
2019-12-20 06:29:35 +08:00
|
|
|
|
2021-05-06 06:08:10 +08:00
|
|
|
H5TOOLS_ENDDEBUG(" ");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: trav_grp_objs
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: Call back function from h5trav_visit().
|
2010-09-17 01:48:06 +08:00
|
|
|
*------------------------------------------------------------------------*/
|
2017-10-14 05:34:01 +08:00
|
|
|
static herr_t
|
2020-09-30 22:27:10 +08:00
|
|
|
trav_grp_objs(const char *path, const H5O_info2_t *oinfo, const char *already_visited, void *udata)
|
2010-09-17 01:48:06 +08:00
|
|
|
{
|
|
|
|
trav_info_visit_obj(path, oinfo, already_visited, udata);
|
|
|
|
|
|
|
|
return 0;
|
2017-01-17 23:55:15 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: trav_grp_symlinks
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: Call back function from h5trav_visit().
|
|
|
|
* Track and extra checkings while visiting all symbolic-links.
|
2010-09-17 01:48:06 +08:00
|
|
|
*------------------------------------------------------------------------*/
|
2017-10-14 05:34:01 +08:00
|
|
|
static herr_t
|
2020-01-17 05:29:34 +08:00
|
|
|
trav_grp_symlinks(const char *path, const H5L_info2_t *linfo, void *udata)
|
2017-01-17 23:55:15 +08:00
|
|
|
{
|
2022-07-27 05:45:46 +08:00
|
|
|
trav_info_t *tinfo = (trav_info_t *)udata;
|
|
|
|
diff_opt_t *opts = (diff_opt_t *)tinfo->opts;
|
2010-09-17 01:48:06 +08:00
|
|
|
h5tool_link_info_t lnk_info;
|
2022-07-27 05:45:46 +08:00
|
|
|
const char *ext_fname;
|
|
|
|
const char *ext_path;
|
2020-09-30 22:27:10 +08:00
|
|
|
herr_t ret_value = SUCCEED;
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2021-05-06 06:08:10 +08:00
|
|
|
H5TOOLS_START_DEBUG(" ");
|
2010-09-17 01:48:06 +08:00
|
|
|
/* init linkinfo struct */
|
2012-02-24 03:08:09 +08:00
|
|
|
HDmemset(&lnk_info, 0, sizeof(h5tool_link_info_t));
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2017-09-01 04:58:37 +08:00
|
|
|
if (!opts->follow_links) {
|
2010-09-17 01:48:06 +08:00
|
|
|
trav_info_visit_lnk(path, linfo, tinfo);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(SUCCEED);
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
switch (linfo->type) {
|
2014-05-25 13:55:39 +08:00
|
|
|
case H5L_TYPE_SOFT:
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((ret_value = H5tools_get_symlink_info(tinfo->fid, path, &lnk_info, opts->follow_links)) < 0) {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_GOTO_DONE(FAIL);
|
2017-10-14 05:34:01 +08:00
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else if (ret_value == 0) {
|
2019-12-28 13:02:26 +08:00
|
|
|
/* no dangling link option given and detect dangling link */
|
|
|
|
tinfo->symlink_visited.dangle_link = TRUE;
|
2014-05-25 13:55:39 +08:00
|
|
|
trav_info_visit_lnk(path, linfo, tinfo);
|
|
|
|
if (opts->no_dangle_links)
|
2019-12-28 13:02:26 +08:00
|
|
|
opts->err_stat = H5DIFF_ERR; /* make dangling link is error */
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(SUCCEED);
|
2014-05-25 13:55:39 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2017-01-17 23:55:15 +08:00
|
|
|
/* check if already visit the target object */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (symlink_is_visited(&(tinfo->symlink_visited), linfo->type, NULL, lnk_info.trg_path))
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(SUCCEED);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2014-05-25 13:55:39 +08:00
|
|
|
/* add this link as visited link */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (symlink_visit_add(&(tinfo->symlink_visited), linfo->type, NULL, lnk_info.trg_path) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(SUCCEED);
|
2017-01-17 23:55:15 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (h5trav_visit(tinfo->fid, path, TRUE, TRUE, trav_grp_objs, trav_grp_symlinks, tinfo,
|
|
|
|
H5O_INFO_BASIC) < 0) {
|
2014-05-25 13:55:39 +08:00
|
|
|
parallel_print("Error: Could not get file contents\n");
|
2019-12-28 13:02:26 +08:00
|
|
|
opts->err_stat = H5DIFF_ERR;
|
|
|
|
H5TOOLS_GOTO_ERROR(FAIL, "Error: Could not get file contents");
|
2014-05-25 13:55:39 +08:00
|
|
|
}
|
|
|
|
break;
|
2017-01-17 23:55:15 +08:00
|
|
|
|
|
|
|
case H5L_TYPE_EXTERNAL:
|
2017-10-14 05:34:01 +08:00
|
|
|
if ((ret_value = H5tools_get_symlink_info(tinfo->fid, path, &lnk_info, opts->follow_links)) < 0) {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_GOTO_DONE(FAIL);
|
2017-10-14 05:34:01 +08:00
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else if (ret_value == 0) {
|
2020-09-30 22:27:10 +08:00
|
|
|
/* no dangling link option given and detect dangling link */
|
2014-05-25 13:55:39 +08:00
|
|
|
tinfo->symlink_visited.dangle_link = TRUE;
|
|
|
|
trav_info_visit_lnk(path, linfo, tinfo);
|
|
|
|
if (opts->no_dangle_links)
|
2019-12-28 13:02:26 +08:00
|
|
|
opts->err_stat = H5DIFF_ERR; /* make dangling link is error */
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(SUCCEED);
|
2014-05-25 13:55:39 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Lunpack_elink_val(lnk_info.trg_path, linfo->u.val_size, NULL, &ext_fname, &ext_path) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(SUCCEED);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2017-01-17 23:55:15 +08:00
|
|
|
/* check if already visit the target object */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (symlink_is_visited(&(tinfo->symlink_visited), linfo->type, ext_fname, ext_path))
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(SUCCEED);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2014-05-25 13:55:39 +08:00
|
|
|
/* add this link as visited link */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (symlink_visit_add(&(tinfo->symlink_visited), linfo->type, ext_fname, ext_path) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(SUCCEED);
|
2017-01-17 23:55:15 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (h5trav_visit(tinfo->fid, path, TRUE, TRUE, trav_grp_objs, trav_grp_symlinks, tinfo,
|
|
|
|
H5O_INFO_BASIC) < 0) {
|
2014-05-25 13:55:39 +08:00
|
|
|
parallel_print("Error: Could not get file contents\n");
|
2019-12-28 13:02:26 +08:00
|
|
|
opts->err_stat = H5DIFF_ERR;
|
|
|
|
H5TOOLS_GOTO_ERROR(FAIL, "Error: Could not get file contents\n");
|
2014-05-25 13:55:39 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case H5L_TYPE_HARD:
|
|
|
|
case H5L_TYPE_MAX:
|
|
|
|
case H5L_TYPE_ERROR:
|
|
|
|
default:
|
|
|
|
parallel_print("Error: Invalid link type\n");
|
2019-12-28 13:02:26 +08:00
|
|
|
opts->err_stat = H5DIFF_ERR;
|
|
|
|
H5TOOLS_GOTO_ERROR(FAIL, "Error: Invalid link type");
|
2014-05-25 13:55:39 +08:00
|
|
|
break;
|
2010-09-17 01:48:06 +08:00
|
|
|
} /* end of switch */
|
|
|
|
|
2017-01-17 23:55:15 +08:00
|
|
|
done:
|
2010-09-17 01:48:06 +08:00
|
|
|
if (lnk_info.trg_path)
|
2014-11-01 02:11:42 +08:00
|
|
|
HDfree(lnk_info.trg_path);
|
2021-05-06 06:08:10 +08:00
|
|
|
H5TOOLS_ENDDEBUG(" ");
|
2017-10-14 05:34:01 +08:00
|
|
|
return ret_value;
|
2017-01-17 23:55:15 +08:00
|
|
|
}
|
2010-02-19 00:51:12 +08:00
|
|
|
|
2002-10-10 00:33:05 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2003-10-23 05:30:19 +08:00
|
|
|
* Function: h5diff
|
2002-10-10 00:33:05 +08:00
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: public function, can be called in an application program.
|
|
|
|
* return differences between 2 HDF5 files
|
2002-10-10 00:33:05 +08:00
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Return: Number of differences found.
|
2002-10-10 00:33:05 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2017-10-14 05:34:01 +08:00
|
|
|
hsize_t
|
2020-01-24 00:20:34 +08:00
|
|
|
h5diff(const char *fname1, const char *fname2, const char *objname1, const char *objname2, diff_opt_t *opts)
|
2002-10-10 00:33:05 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hid_t file1_id = H5I_INVALID_HID;
|
|
|
|
hid_t file2_id = H5I_INVALID_HID;
|
|
|
|
hid_t fapl1_id = H5P_DEFAULT;
|
|
|
|
hid_t fapl2_id = H5P_DEFAULT;
|
|
|
|
char filenames[2][MAX_FILENAME];
|
|
|
|
hsize_t nfound = 0;
|
|
|
|
int l_ret1 = -1;
|
|
|
|
int l_ret2 = -1;
|
2022-07-27 05:45:46 +08:00
|
|
|
char *obj1fullname = NULL;
|
|
|
|
char *obj2fullname = NULL;
|
2020-09-30 22:27:10 +08:00
|
|
|
int both_objs_grp = 0;
|
2010-09-17 01:48:06 +08:00
|
|
|
/* init to group type */
|
|
|
|
h5trav_type_t obj1type = H5TRAV_TYPE_GROUP;
|
|
|
|
h5trav_type_t obj2type = H5TRAV_TYPE_GROUP;
|
|
|
|
/* for single object */
|
2020-09-30 22:27:10 +08:00
|
|
|
H5O_info2_t oinfo1, oinfo2; /* object info */
|
|
|
|
trav_info_t *info1_obj = NULL;
|
|
|
|
trav_info_t *info2_obj = NULL;
|
2010-09-17 01:48:06 +08:00
|
|
|
/* for group object */
|
2020-09-30 22:27:10 +08:00
|
|
|
trav_info_t *info1_grp = NULL;
|
|
|
|
trav_info_t *info2_grp = NULL;
|
2010-09-17 01:48:06 +08:00
|
|
|
/* local pointer */
|
2020-09-30 22:27:10 +08:00
|
|
|
trav_info_t *info1_lp = NULL;
|
|
|
|
trav_info_t *info2_lp = NULL;
|
2010-09-17 01:48:06 +08:00
|
|
|
/* link info from specified object */
|
2020-09-30 22:27:10 +08:00
|
|
|
H5L_info2_t src_linfo1;
|
|
|
|
H5L_info2_t src_linfo2;
|
2010-09-17 01:48:06 +08:00
|
|
|
/* link info from member object */
|
|
|
|
h5tool_link_info_t trg_linfo1;
|
|
|
|
h5tool_link_info_t trg_linfo2;
|
|
|
|
/* list for common objects */
|
|
|
|
trav_table_t *match_list = NULL;
|
2020-09-30 22:27:10 +08:00
|
|
|
diff_err_t ret_value = H5DIFF_NO_ERR;
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2021-05-06 06:08:10 +08:00
|
|
|
H5TOOLS_START_DEBUG(" ");
|
2010-09-17 01:48:06 +08:00
|
|
|
/* init filenames */
|
|
|
|
HDmemset(filenames, 0, MAX_FILENAME * 2);
|
|
|
|
/* init link info struct */
|
|
|
|
HDmemset(&trg_linfo1, 0, sizeof(h5tool_link_info_t));
|
|
|
|
HDmemset(&trg_linfo2, 0, sizeof(h5tool_link_info_t));
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* check invalid combination of options
|
|
|
|
*-----------------------------------------------------------------------*/
|
|
|
|
if (!is_valid_options(opts))
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_GOTO_DONE(0);
|
2010-02-19 00:51:12 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
opts->cmn_objs = 1; /* eliminate warning */
|
2019-12-28 13:02:26 +08:00
|
|
|
opts->err_stat = H5DIFF_NO_ERR; /* initialize error status */
|
2011-05-07 06:02:24 +08:00
|
|
|
|
2007-09-06 23:54:22 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2020-09-30 22:27:10 +08:00
|
|
|
* open the files first; if they are not valid, no point in continuing
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2017-10-14 05:34:01 +08:00
|
|
|
/* open file 1 */
|
2022-08-03 03:54:40 +08:00
|
|
|
if (opts->vfd_info[0].u.name) {
|
|
|
|
if ((fapl1_id = h5tools_get_fapl(H5P_DEFAULT, NULL, &(opts->vfd_info[0]))) < 0) {
|
|
|
|
parallel_print("h5diff: unable to create fapl for input file\n");
|
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "unable to create input fapl\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-30 02:28:12 +08:00
|
|
|
if (opts->custom_vol[0] || opts->custom_vfd[0]) {
|
2022-08-03 03:54:40 +08:00
|
|
|
if ((fapl1_id = h5tools_get_fapl(fapl1_id, opts->custom_vol[0] ? &(opts->vol_info[0]) : NULL,
|
2021-09-30 02:28:12 +08:00
|
|
|
opts->custom_vfd[0] ? &(opts->vfd_info[0]) : NULL)) < 0) {
|
2020-04-22 02:36:10 +08:00
|
|
|
parallel_print("h5diff: unable to create fapl for input file\n");
|
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "unable to create input fapl\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-30 02:28:12 +08:00
|
|
|
if ((file1_id = h5tools_fopen(fname1, H5F_ACC_RDONLY, fapl1_id, (fapl1_id != H5P_DEFAULT), NULL,
|
|
|
|
(size_t)0)) < 0) {
|
2017-10-14 05:34:01 +08:00
|
|
|
parallel_print("h5diff: <%s>: unable to open file\n", fname1);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "<%s>: unable to open file\n", fname1);
|
2020-04-22 02:36:10 +08:00
|
|
|
}
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("file1_id = %s", fname1);
|
2009-06-16 03:05:42 +08:00
|
|
|
|
2017-10-14 05:34:01 +08:00
|
|
|
/* open file 2 */
|
2022-08-03 03:54:40 +08:00
|
|
|
if (opts->vfd_info[1].u.name) {
|
|
|
|
if ((fapl2_id = h5tools_get_fapl(H5P_DEFAULT, NULL, &(opts->vfd_info[1]))) < 0) {
|
|
|
|
parallel_print("h5diff: unable to create fapl for output file\n");
|
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "unable to create output fapl\n");
|
|
|
|
}
|
|
|
|
}
|
2020-04-22 02:36:10 +08:00
|
|
|
|
2021-09-30 02:28:12 +08:00
|
|
|
if (opts->custom_vol[1] || opts->custom_vfd[1]) {
|
2022-08-03 03:54:40 +08:00
|
|
|
if ((fapl2_id = h5tools_get_fapl(fapl2_id, opts->custom_vol[1] ? &(opts->vol_info[1]) : NULL,
|
2021-09-30 02:28:12 +08:00
|
|
|
opts->custom_vfd[1] ? &(opts->vfd_info[1]) : NULL)) < 0) {
|
2020-04-22 02:36:10 +08:00
|
|
|
parallel_print("h5diff: unable to create fapl for output file\n");
|
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "unable to create output fapl\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-30 02:28:12 +08:00
|
|
|
if ((file2_id = h5tools_fopen(fname2, H5F_ACC_RDONLY, fapl2_id, (fapl2_id != H5P_DEFAULT), NULL,
|
|
|
|
(size_t)0)) < 0) {
|
2017-10-14 05:34:01 +08:00
|
|
|
parallel_print("h5diff: <%s>: unable to open file\n", fname2);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "<%s>: unable to open file\n", fname2);
|
2020-04-22 02:36:10 +08:00
|
|
|
}
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("file2_id = %s", fname2);
|
2007-09-06 23:54:22 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2020-09-30 22:27:10 +08:00
|
|
|
* Initialize the info structs
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2010-09-17 01:48:06 +08:00
|
|
|
trav_info_init(fname1, file1_id, &info1_obj);
|
|
|
|
trav_info_init(fname2, file2_id, &info2_obj);
|
2007-09-06 23:54:22 +08:00
|
|
|
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("trav_info_init initialized");
|
2010-09-17 01:48:06 +08:00
|
|
|
/* if any object is specified */
|
2017-09-01 04:58:37 +08:00
|
|
|
if (objname1) {
|
2010-09-17 01:48:06 +08:00
|
|
|
/* make the given object1 fullpath, start with "/" */
|
2021-03-11 02:42:35 +08:00
|
|
|
if (HDstrncmp(objname1, "/", 1) != 0) {
|
2014-05-25 13:55:39 +08:00
|
|
|
#ifdef H5_HAVE_ASPRINTF
|
|
|
|
/* Use the asprintf() routine, since it does what we're trying to do below */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (HDasprintf(&obj1fullname, "/%s", objname1) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "name buffer allocation failed");
|
2021-01-29 20:55:18 +08:00
|
|
|
#else /* H5_HAVE_ASPRINTF */
|
2014-05-25 13:55:39 +08:00
|
|
|
/* (malloc 2 more for "/" and end-of-line) */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((obj1fullname = (char *)HDmalloc(HDstrlen(objname1) + 2)) == NULL)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "name buffer allocation failed");
|
2017-10-14 05:34:01 +08:00
|
|
|
|
[svn-r23395] Description:
Bring Coverity changes from branch to trunk:
r20682:
fixed coverity:
76, 77, 635, 636, 1164, 1165, 1166, 1121, 1122, 1117, 1343
Tested on:
Mac OSX/64 10.8.3 (amazon) w/C++ & FORTRAN
(too minor to require h5committest)
2013-03-20 11:44:28 +08:00
|
|
|
HDstrcpy(obj1fullname, "/");
|
|
|
|
HDstrcat(obj1fullname, objname1);
|
2014-05-25 13:55:39 +08:00
|
|
|
#endif /* H5_HAVE_ASPRINTF */
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
else
|
2014-05-25 13:55:39 +08:00
|
|
|
obj1fullname = HDstrdup(objname1);
|
2020-07-16 00:20:16 +08:00
|
|
|
H5TOOLS_DEBUG("obj1fullname = %s", obj1fullname);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
|
|
|
/* make the given object2 fullpath, start with "/" */
|
2021-03-11 02:42:35 +08:00
|
|
|
if (HDstrncmp(objname2, "/", 1) != 0) {
|
2014-05-25 13:55:39 +08:00
|
|
|
#ifdef H5_HAVE_ASPRINTF
|
|
|
|
/* Use the asprintf() routine, since it does what we're trying to do below */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (HDasprintf(&obj2fullname, "/%s", objname2) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "name buffer allocation failed");
|
2021-01-29 20:55:18 +08:00
|
|
|
#else /* H5_HAVE_ASPRINTF */
|
2014-05-25 13:55:39 +08:00
|
|
|
/* (malloc 2 more for "/" and end-of-line) */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((obj2fullname = (char *)HDmalloc(HDstrlen(objname2) + 2)) == NULL)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "name buffer allocation failed");
|
[svn-r23395] Description:
Bring Coverity changes from branch to trunk:
r20682:
fixed coverity:
76, 77, 635, 636, 1164, 1165, 1166, 1121, 1122, 1117, 1343
Tested on:
Mac OSX/64 10.8.3 (amazon) w/C++ & FORTRAN
(too minor to require h5committest)
2013-03-20 11:44:28 +08:00
|
|
|
HDstrcpy(obj2fullname, "/");
|
|
|
|
HDstrcat(obj2fullname, objname2);
|
2014-05-25 13:55:39 +08:00
|
|
|
#endif /* H5_HAVE_ASPRINTF */
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
else
|
2014-05-25 13:55:39 +08:00
|
|
|
obj2fullname = HDstrdup(objname2);
|
2020-07-16 00:20:16 +08:00
|
|
|
H5TOOLS_DEBUG("obj2fullname = %s", obj2fullname);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
|
|
|
/*----------------------------------------------------------
|
|
|
|
* check if obj1 is root, group, single object or symlink
|
|
|
|
*/
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff check if obj1=%s is root, group, single object or symlink", obj1fullname);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (!HDstrcmp(obj1fullname, "/")) {
|
2010-09-17 01:48:06 +08:00
|
|
|
obj1type = H5TRAV_TYPE_GROUP;
|
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else {
|
2010-09-17 01:48:06 +08:00
|
|
|
/* check if link itself exist */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Lexists(file1_id, obj1fullname, H5P_DEFAULT) <= 0) {
|
|
|
|
parallel_print("Object <%s> could not be found in <%s>\n", obj1fullname, fname1);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "Error: Object could not be found");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
/* get info from link */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Lget_info2(file1_id, obj1fullname, &src_linfo1, H5P_DEFAULT) < 0) {
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("Unable to get link info from <%s>\n", obj1fullname);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Lget_info failed");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
info1_lp = info1_obj;
|
|
|
|
|
2017-01-17 23:55:15 +08:00
|
|
|
/*
|
2010-09-17 01:48:06 +08:00
|
|
|
* check the type of specified path for hard and symbolic links
|
|
|
|
*/
|
2020-09-30 22:27:10 +08:00
|
|
|
if (src_linfo1.type == H5L_TYPE_HARD) {
|
2014-05-25 13:55:39 +08:00
|
|
|
size_t idx;
|
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
/* optional data pass */
|
2020-09-30 22:27:10 +08:00
|
|
|
info1_obj->opts = (diff_opt_t *)opts;
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Oget_info_by_name3(file1_id, obj1fullname, &oinfo1, H5O_INFO_BASIC, H5P_DEFAULT) < 0) {
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("Error: Could not get file contents\n");
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "Error: Could not get file contents");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
2014-05-25 13:55:39 +08:00
|
|
|
obj1type = (h5trav_type_t)oinfo1.type;
|
2010-09-17 01:48:06 +08:00
|
|
|
trav_info_add(info1_obj, obj1fullname, obj1type);
|
2012-08-04 04:11:36 +08:00
|
|
|
idx = info1_obj->nused - 1;
|
2020-01-17 05:29:34 +08:00
|
|
|
HDmemcpy(&info1_obj->paths[idx].obj_token, &oinfo1.token, sizeof(H5O_token_t));
|
2012-08-04 04:11:36 +08:00
|
|
|
info1_obj->paths[idx].fileno = oinfo1.fileno;
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else if (src_linfo1.type == H5L_TYPE_SOFT) {
|
2010-09-17 01:48:06 +08:00
|
|
|
obj1type = H5TRAV_TYPE_LINK;
|
|
|
|
trav_info_add(info1_obj, obj1fullname, obj1type);
|
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else if (src_linfo1.type == H5L_TYPE_EXTERNAL) {
|
2010-09-17 01:48:06 +08:00
|
|
|
obj1type = H5TRAV_TYPE_UDLINK;
|
|
|
|
trav_info_add(info1_obj, obj1fullname, obj1type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*----------------------------------------------------------
|
|
|
|
* check if obj2 is root, group, single object or symlink
|
|
|
|
*/
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff check if obj2=%s is root, group, single object or symlink", obj2fullname);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (!HDstrcmp(obj2fullname, "/")) {
|
2010-09-17 01:48:06 +08:00
|
|
|
obj2type = H5TRAV_TYPE_GROUP;
|
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else {
|
2010-09-17 01:48:06 +08:00
|
|
|
/* check if link itself exist */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Lexists(file2_id, obj2fullname, H5P_DEFAULT) <= 0) {
|
|
|
|
parallel_print("Object <%s> could not be found in <%s>\n", obj2fullname, fname2);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "Error: Object could not be found");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
/* get info from link */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Lget_info2(file2_id, obj2fullname, &src_linfo2, H5P_DEFAULT) < 0) {
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("Unable to get link info from <%s>\n", obj2fullname);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Lget_info failed");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
info2_lp = info2_obj;
|
|
|
|
|
2017-01-17 23:55:15 +08:00
|
|
|
/*
|
2010-09-17 01:48:06 +08:00
|
|
|
* check the type of specified path for hard and symbolic links
|
|
|
|
*/
|
2020-09-30 22:27:10 +08:00
|
|
|
if (src_linfo2.type == H5L_TYPE_HARD) {
|
2014-05-25 13:55:39 +08:00
|
|
|
size_t idx;
|
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
/* optional data pass */
|
2020-09-30 22:27:10 +08:00
|
|
|
info2_obj->opts = (diff_opt_t *)opts;
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Oget_info_by_name3(file2_id, obj2fullname, &oinfo2, H5O_INFO_BASIC, H5P_DEFAULT) < 0) {
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("Error: Could not get file contents\n");
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "Error: Could not get file contents");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
2014-05-25 13:55:39 +08:00
|
|
|
obj2type = (h5trav_type_t)oinfo2.type;
|
2010-09-17 01:48:06 +08:00
|
|
|
trav_info_add(info2_obj, obj2fullname, obj2type);
|
2012-08-04 04:11:36 +08:00
|
|
|
idx = info2_obj->nused - 1;
|
2020-01-17 05:29:34 +08:00
|
|
|
HDmemcpy(&info2_obj->paths[idx].obj_token, &oinfo2.token, sizeof(H5O_token_t));
|
2012-08-04 04:11:36 +08:00
|
|
|
info2_obj->paths[idx].fileno = oinfo2.fileno;
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else if (src_linfo2.type == H5L_TYPE_SOFT) {
|
2010-09-17 01:48:06 +08:00
|
|
|
obj2type = H5TRAV_TYPE_LINK;
|
|
|
|
trav_info_add(info2_obj, obj2fullname, obj2type);
|
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else if (src_linfo2.type == H5L_TYPE_EXTERNAL) {
|
2010-09-17 01:48:06 +08:00
|
|
|
obj2type = H5TRAV_TYPE_UDLINK;
|
|
|
|
trav_info_add(info2_obj, obj2fullname, obj2type);
|
|
|
|
}
|
2017-01-17 23:55:15 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
/* if no object specified */
|
2017-09-01 04:58:37 +08:00
|
|
|
else {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff no object specified");
|
2010-09-17 01:48:06 +08:00
|
|
|
/* set root group */
|
2020-09-30 22:27:10 +08:00
|
|
|
obj1fullname = (char *)HDstrdup("/");
|
|
|
|
obj1type = H5TRAV_TYPE_GROUP;
|
|
|
|
obj2fullname = (char *)HDstrdup("/");
|
|
|
|
obj2type = H5TRAV_TYPE_GROUP;
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("get any symbolic links info - errstat:%d", opts->err_stat);
|
2012-03-10 04:34:37 +08:00
|
|
|
/* get any symbolic links info */
|
2017-09-01 04:58:37 +08:00
|
|
|
l_ret1 = H5tools_get_symlink_info(file1_id, obj1fullname, &trg_linfo1, opts->follow_links);
|
|
|
|
l_ret2 = H5tools_get_symlink_info(file2_id, obj2fullname, &trg_linfo2, opts->follow_links);
|
2012-03-10 04:34:37 +08:00
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
/*---------------------------------------------
|
2017-01-17 23:55:15 +08:00
|
|
|
* check for following symlinks
|
2010-09-17 01:48:06 +08:00
|
|
|
*/
|
2017-09-01 04:58:37 +08:00
|
|
|
if (opts->follow_links) {
|
2010-09-17 01:48:06 +08:00
|
|
|
/* pass how to handle printing warning to linkinfo option */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (print_warn(opts))
|
2010-09-17 01:48:06 +08:00
|
|
|
trg_linfo1.opt.msg_mode = trg_linfo2.opt.msg_mode = 1;
|
|
|
|
|
|
|
|
/*-------------------------------
|
|
|
|
* check symbolic link (object1)
|
|
|
|
*/
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff check symbolic link (object1)");
|
2010-09-17 01:48:06 +08:00
|
|
|
/* dangling link */
|
2017-09-01 04:58:37 +08:00
|
|
|
if (l_ret1 == 0) {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff ... dangling link");
|
2017-09-01 04:58:37 +08:00
|
|
|
if (opts->no_dangle_links) {
|
|
|
|
/* treat dangling link as error */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("Warning: <%s> is a dangling link.\n", obj1fullname);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "treat dangling link as error");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else {
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("obj1 <%s> is a dangling link.\n", obj1fullname);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (l_ret1 != 0 || l_ret2 != 0) {
|
2012-03-10 04:34:37 +08:00
|
|
|
nfound++;
|
|
|
|
print_found(nfound);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(H5DIFF_NO_ERR);
|
2012-03-10 04:34:37 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
else if (l_ret1 < 0) { /* fail */
|
|
|
|
parallel_print("Object <%s> could not be found in <%s>\n", obj1fullname, fname1);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "Object could not be found");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
else if (l_ret1 != 2) { /* symbolic link */
|
2014-05-25 13:55:39 +08:00
|
|
|
obj1type = (h5trav_type_t)trg_linfo1.trg_type;
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff ... ... trg_linfo1.trg_type == H5L_TYPE_HARD");
|
2012-08-04 04:11:36 +08:00
|
|
|
if (info1_lp != NULL) {
|
2014-05-25 13:55:39 +08:00
|
|
|
size_t idx = info1_lp->nused - 1;
|
|
|
|
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff ... ... ... info1_obj not null");
|
2020-01-17 05:29:34 +08:00
|
|
|
HDmemcpy(&info1_lp->paths[idx].obj_token, &trg_linfo1.obj_token, sizeof(H5O_token_t));
|
2020-09-30 22:27:10 +08:00
|
|
|
info1_lp->paths[idx].type = (h5trav_type_t)trg_linfo1.trg_type;
|
2012-08-04 04:11:36 +08:00
|
|
|
info1_lp->paths[idx].fileno = trg_linfo1.fileno;
|
|
|
|
}
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff check symbolic link (object1) finished");
|
2012-08-04 04:11:36 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
|
|
|
|
/*-------------------------------
|
|
|
|
* check symbolic link (object2)
|
|
|
|
*/
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff check symbolic link (object2)");
|
2010-09-17 01:48:06 +08:00
|
|
|
/* dangling link */
|
2017-09-01 04:58:37 +08:00
|
|
|
if (l_ret2 == 0) {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff ... dangling link");
|
2017-09-01 04:58:37 +08:00
|
|
|
if (opts->no_dangle_links) {
|
|
|
|
/* treat dangling link as error */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("Warning: <%s> is a dangling link.\n", obj2fullname);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "treat dangling link as error");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
2017-09-01 04:58:37 +08:00
|
|
|
else {
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("obj2 <%s> is a dangling link.\n", obj2fullname);
|
2017-10-17 06:26:23 +08:00
|
|
|
if (l_ret1 != 0 || l_ret2 != 0) {
|
2012-03-10 04:34:37 +08:00
|
|
|
nfound++;
|
|
|
|
print_found(nfound);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(H5DIFF_NO_ERR);
|
2012-03-10 04:34:37 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
else if (l_ret2 < 0) { /* fail */
|
|
|
|
parallel_print("Object <%s> could not be found in <%s>\n", obj2fullname, fname2);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "Object could not be found");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
else if (l_ret2 != 2) { /* symbolic link */
|
2014-05-25 13:55:39 +08:00
|
|
|
obj2type = (h5trav_type_t)trg_linfo2.trg_type;
|
2012-08-04 04:11:36 +08:00
|
|
|
if (info2_lp != NULL) {
|
2014-05-25 13:55:39 +08:00
|
|
|
size_t idx = info2_lp->nused - 1;
|
|
|
|
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff ... ... ... info2_obj not null");
|
2020-01-17 05:29:34 +08:00
|
|
|
HDmemcpy(&info2_lp->paths[idx].obj_token, &trg_linfo2.obj_token, sizeof(H5O_token_t));
|
2020-09-30 22:27:10 +08:00
|
|
|
info2_lp->paths[idx].type = (h5trav_type_t)trg_linfo2.trg_type;
|
2012-08-04 04:11:36 +08:00
|
|
|
info2_lp->paths[idx].fileno = trg_linfo2.fileno;
|
|
|
|
}
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff check symbolic link (object1) finished");
|
2012-08-04 04:11:36 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
} /* end of if follow symlinks */
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/*
|
|
|
|
* If verbose options is not used, don't need to traverse through the list
|
|
|
|
* of objects in the group to display objects information,
|
|
|
|
* So use h5tools_is_obj_same() to improve performance by skipping
|
|
|
|
* comparing details of same objects.
|
|
|
|
*/
|
2012-01-25 04:39:59 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (!(opts->mode_verbose || opts->mode_report)) {
|
2020-07-16 00:20:16 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff NOT (opts->mode_verbose || opts->mode_report)");
|
2012-03-10 04:34:37 +08:00
|
|
|
/* if no danglink links */
|
2017-10-14 05:34:01 +08:00
|
|
|
if (l_ret1 > 0 && l_ret2 > 0)
|
2017-10-18 05:13:12 +08:00
|
|
|
if (h5tools_is_obj_same(file1_id, obj1fullname, file2_id, obj2fullname) != 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(H5DIFF_NO_ERR);
|
2012-01-25 04:39:59 +08:00
|
|
|
}
|
|
|
|
|
2012-08-04 04:11:36 +08:00
|
|
|
both_objs_grp = (obj1type == H5TRAV_TYPE_GROUP && obj2type == H5TRAV_TYPE_GROUP);
|
2017-09-01 04:58:37 +08:00
|
|
|
if (both_objs_grp) {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("h5diff both_objs_grp TRUE");
|
2012-08-04 04:11:36 +08:00
|
|
|
/*
|
|
|
|
* traverse group1
|
2010-09-17 01:48:06 +08:00
|
|
|
*/
|
|
|
|
trav_info_init(fname1, file1_id, &info1_grp);
|
|
|
|
/* optional data pass */
|
2020-09-30 22:27:10 +08:00
|
|
|
info1_grp->opts = (diff_opt_t *)opts;
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (h5trav_visit(file1_id, obj1fullname, TRUE, TRUE, trav_grp_objs, trav_grp_symlinks, info1_grp,
|
|
|
|
H5O_INFO_BASIC) < 0) {
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("Error: Could not get file contents\n");
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "Could not get file contents");
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
info1_lp = info1_grp;
|
|
|
|
|
2012-08-04 04:11:36 +08:00
|
|
|
/*
|
|
|
|
* traverse group2
|
2010-09-17 01:48:06 +08:00
|
|
|
*/
|
|
|
|
trav_info_init(fname2, file2_id, &info2_grp);
|
|
|
|
/* optional data pass */
|
2020-09-30 22:27:10 +08:00
|
|
|
info2_grp->opts = (diff_opt_t *)opts;
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (h5trav_visit(file2_id, obj2fullname, TRUE, TRUE, trav_grp_objs, trav_grp_symlinks, info2_grp,
|
|
|
|
H5O_INFO_BASIC) < 0) {
|
2010-09-17 01:48:06 +08:00
|
|
|
parallel_print("Error: Could not get file contents\n");
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "Could not get file contents");
|
2020-09-30 22:27:10 +08:00
|
|
|
} /* end if */
|
2010-09-17 01:48:06 +08:00
|
|
|
info2_lp = info2_grp;
|
2012-08-04 04:11:36 +08:00
|
|
|
}
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("groups traversed - errstat:%d", opts->err_stat);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2005-02-03 07:01:42 +08:00
|
|
|
#ifdef H5_HAVE_PARALLEL
|
2020-09-30 22:27:10 +08:00
|
|
|
if (g_Parallel) {
|
2014-05-25 13:55:39 +08:00
|
|
|
int i;
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((HDstrlen(fname1) > MAX_FILENAME) || (HDstrlen(fname2) > MAX_FILENAME)) {
|
|
|
|
HDfprintf(stderr, "The parallel diff only supports path names up to %d characters\n",
|
|
|
|
MAX_FILENAME);
|
2012-08-07 04:08:12 +08:00
|
|
|
MPI_Abort(MPI_COMM_WORLD, 0);
|
|
|
|
} /* end if */
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2012-08-07 04:08:12 +08:00
|
|
|
HDstrcpy(filenames[0], fname1);
|
|
|
|
HDstrcpy(filenames[1], fname2);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2012-08-07 04:08:12 +08:00
|
|
|
/* Alert the worker tasks that there's going to be work. */
|
2020-09-30 22:27:10 +08:00
|
|
|
for (i = 1; i < g_nTasks; i++)
|
2012-08-07 04:08:12 +08:00
|
|
|
MPI_Send(filenames, (MAX_FILENAME * 2), MPI_CHAR, i, MPI_TAG_PARALLEL, MPI_COMM_WORLD);
|
2012-08-04 04:11:36 +08:00
|
|
|
} /* end if */
|
2010-09-17 01:48:06 +08:00
|
|
|
#endif
|
2008-05-01 03:51:13 +08:00
|
|
|
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("build_match_list next - errstat:%d", opts->err_stat);
|
2012-08-04 04:11:36 +08:00
|
|
|
/* process the objects */
|
2020-09-30 22:27:10 +08:00
|
|
|
build_match_list(obj1fullname, info1_lp, obj2fullname, info2_lp, &match_list, opts);
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("build_match_list finished - errstat:%d", opts->err_stat);
|
2017-09-01 04:58:37 +08:00
|
|
|
if (both_objs_grp) {
|
2012-08-04 04:11:36 +08:00
|
|
|
/*------------------------------------------------------
|
|
|
|
* print the list
|
|
|
|
*/
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose) {
|
|
|
|
unsigned u;
|
2014-05-25 13:55:39 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose_level > 2) {
|
2020-07-16 00:20:16 +08:00
|
|
|
parallel_print("file1: %s\n", fname1);
|
|
|
|
parallel_print("file2: %s\n", fname2);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
parallel_print("\n");
|
|
|
|
/* if given objects is group under root */
|
2021-03-11 02:42:35 +08:00
|
|
|
if (HDstrcmp(obj1fullname, "/") != 0 || HDstrcmp(obj2fullname, "/") != 0)
|
2020-09-30 22:27:10 +08:00
|
|
|
parallel_print("group1 group2\n");
|
|
|
|
else
|
|
|
|
parallel_print("file1 file2\n");
|
|
|
|
parallel_print("---------------------------------------\n");
|
|
|
|
for (u = 0; u < match_list->nobjs; u++) {
|
|
|
|
int c1, c2;
|
|
|
|
c1 = (match_list->objs[u].flags[0]) ? 'x' : ' ';
|
|
|
|
c2 = (match_list->objs[u].flags[1]) ? 'x' : ' ';
|
|
|
|
parallel_print("%5c %6c %-15s\n", c1, c2, match_list->objs[u].name);
|
|
|
|
} /* end for */
|
|
|
|
parallel_print("\n");
|
|
|
|
} /* end if */
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("diff_match next - errstat:%d", opts->err_stat);
|
2020-09-30 22:27:10 +08:00
|
|
|
nfound = diff_match(file1_id, obj1fullname, info1_lp, file2_id, obj2fullname, info2_lp, match_list, opts);
|
2020-07-16 00:20:16 +08:00
|
|
|
H5TOOLS_DEBUG("diff_match nfound: %d - errstat:%d", nfound, opts->err_stat);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2017-09-01 04:58:37 +08:00
|
|
|
done:
|
2017-10-18 05:13:12 +08:00
|
|
|
opts->err_stat = opts->err_stat | ret_value;
|
|
|
|
|
2010-09-17 01:48:06 +08:00
|
|
|
#ifdef H5_HAVE_PARALLEL
|
2020-09-30 22:27:10 +08:00
|
|
|
if (g_Parallel)
|
2010-09-17 01:48:06 +08:00
|
|
|
/* All done at this point, let tasks know that they won't be needed */
|
|
|
|
phdiff_dismiss_workers();
|
|
|
|
#endif
|
|
|
|
/* free buffers in trav_info structures */
|
|
|
|
if (info1_obj)
|
|
|
|
trav_info_free(info1_obj);
|
|
|
|
if (info2_obj)
|
|
|
|
trav_info_free(info2_obj);
|
|
|
|
|
|
|
|
if (info1_grp)
|
|
|
|
trav_info_free(info1_grp);
|
|
|
|
if (info2_grp)
|
|
|
|
trav_info_free(info2_grp);
|
|
|
|
|
|
|
|
/* free buffers */
|
|
|
|
if (obj1fullname)
|
[svn-r23395] Description:
Bring Coverity changes from branch to trunk:
r20682:
fixed coverity:
76, 77, 635, 636, 1164, 1165, 1166, 1121, 1122, 1117, 1343
Tested on:
Mac OSX/64 10.8.3 (amazon) w/C++ & FORTRAN
(too minor to require h5committest)
2013-03-20 11:44:28 +08:00
|
|
|
HDfree(obj1fullname);
|
2010-09-17 01:48:06 +08:00
|
|
|
if (obj2fullname)
|
[svn-r23395] Description:
Bring Coverity changes from branch to trunk:
r20682:
fixed coverity:
76, 77, 635, 636, 1164, 1165, 1166, 1121, 1122, 1117, 1343
Tested on:
Mac OSX/64 10.8.3 (amazon) w/C++ & FORTRAN
(too minor to require h5committest)
2013-03-20 11:44:28 +08:00
|
|
|
HDfree(obj2fullname);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
|
|
|
/* free link info buffer */
|
|
|
|
if (trg_linfo1.trg_path)
|
2014-11-01 02:11:42 +08:00
|
|
|
HDfree(trg_linfo1.trg_path);
|
2010-09-17 01:48:06 +08:00
|
|
|
if (trg_linfo2.trg_path)
|
2014-11-01 02:11:42 +08:00
|
|
|
HDfree(trg_linfo2.trg_path);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2007-09-06 23:54:22 +08:00
|
|
|
/* close */
|
2008-09-16 23:52:51 +08:00
|
|
|
H5E_BEGIN_TRY
|
2008-05-01 03:51:13 +08:00
|
|
|
{
|
2007-09-06 23:54:22 +08:00
|
|
|
H5Fclose(file1_id);
|
|
|
|
H5Fclose(file2_id);
|
2020-04-22 02:36:10 +08:00
|
|
|
if (fapl1_id != H5P_DEFAULT)
|
|
|
|
H5Pclose(fapl1_id);
|
|
|
|
if (fapl2_id != H5P_DEFAULT)
|
|
|
|
H5Pclose(fapl2_id);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
H5E_END_TRY;
|
2017-10-14 05:34:01 +08:00
|
|
|
|
2020-01-24 00:20:34 +08:00
|
|
|
H5TOOLS_ENDDEBUG(" - errstat:%d", opts->err_stat);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2007-09-06 23:54:22 +08:00
|
|
|
return nfound;
|
2003-03-26 22:23:48 +08:00
|
|
|
}
|
2003-05-19 13:09:08 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2005-02-03 07:01:42 +08:00
|
|
|
* Function: diff_match
|
2003-05-19 13:09:08 +08:00
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: Compare common objects in given groups according to table structure.
|
|
|
|
* The table structure has flags which can be used to find common objects
|
|
|
|
* and will be compared.
|
|
|
|
* Common object means same name (absolute path) objects in both location.
|
2003-05-19 13:09:08 +08:00
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Return: Number of differences found
|
2005-08-14 04:53:35 +08:00
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Modifications: Compare the graph and make h5diff return 1 for difference if
|
|
|
|
* 1) the number of objects in file1 is not the same as in file2
|
|
|
|
* 2) the graph does not match, i.e same names (absolute path)
|
|
|
|
* 3) objects with the same name are not of the same type
|
2003-05-19 13:09:08 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2017-10-14 05:34:01 +08:00
|
|
|
hsize_t
|
2020-09-30 22:27:10 +08:00
|
|
|
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 *opts)
|
2003-05-19 13:09:08 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hsize_t nfound = 0;
|
|
|
|
unsigned i;
|
|
|
|
const char *grp1_path = "";
|
|
|
|
const char *grp2_path = "";
|
2022-07-27 05:45:46 +08:00
|
|
|
char *obj1_fullpath = NULL;
|
|
|
|
char *obj2_fullpath = NULL;
|
2020-09-30 22:27:10 +08:00
|
|
|
diff_args_t argdata;
|
|
|
|
size_t idx1 = 0;
|
|
|
|
size_t idx2 = 0;
|
|
|
|
diff_err_t ret_value = opts->err_stat;
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-01-24 00:20:34 +08:00
|
|
|
H5TOOLS_START_DEBUG(" - errstat:%d", opts->err_stat);
|
2017-01-17 23:55:15 +08:00
|
|
|
/*
|
2010-09-17 01:48:06 +08:00
|
|
|
* if not root, prepare object name to be pre-appended to group path to
|
|
|
|
* make full path
|
|
|
|
*/
|
2021-03-11 02:42:35 +08:00
|
|
|
if (HDstrcmp(grp1, "/") != 0)
|
2014-05-25 13:55:39 +08:00
|
|
|
grp1_path = grp1;
|
2021-03-11 02:42:35 +08:00
|
|
|
if (HDstrcmp(grp2, "/") != 0)
|
2014-05-25 13:55:39 +08:00
|
|
|
grp2_path = grp2;
|
2008-08-05 05:13:16 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2017-10-14 05:34:01 +08:00
|
|
|
* regarding the return value of h5diff (0, no difference in files, 1 difference )
|
|
|
|
* 1) the number of objects in file1 must be the same as in file2
|
|
|
|
* 2) the graph must match, i.e same names (absolute path)
|
|
|
|
* 3) objects with the same name must be of the same type
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2017-01-17 23:55:15 +08:00
|
|
|
|
2020-07-16 00:20:16 +08:00
|
|
|
H5TOOLS_DEBUG("exclude_path opts->contents:%d", opts->contents);
|
2012-08-04 04:11:36 +08:00
|
|
|
/* not valid compare used when --exclude-path option is used */
|
2017-10-17 06:26:23 +08:00
|
|
|
if (!opts->exclude_path) {
|
2010-09-17 05:46:16 +08:00
|
|
|
/* number of different objects */
|
2017-10-14 05:34:01 +08:00
|
|
|
if (info1->nused != info2->nused) {
|
2017-10-17 06:26:23 +08:00
|
|
|
opts->contents = 0;
|
2010-09-17 05:46:16 +08:00
|
|
|
}
|
2020-07-16 00:20:16 +08:00
|
|
|
H5TOOLS_DEBUG("opts->exclude_path opts->contents:%d", opts->contents);
|
2008-10-30 03:29:25 +08:00
|
|
|
}
|
2017-01-17 23:55:15 +08:00
|
|
|
|
2008-10-30 04:01:38 +08:00
|
|
|
/* objects in one file and not the other */
|
2020-09-30 22:27:10 +08:00
|
|
|
for (i = 0; i < table->nobjs; i++) {
|
|
|
|
if (table->objs[i].flags[0] != table->objs[i].flags[1]) {
|
2017-10-17 06:26:23 +08:00
|
|
|
opts->contents = 0;
|
2010-09-17 05:46:16 +08:00
|
|
|
break;
|
2008-08-05 05:13:16 +08:00
|
|
|
}
|
2020-07-16 00:20:16 +08:00
|
|
|
H5TOOLS_DEBUG("table->nobjs[%d] opts->contents:%d", i, opts->contents);
|
2008-08-05 05:13:16 +08:00
|
|
|
}
|
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2017-10-14 05:34:01 +08:00
|
|
|
* do the diff for common objects
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2005-02-03 07:01:42 +08:00
|
|
|
#ifdef H5_HAVE_PARALLEL
|
2010-02-17 03:43:05 +08:00
|
|
|
{
|
2022-07-27 05:45:46 +08:00
|
|
|
char *workerTasks = (char *)HDmalloc((size_t)(g_nTasks - 1) * sizeof(char));
|
2020-09-30 22:27:10 +08:00
|
|
|
int n;
|
|
|
|
int busyTasks = 0;
|
|
|
|
struct diffs_found nFoundbyWorker;
|
2017-10-14 05:34:01 +08:00
|
|
|
struct diff_mpi_args args;
|
2020-09-30 22:27:10 +08:00
|
|
|
int havePrintToken = 1;
|
|
|
|
MPI_Status Status;
|
2017-10-14 05:34:01 +08:00
|
|
|
|
|
|
|
/*set all tasks as free */
|
2020-01-24 05:12:00 +08:00
|
|
|
HDmemset(workerTasks, 1, (size_t)(g_nTasks - 1) * sizeof(char));
|
2005-01-27 07:03:29 +08:00
|
|
|
#endif
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
for (i = 0; i < table->nobjs; i++) {
|
|
|
|
H5TOOLS_DEBUG("diff for common objects[%d] - errstat:%d", i, opts->err_stat);
|
|
|
|
if (table->objs[i].flags[0] && table->objs[i].flags[1]) {
|
|
|
|
/* make full path for obj1 */
|
2014-05-25 13:55:39 +08:00
|
|
|
#ifdef H5_HAVE_ASPRINTF
|
2020-09-30 22:27:10 +08:00
|
|
|
/* Use the asprintf() routine, since it does what we're trying to do below */
|
|
|
|
if (HDasprintf(&obj1_fullpath, "%s%s", grp1_path, table->objs[i].name) < 0) {
|
|
|
|
H5TOOLS_ERROR(H5DIFF_ERR, "name buffer allocation failed");
|
|
|
|
}
|
2021-01-29 20:55:18 +08:00
|
|
|
#else /* H5_HAVE_ASPRINTF */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((obj1_fullpath = (char *)HDmalloc(HDstrlen(grp1_path) + HDstrlen(table->objs[i].name) + 1)) ==
|
|
|
|
NULL) {
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_ERROR(H5DIFF_ERR, "name buffer allocation failed");
|
2017-10-16 22:19:41 +08:00
|
|
|
}
|
2017-10-14 05:34:01 +08:00
|
|
|
else {
|
|
|
|
HDstrcpy(obj1_fullpath, grp1_path);
|
|
|
|
HDstrcat(obj1_fullpath, table->objs[i].name);
|
|
|
|
}
|
2014-05-25 13:55:39 +08:00
|
|
|
#endif /* H5_HAVE_ASPRINTF */
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TOOLS_DEBUG("diff_match path1 - %s", obj1_fullpath);
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* make full path for obj2 */
|
2014-05-25 13:55:39 +08:00
|
|
|
#ifdef H5_HAVE_ASPRINTF
|
2020-09-30 22:27:10 +08:00
|
|
|
/* Use the asprintf() routine, since it does what we're trying to do below */
|
|
|
|
if (HDasprintf(&obj2_fullpath, "%s%s", grp2_path, table->objs[i].name) < 0) {
|
|
|
|
H5TOOLS_ERROR(H5DIFF_ERR, "name buffer allocation failed");
|
|
|
|
}
|
2021-01-29 20:55:18 +08:00
|
|
|
#else /* H5_HAVE_ASPRINTF */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((obj2_fullpath = (char *)HDmalloc(HDstrlen(grp2_path) + HDstrlen(table->objs[i].name) + 1)) ==
|
|
|
|
NULL) {
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_ERROR(H5DIFF_ERR, "name buffer allocation failed");
|
2017-10-16 22:19:41 +08:00
|
|
|
}
|
2017-10-14 05:34:01 +08:00
|
|
|
else {
|
|
|
|
HDstrcpy(obj2_fullpath, grp2_path);
|
|
|
|
HDstrcat(obj2_fullpath, table->objs[i].name);
|
|
|
|
}
|
2014-05-25 13:55:39 +08:00
|
|
|
#endif /* H5_HAVE_ASPRINTF */
|
2020-09-30 22:27:10 +08:00
|
|
|
H5TOOLS_DEBUG("diff_match path2 - %s", obj2_fullpath);
|
|
|
|
|
|
|
|
/* get index to figure out type of the object in file1 */
|
|
|
|
while (info1->paths[idx1].path && (HDstrcmp(obj1_fullpath, info1->paths[idx1].path) != 0))
|
|
|
|
idx1++;
|
|
|
|
/* get index to figure out type of the object in file2 */
|
|
|
|
while (info2->paths[idx2].path && (HDstrcmp(obj2_fullpath, info2->paths[idx2].path) != 0))
|
|
|
|
idx2++;
|
|
|
|
|
|
|
|
/* Set argdata to pass other args into diff() */
|
|
|
|
argdata.type[0] = info1->paths[idx1].type;
|
|
|
|
argdata.type[1] = info2->paths[idx2].type;
|
|
|
|
argdata.is_same_trgobj = table->objs[i].is_same_trgobj;
|
|
|
|
|
|
|
|
opts->cmn_objs = 1;
|
|
|
|
if (!g_Parallel) {
|
|
|
|
H5TOOLS_DEBUG("diff paths - errstat:%d", opts->err_stat);
|
|
|
|
nfound += diff(file1_id, obj1_fullpath, file2_id, obj2_fullpath, opts, &argdata);
|
2007-09-13 23:44:56 +08:00
|
|
|
} /* end if */
|
2020-09-30 22:27:10 +08:00
|
|
|
#ifdef H5_HAVE_PARALLEL
|
|
|
|
else {
|
|
|
|
int workerFound = 0;
|
|
|
|
|
|
|
|
H5TOOLS_DEBUG("Beginning of big else block");
|
|
|
|
/* We're in parallel mode */
|
|
|
|
/* Since the data type of diff value is hsize_t which can
|
2021-12-07 22:27:29 +08:00
|
|
|
* be arbitrary large such that there is no MPI type that
|
2020-09-30 22:27:10 +08:00
|
|
|
* matches it, the value is passed between processes as
|
|
|
|
* an array of bytes in order to be portable. But this
|
|
|
|
* may not work in non-homogeneous MPI environments.
|
|
|
|
*/
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/*Set up args to pass to worker task. */
|
|
|
|
if (HDstrlen(obj1_fullpath) > 255 || HDstrlen(obj2_fullpath) > 255) {
|
|
|
|
HDprintf("The parallel diff only supports object names up to 255 characters\n");
|
|
|
|
MPI_Abort(MPI_COMM_WORLD, 0);
|
2007-09-13 23:44:56 +08:00
|
|
|
} /* end if */
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* set args struct to pass */
|
|
|
|
HDstrcpy(args.name1, obj1_fullpath);
|
|
|
|
HDstrcpy(args.name2, obj2_fullpath);
|
|
|
|
args.opts = *opts;
|
|
|
|
args.argdata.type[0] = info1->paths[idx1].type;
|
|
|
|
args.argdata.type[1] = info2->paths[idx2].type;
|
|
|
|
args.argdata.is_same_trgobj = table->objs[i].is_same_trgobj;
|
|
|
|
|
|
|
|
/* if there are any outstanding print requests, let's handle one. */
|
|
|
|
if (busyTasks > 0) {
|
|
|
|
int incomingMessage;
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* check if any tasks freed up, and didn't need to print. */
|
|
|
|
MPI_Iprobe(MPI_ANY_SOURCE, MPI_TAG_DONE, MPI_COMM_WORLD, &incomingMessage, &Status);
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* first block*/
|
|
|
|
if (incomingMessage) {
|
2007-09-13 23:44:56 +08:00
|
|
|
workerTasks[Status.MPI_SOURCE - 1] = 1;
|
2020-09-30 22:27:10 +08:00
|
|
|
MPI_Recv(&nFoundbyWorker, sizeof(nFoundbyWorker), MPI_BYTE, Status.MPI_SOURCE,
|
|
|
|
MPI_TAG_DONE, MPI_COMM_WORLD, &Status);
|
2007-09-13 23:44:56 +08:00
|
|
|
nfound += nFoundbyWorker.nfound;
|
2017-10-17 06:26:23 +08:00
|
|
|
opts->not_cmp = opts->not_cmp | nFoundbyWorker.not_cmp;
|
2007-09-13 23:44:56 +08:00
|
|
|
busyTasks--;
|
|
|
|
} /* end if */
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* check to see if the print token was returned. */
|
|
|
|
if (!havePrintToken) {
|
|
|
|
/* If we don't have the token, someone is probably sending us output */
|
|
|
|
print_incoming_data();
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* check incoming queue for token */
|
|
|
|
MPI_Iprobe(MPI_ANY_SOURCE, MPI_TAG_TOK_RETURN, MPI_COMM_WORLD, &incomingMessage,
|
|
|
|
&Status);
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* incoming token implies free task. */
|
|
|
|
if (incomingMessage) {
|
|
|
|
workerTasks[Status.MPI_SOURCE - 1] = 1;
|
|
|
|
MPI_Recv(&nFoundbyWorker, sizeof(nFoundbyWorker), MPI_BYTE, Status.MPI_SOURCE,
|
|
|
|
MPI_TAG_TOK_RETURN, MPI_COMM_WORLD, &Status);
|
2007-09-13 23:44:56 +08:00
|
|
|
nfound += nFoundbyWorker.nfound;
|
2017-10-17 06:26:23 +08:00
|
|
|
opts->not_cmp = opts->not_cmp | nFoundbyWorker.not_cmp;
|
2020-09-30 22:27:10 +08:00
|
|
|
busyTasks--;
|
|
|
|
havePrintToken = 1;
|
2007-09-13 23:44:56 +08:00
|
|
|
} /* end if */
|
2020-09-30 22:27:10 +08:00
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
/* check to see if anyone needs the print token. */
|
|
|
|
if (havePrintToken) {
|
|
|
|
/* check incoming queue for print token requests */
|
|
|
|
MPI_Iprobe(MPI_ANY_SOURCE, MPI_TAG_TOK_REQUEST, MPI_COMM_WORLD, &incomingMessage,
|
|
|
|
&Status);
|
|
|
|
if (incomingMessage) {
|
|
|
|
MPI_Recv(NULL, 0, MPI_BYTE, Status.MPI_SOURCE, MPI_TAG_TOK_REQUEST,
|
|
|
|
MPI_COMM_WORLD, &Status);
|
|
|
|
MPI_Send(NULL, 0, MPI_BYTE, Status.MPI_SOURCE, MPI_TAG_PRINT_TOK,
|
|
|
|
MPI_COMM_WORLD);
|
|
|
|
havePrintToken = 0;
|
|
|
|
} /* end if */
|
|
|
|
} /* end if */
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
/* check array of tasks to see which ones are free.
|
|
|
|
* Manager task never does work, so freeTasks[0] is really
|
|
|
|
* worker task 0. */
|
|
|
|
for (n = 1; (n < g_nTasks) && !workerFound; n++) {
|
|
|
|
if (workerTasks[n - 1]) {
|
|
|
|
/* send file id's and names to first free worker */
|
|
|
|
MPI_Send(&args, sizeof(args), MPI_BYTE, n, MPI_TAG_ARGS, MPI_COMM_WORLD);
|
|
|
|
|
|
|
|
/* increment counter for total number of prints. */
|
|
|
|
busyTasks++;
|
|
|
|
|
|
|
|
/* mark worker as busy */
|
|
|
|
workerTasks[n - 1] = 0;
|
|
|
|
workerFound = 1;
|
2007-09-13 23:44:56 +08:00
|
|
|
} /* end if */
|
2020-09-30 22:27:10 +08:00
|
|
|
} /* end for */
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (!workerFound) {
|
|
|
|
/* if they were all busy, we've got to wait for one free up
|
|
|
|
* before we can move on. If we don't have the token, some
|
|
|
|
* task is currently printing so we'll wait for that task to
|
|
|
|
* return it.
|
|
|
|
*/
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (!havePrintToken) {
|
|
|
|
while (!havePrintToken) {
|
|
|
|
int incomingMessage;
|
2007-09-13 23:44:56 +08:00
|
|
|
|
|
|
|
print_incoming_data();
|
2020-09-30 22:27:10 +08:00
|
|
|
MPI_Iprobe(MPI_ANY_SOURCE, MPI_TAG_TOK_RETURN, MPI_COMM_WORLD,
|
|
|
|
&incomingMessage, &Status);
|
|
|
|
if (incomingMessage) {
|
|
|
|
MPI_Recv(&nFoundbyWorker, sizeof(nFoundbyWorker), MPI_BYTE,
|
|
|
|
MPI_ANY_SOURCE, MPI_TAG_TOK_RETURN, MPI_COMM_WORLD, &Status);
|
|
|
|
havePrintToken = 1;
|
|
|
|
nfound += nFoundbyWorker.nfound;
|
|
|
|
opts->not_cmp = opts->not_cmp | nFoundbyWorker.not_cmp;
|
|
|
|
/* send this task the work unit. */
|
|
|
|
MPI_Send(&args, sizeof(args), MPI_BYTE, Status.MPI_SOURCE, MPI_TAG_ARGS,
|
|
|
|
MPI_COMM_WORLD);
|
|
|
|
} /* end if */
|
|
|
|
} /* end while */
|
|
|
|
} /* end if */
|
|
|
|
/* if we do have the token, check for task to free up, or wait for a task to request
|
|
|
|
* it */
|
2017-10-14 05:34:01 +08:00
|
|
|
else {
|
2020-09-30 22:27:10 +08:00
|
|
|
/* But first print all the data in our incoming queue */
|
|
|
|
print_incoming_data();
|
|
|
|
MPI_Probe(MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &Status);
|
|
|
|
if (Status.MPI_TAG == MPI_TAG_DONE) {
|
|
|
|
MPI_Recv(&nFoundbyWorker, sizeof(nFoundbyWorker), MPI_BYTE, Status.MPI_SOURCE,
|
|
|
|
MPI_TAG_DONE, MPI_COMM_WORLD, &Status);
|
|
|
|
nfound += nFoundbyWorker.nfound;
|
|
|
|
opts->not_cmp = opts->not_cmp | nFoundbyWorker.not_cmp;
|
|
|
|
MPI_Send(&args, sizeof(args), MPI_BYTE, Status.MPI_SOURCE, MPI_TAG_ARGS,
|
|
|
|
MPI_COMM_WORLD);
|
|
|
|
} /* end if */
|
|
|
|
else if (Status.MPI_TAG == MPI_TAG_TOK_REQUEST) {
|
|
|
|
int incomingMessage;
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
MPI_Recv(NULL, 0, MPI_BYTE, Status.MPI_SOURCE, MPI_TAG_TOK_REQUEST,
|
|
|
|
MPI_COMM_WORLD, &Status);
|
|
|
|
MPI_Send(NULL, 0, MPI_BYTE, Status.MPI_SOURCE, MPI_TAG_PRINT_TOK,
|
|
|
|
MPI_COMM_WORLD);
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
do {
|
|
|
|
MPI_Iprobe(MPI_ANY_SOURCE, MPI_TAG_TOK_RETURN, MPI_COMM_WORLD,
|
|
|
|
&incomingMessage, &Status);
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
print_incoming_data();
|
|
|
|
} while (!incomingMessage);
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
MPI_Recv(&nFoundbyWorker, sizeof(nFoundbyWorker), MPI_BYTE, Status.MPI_SOURCE,
|
|
|
|
MPI_TAG_TOK_RETURN, MPI_COMM_WORLD, &Status);
|
|
|
|
nfound += nFoundbyWorker.nfound;
|
|
|
|
opts->not_cmp = opts->not_cmp | nFoundbyWorker.not_cmp;
|
|
|
|
MPI_Send(&args, sizeof(args), MPI_BYTE, Status.MPI_SOURCE, MPI_TAG_ARGS,
|
|
|
|
MPI_COMM_WORLD);
|
|
|
|
} /* end else-if */
|
|
|
|
else {
|
|
|
|
HDprintf("ERROR: Invalid tag (%d) received \n", Status.MPI_TAG);
|
|
|
|
MPI_Abort(MPI_COMM_WORLD, 0);
|
|
|
|
MPI_Finalize();
|
|
|
|
} /* end else */
|
|
|
|
} /* end else */
|
|
|
|
} /* end if */
|
|
|
|
} /* end else */
|
2021-01-29 20:55:18 +08:00
|
|
|
#endif /* H5_HAVE_PARALLEL */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (obj1_fullpath)
|
|
|
|
HDfree(obj1_fullpath);
|
|
|
|
if (obj2_fullpath)
|
|
|
|
HDfree(obj2_fullpath);
|
|
|
|
} /* end if */
|
|
|
|
} /* end for */
|
|
|
|
H5TOOLS_DEBUG("done with for loop - errstat:%d", opts->err_stat);
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#ifdef H5_HAVE_PARALLEL
|
|
|
|
if (g_Parallel) {
|
|
|
|
/* make sure all tasks are done */
|
|
|
|
while (busyTasks > 0) {
|
|
|
|
MPI_Probe(MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &Status);
|
|
|
|
if (Status.MPI_TAG == MPI_TAG_DONE) {
|
|
|
|
MPI_Recv(&nFoundbyWorker, sizeof(nFoundbyWorker), MPI_BYTE, Status.MPI_SOURCE,
|
|
|
|
MPI_TAG_DONE, MPI_COMM_WORLD, &Status);
|
2007-09-13 23:44:56 +08:00
|
|
|
nfound += nFoundbyWorker.nfound;
|
2017-10-17 06:26:23 +08:00
|
|
|
opts->not_cmp = opts->not_cmp | nFoundbyWorker.not_cmp;
|
2007-09-13 23:44:56 +08:00
|
|
|
busyTasks--;
|
|
|
|
} /* end if */
|
2020-09-30 22:27:10 +08:00
|
|
|
else if (Status.MPI_TAG == MPI_TAG_TOK_REQUEST) {
|
|
|
|
MPI_Recv(NULL, 0, MPI_BYTE, Status.MPI_SOURCE, MPI_TAG_TOK_REQUEST, MPI_COMM_WORLD,
|
|
|
|
&Status);
|
|
|
|
if (havePrintToken) {
|
|
|
|
int incomingMessage;
|
|
|
|
|
|
|
|
MPI_Send(NULL, 0, MPI_BYTE, Status.MPI_SOURCE, MPI_TAG_PRINT_TOK, MPI_COMM_WORLD);
|
|
|
|
|
|
|
|
do {
|
|
|
|
MPI_Iprobe(MPI_ANY_SOURCE, MPI_TAG_TOK_RETURN, MPI_COMM_WORLD, &incomingMessage,
|
|
|
|
&Status);
|
|
|
|
|
|
|
|
print_incoming_data();
|
|
|
|
} while (!incomingMessage);
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
MPI_Recv(&nFoundbyWorker, sizeof(nFoundbyWorker), MPI_BYTE, Status.MPI_SOURCE,
|
|
|
|
MPI_TAG_TOK_RETURN, MPI_COMM_WORLD, &Status);
|
|
|
|
nfound += nFoundbyWorker.nfound;
|
|
|
|
opts->not_cmp = opts->not_cmp | nFoundbyWorker.not_cmp;
|
|
|
|
busyTasks--;
|
|
|
|
} /* end if */
|
|
|
|
/* someone else must have it...wait for them to return it, then give it to the task that
|
|
|
|
* just asked for it. */
|
|
|
|
else {
|
|
|
|
int source = Status.MPI_SOURCE;
|
|
|
|
int incomingMessage;
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
do {
|
|
|
|
MPI_Iprobe(MPI_ANY_SOURCE, MPI_TAG_TOK_RETURN, MPI_COMM_WORLD, &incomingMessage,
|
|
|
|
&Status);
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
print_incoming_data();
|
|
|
|
} while (!incomingMessage);
|
2007-09-13 23:44:56 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
MPI_Recv(&nFoundbyWorker, sizeof(nFoundbyWorker), MPI_BYTE, MPI_ANY_SOURCE,
|
|
|
|
MPI_TAG_TOK_RETURN, MPI_COMM_WORLD, &Status);
|
|
|
|
nfound += nFoundbyWorker.nfound;
|
|
|
|
opts->not_cmp = opts->not_cmp | nFoundbyWorker.not_cmp;
|
|
|
|
busyTasks--;
|
|
|
|
MPI_Send(NULL, 0, MPI_BYTE, source, MPI_TAG_PRINT_TOK, MPI_COMM_WORLD);
|
|
|
|
} /* end else */
|
|
|
|
} /* end else-if */
|
|
|
|
else if (Status.MPI_TAG == MPI_TAG_TOK_RETURN) {
|
|
|
|
MPI_Recv(&nFoundbyWorker, sizeof(nFoundbyWorker), MPI_BYTE, Status.MPI_SOURCE,
|
|
|
|
MPI_TAG_TOK_RETURN, MPI_COMM_WORLD, &Status);
|
2007-09-13 23:44:56 +08:00
|
|
|
nfound += nFoundbyWorker.nfound;
|
2017-10-17 06:26:23 +08:00
|
|
|
opts->not_cmp = opts->not_cmp | nFoundbyWorker.not_cmp;
|
2007-09-13 23:44:56 +08:00
|
|
|
busyTasks--;
|
2020-09-30 22:27:10 +08:00
|
|
|
havePrintToken = 1;
|
|
|
|
} /* end else-if */
|
|
|
|
else if (Status.MPI_TAG == MPI_TAG_PRINT_DATA) {
|
|
|
|
char data[PRINT_DATA_MAX_SIZE + 1];
|
|
|
|
HDmemset(data, 0, PRINT_DATA_MAX_SIZE + 1);
|
|
|
|
|
|
|
|
MPI_Recv(data, PRINT_DATA_MAX_SIZE, MPI_CHAR, Status.MPI_SOURCE, MPI_TAG_PRINT_DATA,
|
|
|
|
MPI_COMM_WORLD, &Status);
|
|
|
|
|
|
|
|
HDprintf("%s", data);
|
|
|
|
} /* end else-if */
|
|
|
|
else {
|
|
|
|
HDprintf("ph5diff-manager: ERROR!! Invalid tag (%d) received \n", Status.MPI_TAG);
|
|
|
|
MPI_Abort(MPI_COMM_WORLD, 0);
|
2007-09-13 23:44:56 +08:00
|
|
|
} /* end else */
|
2020-09-30 22:27:10 +08:00
|
|
|
} /* end while */
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
for (i = 1; (int)i < g_nTasks; i++)
|
|
|
|
MPI_Send(NULL, 0, MPI_BYTE, (int)i, MPI_TAG_END, MPI_COMM_WORLD);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* Print any final data waiting in our queue */
|
|
|
|
print_incoming_data();
|
|
|
|
} /* end if */
|
|
|
|
H5TOOLS_DEBUG("done with if block");
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
HDfree(workerTasks);
|
2010-02-17 03:43:05 +08:00
|
|
|
}
|
2005-08-19 03:37:32 +08:00
|
|
|
#endif /* H5_HAVE_PARALLEL */
|
2006-06-27 22:45:06 +08:00
|
|
|
|
2017-10-18 05:13:12 +08:00
|
|
|
opts->err_stat = opts->err_stat | ret_value;
|
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
free_exclude_attr_list(opts);
|
2020-07-16 00:20:16 +08:00
|
|
|
|
2019-12-28 13:02:26 +08:00
|
|
|
/* free table */
|
2010-09-17 01:48:06 +08:00
|
|
|
if (table)
|
|
|
|
trav_table_free(table);
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-01-24 00:20:34 +08:00
|
|
|
H5TOOLS_ENDDEBUG(" diffs=%d - errstat:%d", nfound, opts->err_stat);
|
2019-12-20 06:29:35 +08:00
|
|
|
|
2008-05-01 03:51:13 +08:00
|
|
|
return nfound;
|
2003-03-26 22:23:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
* Function: diff
|
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Purpose: switch between types and choose the diff function
|
|
|
|
* TYPE is either
|
|
|
|
* H5G_GROUP Object is a group
|
|
|
|
* H5G_DATASET Object is a dataset
|
|
|
|
* H5G_TYPE Object is a named data type
|
|
|
|
* H5G_LINK Object is a symbolic link
|
2011-05-07 06:02:24 +08:00
|
|
|
*
|
2017-10-14 05:34:01 +08:00
|
|
|
* Return: Number of differences found
|
2003-03-26 22:23:48 +08:00
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2017-10-14 05:34:01 +08:00
|
|
|
hsize_t
|
2020-09-30 22:27:10 +08:00
|
|
|
diff(hid_t file1_id, const char *path1, hid_t file2_id, const char *path2, diff_opt_t *opts,
|
|
|
|
diff_args_t *argdata)
|
2003-03-26 22:23:48 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
int status = -1;
|
|
|
|
hid_t dset1_id = H5I_INVALID_HID;
|
|
|
|
hid_t dset2_id = H5I_INVALID_HID;
|
|
|
|
hid_t type1_id = H5I_INVALID_HID;
|
|
|
|
hid_t type2_id = H5I_INVALID_HID;
|
|
|
|
hid_t grp1_id = H5I_INVALID_HID;
|
|
|
|
hid_t grp2_id = H5I_INVALID_HID;
|
2017-10-14 05:34:01 +08:00
|
|
|
hbool_t is_dangle_link1 = FALSE;
|
|
|
|
hbool_t is_dangle_link2 = FALSE;
|
2020-09-30 22:27:10 +08:00
|
|
|
hbool_t is_hard_link = FALSE;
|
|
|
|
hsize_t nfound = 0;
|
[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 object_type;
|
2019-12-28 16:16:44 +08:00
|
|
|
diff_err_t ret_value = opts->err_stat;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2010-02-17 03:43:05 +08:00
|
|
|
/* to get link info */
|
|
|
|
h5tool_link_info_t linkinfo1;
|
|
|
|
h5tool_link_info_t linkinfo2;
|
|
|
|
|
2020-01-24 00:20:34 +08:00
|
|
|
H5TOOLS_START_DEBUG(" - errstat:%d", opts->err_stat);
|
2012-08-06 10:48:11 +08:00
|
|
|
|
2010-02-17 03:43:05 +08:00
|
|
|
/*init link info struct */
|
2017-10-14 05:34:01 +08:00
|
|
|
HDmemset(&linkinfo1, 0, sizeof(h5tool_link_info_t));
|
|
|
|
HDmemset(&linkinfo2, 0, sizeof(h5tool_link_info_t));
|
2010-01-30 12:29:13 +08:00
|
|
|
|
2010-02-17 03:43:05 +08:00
|
|
|
/* pass how to handle printing warnings to linkinfo option */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (print_warn(opts))
|
2010-02-17 03:43:05 +08:00
|
|
|
linkinfo1.opt.msg_mode = linkinfo2.opt.msg_mode = 1;
|
2010-01-26 05:43:48 +08:00
|
|
|
|
2017-01-17 23:55:15 +08:00
|
|
|
/* for symbolic links, take care follow symlink and no dangling link
|
[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
|
|
|
* options */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (argdata->type[0] == H5TRAV_TYPE_LINK || argdata->type[0] == H5TRAV_TYPE_UDLINK ||
|
|
|
|
argdata->type[1] == H5TRAV_TYPE_LINK || argdata->type[1] == H5TRAV_TYPE_UDLINK) {
|
2017-01-17 23:55:15 +08:00
|
|
|
/*
|
[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
|
|
|
* check dangling links for path1 and path2
|
|
|
|
*/
|
|
|
|
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("diff links");
|
[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
|
|
|
/* target object1 - get type and name */
|
2017-10-18 05:13:12 +08:00
|
|
|
if ((status = H5tools_get_symlink_info(file1_id, path1, &linkinfo1, opts->follow_links)) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5tools_get_symlink_info failed");
|
2017-10-14 05:34:01 +08:00
|
|
|
|
[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
|
|
|
/* dangling link */
|
2017-10-18 05:13:12 +08:00
|
|
|
if (status == 0) {
|
2017-10-17 06:26:23 +08:00
|
|
|
if (opts->no_dangle_links) {
|
2017-01-17 23:55:15 +08:00
|
|
|
/* dangling link is error */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
[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
|
|
|
parallel_print("Warning: <%s> is a dangling link.\n", path1);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "dangling link is error");
|
[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
|
|
|
}
|
|
|
|
else
|
2013-09-14 05:11:30 +08:00
|
|
|
is_dangle_link1 = TRUE;
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
|
[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
|
|
|
/* target object2 - get type and name */
|
2017-10-18 05:13:12 +08:00
|
|
|
if ((status = H5tools_get_symlink_info(file2_id, path2, &linkinfo2, opts->follow_links)) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5tools_get_symlink_info failed");
|
[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
|
|
|
/* dangling link */
|
2017-10-18 05:13:12 +08:00
|
|
|
if (status == 0) {
|
2017-10-17 06:26:23 +08:00
|
|
|
if (opts->no_dangle_links) {
|
2017-01-17 23:55:15 +08:00
|
|
|
/* dangling link is error */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
[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
|
|
|
parallel_print("Warning: <%s> is a dangling link.\n", path2);
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "dangling link is error");
|
[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
|
|
|
}
|
|
|
|
else
|
2013-09-14 05:11:30 +08:00
|
|
|
is_dangle_link2 = TRUE;
|
[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
|
|
|
}
|
2017-01-17 23:55:15 +08:00
|
|
|
|
[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
|
|
|
/* found dangling link */
|
2017-10-14 05:34:01 +08:00
|
|
|
if (is_dangle_link1 || is_dangle_link2) {
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(H5DIFF_NO_ERR);
|
2017-10-14 05:34:01 +08:00
|
|
|
}
|
[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
|
|
|
|
|
|
|
/* follow symbolic link option */
|
2017-10-17 06:26:23 +08:00
|
|
|
if (opts->follow_links) {
|
2020-09-30 22:27:10 +08:00
|
|
|
if (linkinfo1.linfo.type == H5L_TYPE_SOFT || linkinfo1.linfo.type == H5L_TYPE_EXTERNAL)
|
2014-05-25 13:55:39 +08:00
|
|
|
argdata->type[0] = (h5trav_type_t)linkinfo1.trg_type;
|
[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
|
|
|
|
2017-10-14 05:34:01 +08:00
|
|
|
if (linkinfo2.linfo.type == H5L_TYPE_SOFT || linkinfo2.linfo.type == H5L_TYPE_EXTERNAL)
|
2014-05-25 13:55:39 +08:00
|
|
|
argdata->type[1] = (h5trav_type_t)linkinfo2.trg_type;
|
2010-09-17 01:48:06 +08:00
|
|
|
}
|
|
|
|
}
|
[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
|
|
|
/* if objects are not the same type */
|
2017-10-14 05:34:01 +08:00
|
|
|
if (argdata->type[0] != argdata->type[1]) {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("diff objects are not the same");
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose || opts->mode_list_not_cmp) {
|
|
|
|
parallel_print("Not comparable: <%s> is of type %s and <%s> is of type %s\n", path1,
|
|
|
|
get_type(argdata->type[0]), path2, get_type(argdata->type[1]));
|
[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
|
|
|
}
|
2020-07-16 00:20:16 +08:00
|
|
|
|
2017-10-17 06:26:23 +08:00
|
|
|
opts->not_cmp = 1;
|
[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
|
|
|
/* TODO: will need to update non-comparable is different
|
2017-10-17 06:26:23 +08:00
|
|
|
* opts->contents = 0;
|
[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
|
|
|
*/
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(H5DIFF_NO_ERR);
|
[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
|
|
|
}
|
|
|
|
else /* now both object types are same */
|
|
|
|
object_type = argdata->type[0];
|
2017-01-17 23:55:15 +08:00
|
|
|
|
|
|
|
/*
|
2011-05-07 06:02:24 +08:00
|
|
|
* If both points to the same target object, skip comparing details inside
|
|
|
|
* of the objects to improve performance.
|
2017-01-17 23:55:15 +08:00
|
|
|
* Always check for the hard links, otherwise if follow symlink option is
|
2011-05-07 06:02:24 +08:00
|
|
|
* specified.
|
|
|
|
*
|
|
|
|
* Perform this to match the outputs as bypassing.
|
[svn-r20676] Purpose:
- HDFFV-5928 - GMQS: h5diff problem and improvement on comparsing the same objects
Description:
Fixed:
1) adding h5tools_is_obj_same() function to check if two given IDs or paths point to the same object. This function can be very useful for other tools and applications.
2) using h5tools_is_obj_same() at h5diff() and diff() in h5diff.c. If two paths point to the same object, there is no need to check the details of the object since we know there is no difference. The fix will increase the performance by skipping the content comparison. It also fixed the problem of reporting difference for some cases of comparing the same file, e.g. empty files or files with incomparable objects the same file.
Test update:
Updat prvious test cases (171, 172, 530) affected by this fix, so they
still perfrom originally intended testing without bypassing.
Tested:
jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), cmake
2011-04-30 01:02:31 +08:00
|
|
|
*/
|
2020-09-30 22:27:10 +08:00
|
|
|
if (argdata->is_same_trgobj) {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("argdata->is_same_trgobj");
|
2020-09-30 22:27:10 +08:00
|
|
|
is_hard_link = (object_type == H5TRAV_TYPE_DATASET || object_type == H5TRAV_TYPE_NAMED_DATATYPE ||
|
[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
|
|
|
object_type == H5TRAV_TYPE_GROUP);
|
2017-10-17 06:26:23 +08:00
|
|
|
if (opts->follow_links || is_hard_link) {
|
[svn-r20676] Purpose:
- HDFFV-5928 - GMQS: h5diff problem and improvement on comparsing the same objects
Description:
Fixed:
1) adding h5tools_is_obj_same() function to check if two given IDs or paths point to the same object. This function can be very useful for other tools and applications.
2) using h5tools_is_obj_same() at h5diff() and diff() in h5diff.c. If two paths point to the same object, there is no need to check the details of the object since we know there is no difference. The fix will increase the performance by skipping the content comparison. It also fixed the problem of reporting difference for some cases of comparing the same file, e.g. empty files or files with incomparable objects the same file.
Test update:
Updat prvious test cases (171, 172, 530) affected by this fix, so they
still perfrom originally intended testing without bypassing.
Tested:
jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), cmake
2011-04-30 01:02:31 +08:00
|
|
|
/* print information is only verbose option is used */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose || opts->mode_report) {
|
|
|
|
switch (object_type) {
|
2014-05-25 13:55:39 +08:00
|
|
|
case H5TRAV_TYPE_DATASET:
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("dataset", path1, path2, opts);
|
2017-01-17 23:55:15 +08:00
|
|
|
break;
|
2014-05-25 13:55:39 +08:00
|
|
|
case H5TRAV_TYPE_NAMED_DATATYPE:
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("datatype", path1, path2, opts);
|
2014-05-25 13:55:39 +08:00
|
|
|
break;
|
|
|
|
case H5TRAV_TYPE_GROUP:
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("group", path1, path2, opts);
|
2014-05-25 13:55:39 +08:00
|
|
|
break;
|
|
|
|
case H5TRAV_TYPE_LINK:
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("link", path1, path2, opts);
|
2014-05-25 13:55:39 +08:00
|
|
|
break;
|
|
|
|
case H5TRAV_TYPE_UDLINK:
|
2020-09-30 22:27:10 +08:00
|
|
|
if (linkinfo1.linfo.type == H5L_TYPE_EXTERNAL &&
|
|
|
|
linkinfo2.linfo.type == H5L_TYPE_EXTERNAL)
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("external link", path1, path2, opts);
|
2014-05-25 13:55:39 +08:00
|
|
|
else
|
2020-09-30 22:27:10 +08:00
|
|
|
do_print_objname("user defined link", path1, path2, opts);
|
2017-01-17 23:55:15 +08:00
|
|
|
break;
|
2014-05-25 13:55:39 +08:00
|
|
|
case H5TRAV_TYPE_UNKNOWN:
|
|
|
|
default:
|
2020-09-30 22:27:10 +08:00
|
|
|
parallel_print("Comparison not supported: <%s> and <%s> are of type %s\n", path1,
|
|
|
|
path2, get_type(object_type));
|
2017-10-17 06:26:23 +08:00
|
|
|
opts->not_cmp = 1;
|
2014-05-25 13:55:39 +08:00
|
|
|
break;
|
[svn-r20676] Purpose:
- HDFFV-5928 - GMQS: h5diff problem and improvement on comparsing the same objects
Description:
Fixed:
1) adding h5tools_is_obj_same() function to check if two given IDs or paths point to the same object. This function can be very useful for other tools and applications.
2) using h5tools_is_obj_same() at h5diff() and diff() in h5diff.c. If two paths point to the same object, there is no need to check the details of the object since we know there is no difference. The fix will increase the performance by skipping the content comparison. It also fixed the problem of reporting difference for some cases of comparing the same file, e.g. empty files or files with incomparable objects the same file.
Test update:
Updat prvious test cases (171, 172, 530) affected by this fix, so they
still perfrom originally intended testing without bypassing.
Tested:
jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), cmake
2011-04-30 01:02:31 +08:00
|
|
|
} /* switch(type)*/
|
|
|
|
|
|
|
|
print_found(nfound);
|
2020-07-16 00:20:16 +08:00
|
|
|
} /* if(opts->mode_verbose || opts->mode_report) */
|
[svn-r20676] Purpose:
- HDFFV-5928 - GMQS: h5diff problem and improvement on comparsing the same objects
Description:
Fixed:
1) adding h5tools_is_obj_same() function to check if two given IDs or paths point to the same object. This function can be very useful for other tools and applications.
2) using h5tools_is_obj_same() at h5diff() and diff() in h5diff.c. If two paths point to the same object, there is no need to check the details of the object since we know there is no difference. The fix will increase the performance by skipping the content comparison. It also fixed the problem of reporting difference for some cases of comparing the same file, e.g. empty files or files with incomparable objects the same file.
Test update:
Updat prvious test cases (171, 172, 530) affected by this fix, so they
still perfrom originally intended testing without bypassing.
Tested:
jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), cmake
2011-04-30 01:02:31 +08:00
|
|
|
|
[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
|
|
|
/* exact same, so comparison is done */
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_DONE(H5DIFF_NO_ERR);
|
2011-05-07 06:02:24 +08:00
|
|
|
}
|
[svn-r20676] Purpose:
- HDFFV-5928 - GMQS: h5diff problem and improvement on comparsing the same objects
Description:
Fixed:
1) adding h5tools_is_obj_same() function to check if two given IDs or paths point to the same object. This function can be very useful for other tools and applications.
2) using h5tools_is_obj_same() at h5diff() and diff() in h5diff.c. If two paths point to the same object, there is no need to check the details of the object since we know there is no difference. The fix will increase the performance by skipping the content comparison. It also fixed the problem of reporting difference for some cases of comparing the same file, e.g. empty files or files with incomparable objects the same file.
Test update:
Updat prvious test cases (171, 172, 530) affected by this fix, so they
still perfrom originally intended testing without bypassing.
Tested:
jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), cmake
2011-04-30 01:02:31 +08:00
|
|
|
}
|
2010-09-17 01:48:06 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
switch (object_type) {
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
* H5TRAV_TYPE_DATASET
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
*/
|
2007-09-13 23:44:56 +08:00
|
|
|
case H5TRAV_TYPE_DATASET:
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("diff object type H5TRAV_TYPE_DATASET - errstat:%d", opts->err_stat);
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((dset1_id = H5Dopen2(file1_id, path1, H5P_DEFAULT)) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Dopen2 failed");
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((dset2_id = H5Dopen2(file2_id, path2, H5P_DEFAULT)) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Dopen2 failed");
|
2020-07-16 00:20:16 +08:00
|
|
|
H5TOOLS_DEBUG("paths: %s - %s", path1, path2);
|
2017-10-14 05:34:01 +08:00
|
|
|
/* verbose (-v) and report (-r) mode */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose || opts->mode_report) {
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("dataset", path1, path2, opts);
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("call diff_dataset 1:%s 2:%s ", path1, path2);
|
2017-10-17 06:26:23 +08:00
|
|
|
nfound = diff_dataset(file1_id, file2_id, path1, path2, opts);
|
2007-09-13 23:44:56 +08:00
|
|
|
print_found(nfound);
|
2009-11-21 02:56:01 +08:00
|
|
|
}
|
|
|
|
/* quiet mode (-q), just count differences */
|
2020-09-30 22:27:10 +08:00
|
|
|
else if (opts->mode_quiet) {
|
2017-10-17 06:26:23 +08:00
|
|
|
nfound = diff_dataset(file1_id, file2_id, path1, path2, opts);
|
2009-11-21 02:56:01 +08:00
|
|
|
}
|
2017-10-14 05:34:01 +08:00
|
|
|
/* the rest (-c, none, ...) */
|
|
|
|
else {
|
2017-10-17 06:26:23 +08:00
|
|
|
nfound = diff_dataset(file1_id, file2_id, path1, path2, opts);
|
2011-09-17 03:29:03 +08:00
|
|
|
/* print info if difference found */
|
2017-10-14 05:34:01 +08:00
|
|
|
if (nfound) {
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("dataset", path1, path2, opts);
|
2017-01-17 23:55:15 +08:00
|
|
|
print_found(nfound);
|
2010-01-22 04:01:42 +08:00
|
|
|
}
|
2009-11-21 02:56:01 +08:00
|
|
|
}
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("diff after dataset:%d - errstat:%d", nfound, opts->err_stat);
|
2012-09-11 05:40:47 +08:00
|
|
|
|
|
|
|
/*---------------------------------------------------------
|
|
|
|
* compare attributes
|
2017-01-17 23:55:15 +08:00
|
|
|
* if condition refers to cases when the dataset is a
|
2012-09-11 05:40:47 +08:00
|
|
|
* referenced object
|
|
|
|
*---------------------------------------------------------
|
|
|
|
*/
|
2020-09-30 22:27:10 +08:00
|
|
|
if (path1 && !is_exclude_attr(path1, object_type, opts)) {
|
|
|
|
H5TOOLS_DEBUG("call diff_attr 1:%s 2:%s ", path1, path2);
|
2017-10-17 06:26:23 +08:00
|
|
|
nfound += diff_attr(dset1_id, dset2_id, path1, path2, opts);
|
2019-12-20 06:29:35 +08:00
|
|
|
}
|
2012-09-11 05:40:47 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Dclose(dset1_id) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Dclose failed");
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Dclose(dset2_id) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Dclose failed");
|
2007-09-13 23:44:56 +08:00
|
|
|
break;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
* H5TRAV_TYPE_NAMED_DATATYPE
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
*/
|
2007-09-13 23:44:56 +08:00
|
|
|
case H5TRAV_TYPE_NAMED_DATATYPE:
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("H5TRAV_TYPE_NAMED_DATATYPE 1:%s 2:%s ", path1, path2);
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((type1_id = H5Topen2(file1_id, path1, H5P_DEFAULT)) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Topen2 failed");
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((type2_id = H5Topen2(file2_id, path2, H5P_DEFAULT)) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Topen2 failed");
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((status = H5Tequal(type1_id, type2_id)) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Tequal failed");
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
/* if H5Tequal is > 0 then the datatypes refer to the same datatype */
|
2017-10-18 05:13:12 +08:00
|
|
|
nfound = (status > 0) ? 0 : 1;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (print_objname(opts, nfound))
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("datatype", path1, path2, opts);
|
2007-03-06 00:26:50 +08:00
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
/* always print the number of differences found in verbose mode */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
2007-09-13 23:44:56 +08:00
|
|
|
print_found(nfound);
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2010-02-17 03:43:05 +08:00
|
|
|
/*-----------------------------------------------------------------
|
2007-09-13 23:44:56 +08:00
|
|
|
* compare attributes
|
2017-01-17 23:55:15 +08:00
|
|
|
* the if condition refers to cases when the dataset is a
|
2010-02-17 03:43:05 +08:00
|
|
|
* referenced object
|
|
|
|
*-----------------------------------------------------------------
|
2007-09-13 23:44:56 +08:00
|
|
|
*/
|
2020-09-30 22:27:10 +08:00
|
|
|
if (path1 && !is_exclude_attr(path1, object_type, opts)) {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("call diff_attr 1:%s 2:%s ", path1, path2);
|
2017-10-17 06:26:23 +08:00
|
|
|
nfound += diff_attr(type1_id, type2_id, path1, path2, opts);
|
2019-12-20 06:29:35 +08:00
|
|
|
}
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Tclose(type1_id) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Tclose failed");
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Tclose(type2_id) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Tclose failed");
|
2007-09-13 23:44:56 +08:00
|
|
|
break;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
* H5TRAV_TYPE_GROUP
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
*/
|
2007-09-13 23:44:56 +08:00
|
|
|
case H5TRAV_TYPE_GROUP:
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("H5TRAV_TYPE_GROUP 1:%s 2:%s ", path1, path2);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (print_objname(opts, nfound))
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("group", path1, path2, opts);
|
2007-03-06 00:26:50 +08:00
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
/* always print the number of differences found in verbose mode */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
2007-09-13 23:44:56 +08:00
|
|
|
print_found(nfound);
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((grp1_id = H5Gopen2(file1_id, path1, H5P_DEFAULT)) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Gclose failed");
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((grp2_id = H5Gopen2(file2_id, path2, H5P_DEFAULT)) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Gclose failed");
|
2007-08-28 23:02:54 +08:00
|
|
|
|
2010-02-17 03:43:05 +08:00
|
|
|
/*-----------------------------------------------------------------
|
2007-09-13 23:44:56 +08:00
|
|
|
* compare attributes
|
2017-01-17 23:55:15 +08:00
|
|
|
* the if condition refers to cases when the dataset is a
|
2010-02-17 03:43:05 +08:00
|
|
|
* referenced object
|
|
|
|
*-----------------------------------------------------------------
|
2007-09-13 23:44:56 +08:00
|
|
|
*/
|
2020-09-30 22:27:10 +08:00
|
|
|
if (path1 && !is_exclude_attr(path1, object_type, opts)) {
|
2019-12-28 13:02:26 +08:00
|
|
|
H5TOOLS_DEBUG("call diff_attr 1:%s 2:%s ", path1, path2);
|
2017-10-17 06:26:23 +08:00
|
|
|
nfound += diff_attr(grp1_id, grp2_id, path1, path2, opts);
|
2019-12-20 06:29:35 +08:00
|
|
|
}
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Gclose(grp1_id) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Gclose failed");
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Gclose(grp2_id) < 0)
|
2019-12-28 16:16:44 +08:00
|
|
|
H5TOOLS_GOTO_ERROR(H5DIFF_ERR, "H5Gclose failed");
|
2007-09-13 23:44:56 +08:00
|
|
|
break;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
* H5TRAV_TYPE_LINK
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
case H5TRAV_TYPE_LINK: {
|
|
|
|
H5TOOLS_DEBUG("H5TRAV_TYPE_LINK 1:%s 2:%s ", path1, path2);
|
|
|
|
status = HDstrcmp(linkinfo1.trg_path, linkinfo2.trg_path);
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* if the target link name is not same then the links are "different" */
|
|
|
|
nfound = (status != 0) ? 1 : 0;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (print_objname(opts, nfound))
|
|
|
|
do_print_objname("link", path1, path2, opts);
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* always print the number of differences found in verbose mode */
|
|
|
|
if (opts->mode_verbose)
|
|
|
|
print_found(nfound);
|
|
|
|
} break;
|
2007-03-06 00:26:50 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
* H5TRAV_TYPE_UDLINK
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
case H5TRAV_TYPE_UDLINK: {
|
|
|
|
H5TOOLS_DEBUG("H5TRAV_TYPE_UDLINK 1:%s 2:%s ", path1, path2);
|
|
|
|
/* Only external links will have a query function registered */
|
|
|
|
if (linkinfo1.linfo.type == H5L_TYPE_EXTERNAL && linkinfo2.linfo.type == H5L_TYPE_EXTERNAL) {
|
|
|
|
/* If the buffers are the same size, compare them */
|
|
|
|
if (linkinfo1.linfo.u.val_size == linkinfo2.linfo.u.val_size) {
|
|
|
|
status = HDmemcmp(linkinfo1.trg_path, linkinfo2.trg_path, linkinfo1.linfo.u.val_size);
|
2017-10-14 05:34:01 +08:00
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
else
|
|
|
|
status = 1;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* if "linkinfo1.trg_path" != "linkinfo2.trg_path" then the links
|
|
|
|
* are "different" extlinkinfo#.path is combination string of
|
|
|
|
* file_name and obj_name
|
|
|
|
*/
|
|
|
|
nfound = (status != 0) ? 1 : 0;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (print_objname(opts, nfound))
|
|
|
|
do_print_objname("external link", path1, path2, opts);
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
} /* end if */
|
|
|
|
else {
|
|
|
|
/* If one or both of these links isn't an external link, we can only
|
|
|
|
* compare information from H5Lget_info since we don't have a query
|
|
|
|
* function registered for them.
|
|
|
|
*
|
|
|
|
* If the link classes or the buffer length are not the
|
|
|
|
* same, the links are "different"
|
|
|
|
*/
|
|
|
|
if ((linkinfo1.linfo.type != linkinfo2.linfo.type) ||
|
2017-10-14 05:34:01 +08:00
|
|
|
(linkinfo1.linfo.u.val_size != linkinfo2.linfo.u.val_size))
|
2020-09-30 22:27:10 +08:00
|
|
|
nfound = 1;
|
|
|
|
else
|
|
|
|
nfound = 0;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
if (print_objname(opts, nfound))
|
|
|
|
do_print_objname("user defined link", path1, path2, opts);
|
|
|
|
} /* end else */
|
2017-10-14 05:34:01 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* always print the number of differences found in verbose mode */
|
|
|
|
if (opts->mode_verbose)
|
|
|
|
print_found(nfound);
|
|
|
|
} break;
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2014-05-25 13:55:39 +08:00
|
|
|
case H5TRAV_TYPE_UNKNOWN:
|
2007-09-13 23:44:56 +08:00
|
|
|
default:
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
|
|
|
parallel_print("Comparison not supported: <%s> and <%s> are of type %s\n", path1, path2,
|
|
|
|
get_type(object_type));
|
2017-10-17 06:26:23 +08:00
|
|
|
opts->not_cmp = 1;
|
2007-09-13 23:44:56 +08:00
|
|
|
break;
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
2008-09-16 23:52:51 +08:00
|
|
|
|
2017-10-14 05:34:01 +08:00
|
|
|
done:
|
2017-10-18 05:13:12 +08:00
|
|
|
opts->err_stat = opts->err_stat | ret_value;
|
|
|
|
|
2010-02-17 03:43:05 +08:00
|
|
|
/*-----------------------------------
|
2017-01-17 23:55:15 +08:00
|
|
|
* handle dangling link(s)
|
2010-02-17 03:43:05 +08:00
|
|
|
*/
|
|
|
|
/* both path1 and path2 are dangling links */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (is_dangle_link1 && is_dangle_link2) {
|
|
|
|
if (print_objname(opts, nfound)) {
|
2017-10-17 06:26:23 +08:00
|
|
|
do_print_objname("dangling link", path1, path2, opts);
|
2010-02-17 03:43:05 +08:00
|
|
|
print_found(nfound);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* path1 is dangling link */
|
2017-10-14 05:34:01 +08:00
|
|
|
else if (is_dangle_link1) {
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
|
|
|
parallel_print("obj1 <%s> is a dangling link.\n", path1);
|
2010-02-17 03:43:05 +08:00
|
|
|
nfound++;
|
2020-09-30 22:27:10 +08:00
|
|
|
if (print_objname(opts, nfound))
|
2010-02-17 03:43:05 +08:00
|
|
|
print_found(nfound);
|
|
|
|
}
|
|
|
|
/* path2 is dangling link */
|
2017-10-14 05:34:01 +08:00
|
|
|
else if (is_dangle_link2) {
|
2020-09-30 22:27:10 +08:00
|
|
|
if (opts->mode_verbose)
|
2010-02-17 03:43:05 +08:00
|
|
|
parallel_print("obj2 <%s> is a dangling link.\n", path2);
|
|
|
|
nfound++;
|
2020-09-30 22:27:10 +08:00
|
|
|
if (print_objname(opts, nfound))
|
2010-02-17 03:43:05 +08:00
|
|
|
print_found(nfound);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free link info buffer */
|
|
|
|
if (linkinfo1.trg_path)
|
2014-11-01 02:11:42 +08:00
|
|
|
HDfree(linkinfo1.trg_path);
|
2010-02-17 03:43:05 +08:00
|
|
|
if (linkinfo2.trg_path)
|
2014-11-01 02:11:42 +08:00
|
|
|
HDfree(linkinfo2.trg_path);
|
2010-01-26 05:43:48 +08:00
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
/* close */
|
|
|
|
/* disable error reporting */
|
2020-09-30 22:27:10 +08:00
|
|
|
H5E_BEGIN_TRY
|
|
|
|
{
|
2017-10-14 05:34:01 +08:00
|
|
|
H5Dclose(dset1_id);
|
|
|
|
H5Dclose(dset2_id);
|
2007-09-13 23:44:56 +08:00
|
|
|
H5Tclose(type1_id);
|
|
|
|
H5Tclose(type2_id);
|
|
|
|
H5Gclose(grp1_id);
|
2017-10-14 05:34:01 +08:00
|
|
|
H5Gclose(grp2_id);
|
2007-09-13 23:44:56 +08:00
|
|
|
/* enable error reporting */
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
H5E_END_TRY;
|
2017-10-14 05:34:01 +08:00
|
|
|
|
2020-01-24 00:20:34 +08:00
|
|
|
H5TOOLS_ENDDEBUG(": %d - errstat:%d", nfound, opts->err_stat);
|
2005-02-07 07:45:15 +08:00
|
|
|
|
2007-09-13 23:44:56 +08:00
|
|
|
return nfound;
|
|
|
|
}
|