File: dbcertify_cmd.c

package info (click to toggle)
fis-gtm 6.2-000-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,784 kB
  • ctags: 42,554
  • sloc: ansic: 358,483; asm: 4,847; csh: 4,574; sh: 2,261; awk: 200; makefile: 86; sed: 13
file content (62 lines) | stat: -rw-r--r-- 2,850 bytes parent folder | download
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
58
59
60
61
62
/****************************************************************
 *								*
 *	Copyright 2005, 2011 Fidelity Information Services, LLC.	*
 *								*
 *	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.	*
 *								*
 ****************************************************************/

#include "mdef.h"

#include "cli.h"

/* Below are defined in dbcertify.h but that requires SO many includes prior this seemed easier */
void dbcertify_scan_phase(void);
void dbcertify_certify_phase(void);

/*********************************************************************
 * Parameters must be defined in the order they are to be specified
 * AND must be alphabetical
 *
 * This file might have lines longer than 132 characters
 * since the command tables are being initialized.
 *********************************************************************/

static readonly CLI_PARM dbscan_parm[] = {
	{ "REGION", "Region:", PARM_REQ},
	{ "", "", PARM_REQ}
};

static	CLI_ENTRY	dbscan_qual[] = {
	{ "BSU_KEYS",      0, 0, 0,            0,                  0, 0, VAL_DISALLOWED,  1, NEG,     VAL_N_A, 0       },
	{ "DEBUG",         0, 0, 0,            0,                  0, 0, VAL_DISALLOWED,  1, NEG,     VAL_N_A, 0       },
	{ "DETAIL",        0, 0, 0,            0,                  0, 0, VAL_DISALLOWED,  1, NEG,     VAL_N_A, 0       },
	{ "KEEP_TEMPS",    0, 0, 0,            0,                  0, 0, VAL_DISALLOWED,  1, NEG,     VAL_N_A, 0       },
	{ "OUTFILE",       0, 0, 0,            0,                  0, 0, VAL_REQ,         1, NON_NEG, VAL_STR, 0       },
	{ "REPORT_ONLY",   0, 0, 0,            0,                  0, 0, VAL_DISALLOWED,  1, NEG,     VAL_N_A, 0       },
	{ "TEMPFILE_DIR",  0, 0, 0,            0,                  0, 0, VAL_REQ,         1, NON_NEG, VAL_STR, 0       },
	{ 0 }
};

static readonly CLI_PARM dbcertify_parm[] = {
	{ "P1OUTFILE", "SCAN output file:", PARM_REQ},
	{ "", "", PARM_REQ}
};

static	CLI_ENTRY	dbcertify_qual[] = {
	{ "BLOCKS",	   0, 0, 0,	       0,		   0, 0, VAL_REQ,	  1, NON_NEG, VAL_HEX, 0       },
	{ "DEBUG",         0, 0, 0,            0,                  0, 0, VAL_DISALLOWED,  1, NEG,     VAL_N_A, 0       },
	{ "KEEP_TEMPS",    0, 0, 0,            0,                  0, 0, VAL_DISALLOWED,  1, NEG,     VAL_N_A, 0       },
	{ "TEMPFILE_DIR",  0, 0, 0,            0,                  0, 0, VAL_REQ,         1, NON_NEG, VAL_STR, 0       },
	{ 0 }
};


GBLDEF	CLI_ENTRY	dbcertify_cmd_ary[] = {
	{ "CERTIFY",   dbcertify_certify_phase, dbcertify_qual,   dbcertify_parm,   0, 0,    0, VAL_DISALLOWED, 1, 0, 0, 0 },
	{ "SCAN",      dbcertify_scan_phase,	dbscan_qual,	  dbscan_parm,      0, 0,    0, VAL_DISALLOWED, 1, 0, 0, 0 },
	{ 0 }
};