2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2024-07-19 11:43:27 -04:00
|
|
|
* Copyright 2005, 2012 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************
|
|
|
|
DBCERTIFY - main driver
|
|
|
|
|
|
|
|
Parse arguments, invoke required phase routine.
|
|
|
|
|
|
|
|
Note: Most routines in this utility are self-contained
|
|
|
|
meaning they do not reference GT.M library routines
|
|
|
|
(with some notable exceptions). This is because
|
|
|
|
phase-1 is going to run against live V4 databases
|
|
|
|
and the V5 compilation will be using V5 database
|
|
|
|
structures.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "mdef.h"
|
|
|
|
|
|
|
|
#include "gtm_ctype.h"
|
|
|
|
#include "gtm_stdio.h"
|
|
|
|
#include "gtm_string.h"
|
|
|
|
#include "gtm_unistd.h"
|
|
|
|
#include "gtm_stdlib.h"
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#ifdef UNIX
|
2024-07-19 11:43:27 -04:00
|
|
|
# include "continue_handler.h"
|
|
|
|
# include "sig_init.h"
|
2012-02-05 11:35:58 -05:00
|
|
|
#else
|
2024-07-19 11:43:27 -04:00
|
|
|
# include "desblk.h" /* for desblk structure */
|
2012-02-05 11:35:58 -05:00
|
|
|
#endif
|
|
|
|
#include "gdsroot.h"
|
|
|
|
#include "v15_gdsroot.h"
|
|
|
|
#include "gtm_facility.h"
|
|
|
|
#include "fileinfo.h"
|
|
|
|
#include "gdsbt.h"
|
|
|
|
#include "v15_gdsbt.h"
|
|
|
|
#include "gdsblk.h"
|
|
|
|
#include "gdsfhead.h"
|
|
|
|
#include "v15_gdsfhead.h"
|
|
|
|
#include "gdsblkops.h"
|
|
|
|
#include "mupip_exit.h"
|
|
|
|
#include "gtmimagename.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "iosp.h"
|
|
|
|
#include "gtm_env_init.h"
|
|
|
|
#include "dbcertify.h"
|
|
|
|
#include "cli.h"
|
|
|
|
#include "gtm_imagetype_init.h"
|
|
|
|
#include "gtm_threadgbl_init.h"
|
2024-07-19 11:43:27 -04:00
|
|
|
#include "wbox_test_init.h"
|
2012-02-05 11:35:58 -05:00
|
|
|
|
|
|
|
GBLREF uint4 process_id;
|
|
|
|
GBLREF boolean_t gtm_utf8_mode;
|
|
|
|
#ifdef VMS
|
|
|
|
GBLREF desblk exi_blk;
|
|
|
|
GBLREF int4 exi_condition;
|
|
|
|
#endif
|
|
|
|
#ifdef UNIX
|
|
|
|
GBLREF CLI_ENTRY dbcertify_cmd_ary[];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
GBLDEF phase_static_area *psa_gbl; /* Global anchor for static area */
|
|
|
|
#ifdef UNIX
|
|
|
|
GBLDEF CLI_ENTRY *cmd_ary = &dbcertify_cmd_ary[0]; /* Define cmd_ary to be the DBCERTIFY specific cmd table */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int UNIX_ONLY(main)VMS_ONLY(dbcertify)(int argc, char **argv)
|
|
|
|
{
|
|
|
|
DCL_THREADGBL_ACCESS;
|
|
|
|
|
|
|
|
/* Initialization of scaffolding we run on */
|
|
|
|
GTM_THREADGBL_INIT;
|
|
|
|
gtm_imagetype_init(DBCERTIFY_IMAGE);
|
|
|
|
gtm_env_init();
|
|
|
|
gtm_utf8_mode = FALSE; /* Only ever runs in V4 database so NO utf8 mode -- ever */
|
|
|
|
psa_gbl = malloc(SIZEOF(*psa_gbl));
|
|
|
|
memset(psa_gbl, 0, SIZEOF(*psa_gbl));
|
|
|
|
UNIX_ONLY(err_init(dbcertify_base_ch));
|
2024-07-19 11:43:27 -04:00
|
|
|
UNIX_ONLY(sig_init(dbcertify_signal_handler, dbcertify_signal_handler, NULL, continue_handler));
|
2012-02-05 11:35:58 -05:00
|
|
|
VMS_ONLY(util_out_open(0));
|
|
|
|
VMS_ONLY(SET_EXIT_HANDLER(exi_blk, dbcertify_exit_handler, exi_condition)); /* Establish exit handler */
|
|
|
|
VMS_ONLY(ESTABLISH(dbcertify_base_ch));
|
|
|
|
process_id = getpid();
|
|
|
|
/* Structure checks .. */
|
|
|
|
assert((24 * 1024) == SIZEOF(v15_sgmnt_data)); /* Verify V4 file header hasn't suddenly increased for some odd reason */
|
2024-07-19 11:43:27 -04:00
|
|
|
OPERATOR_LOG_MSG;
|
2012-02-05 11:35:58 -05:00
|
|
|
/* Platform dependent method to get the option scan going and invoke necessary driver routine */
|
|
|
|
dbcertify_parse_and_dispatch(argc, argv);
|
|
|
|
return SS_NORMAL;
|
|
|
|
}
|