1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
/****************************************************************
* *
* Copyright (c) 2001-2019 Fidelity National Information *
* Services, Inc. and/or its subsidiaries. All rights reserved. *
* *
* 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. *
* *
****************************************************************/
#ifndef LOAD_INCLUDED
#define LOAD_INCLUDED
/*
* RECLOAD error message is used in 2 cases.
* 1. Range of records ( Eg: Error loading record number: 3 to 10 )
* 2. Single record ( Eg: Error loading record number: 3 )
*/
#define MAX_RECLOAD_ERR_MSG_SIZE ((STR_LEN_OF_E_9 * 2) + SIZEOF(" to ") + 1)
#define FAKE_BIG_KEY_COUNT 4294967196UL /* (2**32)-100=4294967196 */
#define ONERROR_STOP 0
#define ONERROR_PROCEED 1
#define ONERROR_INTERACTIVE 2
#define BADZCHSET -1
#define ONERROR_PROCESS \
{ \
GBLREF int onerror; \
\
if (ONERROR_STOP == onerror) \
{ \
break; \
} \
if (ONERROR_INTERACTIVE == onerror && !mu_interactive("Load terminated by operator\n")) \
{ \
onerror = ONERROR_STOP; \
/* User selected Not to proceed */ \
break; \
} \
mupip_error_occurred = FALSE; \
continue; /* continue, when (onerror = ONERROR_PROCEED) or when user selects Yes in ONERROR_INTERACTIVE */ \
}
void bin_load(gtm_uint64_t begin, gtm_uint64_t end, char *line1_ptr, int line1_len);
void go_call_db(int routine, char *parm1, int parm2, int val_off1, int val_len1);
int go_get(char **in_ptr, int max_len, uint4 max_rec_size);
void go_load(gtm_uint64_t begin, gtm_uint64_t end, unsigned char *recbuf, char *line3_ptr, int line3_len,
uint4 max_rec_size, int fmt, int utf8_extract, int dos);
void goq_load(void);
int get_load_format(char **line1_ptr, char **line3_ptr, int *line1_len, int *line3_len, uint4 *max_rec_size,
int *utf8_extract, int *dos);
boolean_t gtm_regex_perf(const char *rexpr, char *str_buff);
#endif /* LOAD_INCLUDED */
|