mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-26 07:23:08 +01:00
103 lines
4.7 KiB
C
103 lines
4.7 KiB
C
/*
|
|
* PROGRAM:
|
|
* MODULE: ibmgrswi.h
|
|
* DESCRIPTION: ibmgr switches
|
|
*
|
|
* The contents of this file are subject to the Interbase Public
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
*
|
|
* Software distributed under the License is distributed on an
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
* or implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code was created by Inprise Corporation
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
* Copyright (C) Inprise Corporation.
|
|
*
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________.
|
|
*
|
|
*/
|
|
|
|
#ifndef IBMGR_IBMGRSWI_H
|
|
#define IBMGR_IBMGRSWI_H
|
|
|
|
#include "../jrd/common.h"
|
|
|
|
/* Switch constants */
|
|
const int IN_SW_IBMGR_0 = 0; /* not a known switch */
|
|
const int IN_SW_IBMGR_START = 1; /* start server */
|
|
const int IN_SW_IBMGR_ONCE = 2; /* start server once */
|
|
const int IN_SW_IBMGR_FOREVER = 3; /* start server, restart when it dies */
|
|
const int IN_SW_IBMGR_SHUT = 4; /* shutdown server */
|
|
const int IN_SW_IBMGR_NOW = 5; /* immidiate shutdown */
|
|
const int IN_SW_IBMGR_NOAT = 6; /* no new attachments */
|
|
const int IN_SW_IBMGR_NOTR = 7; /* no new transaction */
|
|
const int IN_SW_IBMGR_IGNORE = 8; /* do not shutdown */
|
|
const int IN_SW_IBMGR_PASSWORD = 9; /* DB admin's password */
|
|
const int IN_SW_IBMGR_USER = 10; /* user's name */
|
|
const int IN_SW_IBMGR_HOST = 11; /* host where server's running */
|
|
const int IN_SW_IBMGR_SET = 12; /* sets host/user/password */
|
|
const int IN_SW_IBMGR_SHOW = 13; /* shows host/user/password */
|
|
const int IN_SW_IBMGR_QUIT = 14; /* exit command line interface */
|
|
const int IN_SW_IBMGR_HELP = 15; /* print help */
|
|
const int IN_SW_IBMGR_Z = 16; /* version */
|
|
const int IN_SW_IBMGR_PRINT = 17; /* Print Stats */
|
|
const int IN_SW_IBMGR_POOL = 18; /* Print pool */
|
|
|
|
/* I have added this to let the user decide whether startup errors should
|
|
stop ibguard from restating the server.
|
|
FSG 10.Nov.2000
|
|
*/
|
|
|
|
const int IN_SW_IBMGR_SIGNORE = 19; /* start server, restart when it dies, even if it was a start up error */
|
|
|
|
// Let startup script specify file to save fbserver's pid - AP 2006
|
|
const int IN_SW_IBMGR_PIDFILE = 20; /* Pid file name */
|
|
|
|
|
|
const int IN_SW_IBMGR_AMBIG = 99; /* ambiguous switch */
|
|
|
|
static const struct in_sw_tab_t ibmgr_in_sw_table [] =
|
|
{
|
|
{IN_SW_IBMGR_START, 0, "START", 0, 0, 0, FALSE, 0, 2, NULL}, /* start server */
|
|
{IN_SW_IBMGR_ONCE, 0, "ONCE", 0, 0, 0, FALSE, 0, 1, NULL}, /* start server once */
|
|
{IN_SW_IBMGR_FOREVER, 0, "FOREVER", 0, 0, 0, FALSE, 0, 1, NULL}, /* restart when server dies */
|
|
{IN_SW_IBMGR_SIGNORE, 0, "SIGNORE", 0, 0, 0, FALSE, 0, 1, NULL}, /* dito, ignore start up error */
|
|
{IN_SW_IBMGR_SHUT, 0, "SHUT", 0, 0, 0, FALSE, 0, 3, NULL}, /* shutdown server */
|
|
{IN_SW_IBMGR_NOW, 0, "NOW", 0, 0, 0, FALSE, 0, 3, NULL}, /* immidiate shutdown */
|
|
|
|
/* The following switches should be activated when
|
|
appropriate functionality is implemented
|
|
*/
|
|
/* {IN_SW_IBMGR_NOAT, 0, "NOAT", 0, 0, 0, FALSE, 0, 3, NULL}, *//* no new attachments */
|
|
/* {IN_SW_IBMGR_NOTR, 0, "NOTR", 0, 0, 0, FALSE, 0, 3, NULL}, *//* no new transaction */
|
|
/* {IN_SW_IBMGR_IGNORE, 0, "IGN", 0, 0, 0, FALSE, 0, 1, NULL}, *//* do not shutdown */
|
|
{IN_SW_IBMGR_PASSWORD, 0, "PASSWORD", 0, 0, 0, FALSE, 0, 2, NULL}, /* DB admin's password */
|
|
{IN_SW_IBMGR_USER, 0, "USER", 0, 0, 0, FALSE, 0, 1, NULL}, /* user's name */
|
|
{IN_SW_IBMGR_PIDFILE, 0, "PIDFILE", 0, 0, 0, FALSE, 0, 1, NULL}, /* file for fbserver's PID */
|
|
|
|
/* We can shutdown any server, but can start only local
|
|
thus we do not allow to change host for time being
|
|
*/
|
|
/* {IN_SW_IBMGR_HOST, 0, "HOST", 0, 0, 0, FALSE, 0, 2, NULL}, *//* where server's running */
|
|
|
|
/* SET is an internal operation and should not be activated
|
|
(unless we want a user to use it
|
|
*/
|
|
/* {IN_SW_IBMGR_SET, 0, "SET", 0, 0, 0, FALSE, 0, 2, NULL}, *//* sets host/user/password */
|
|
{IN_SW_IBMGR_SHOW, 0, "SHOW", 0, 0, 0, FALSE, 0, 3, NULL}, /* shows host/user/password */
|
|
{IN_SW_IBMGR_QUIT, 0, "QUIT", 0, 0, 0, FALSE, 0, 1, NULL}, /* exit command line */
|
|
{IN_SW_IBMGR_HELP, 0, "HELP", 0, 0, 0, FALSE, 0, 2, NULL}, /* print help */
|
|
{IN_SW_IBMGR_Z, 0, "Z", 0, 0, 0, FALSE, 0, 1, NULL}, /* version */
|
|
{IN_SW_IBMGR_PRINT, 0, "PRINT", 0, 0, 0, FALSE, 0, 2, NULL}, /* Print stats */
|
|
{IN_SW_IBMGR_POOL, 0, "POOL", 0, 0, 0, FALSE, 0, 2, NULL}, /* Print pool */
|
|
{IN_SW_IBMGR_0, 0, NULL, 0, 0, 0, FALSE, 0, 0, NULL} /* End of List */
|
|
};
|
|
|
|
#endif // IBMGR_IBMGRSWI_H
|
|
|