110 lines
3.4 KiB
C
110 lines
3.4 KiB
C
/*
|
|
Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License, version 2.0,
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is also distributed with certain software (including
|
|
but not limited to OpenSSL) that is licensed under separate terms,
|
|
as designated in a particular file or component or in included license
|
|
documentation. The authors of MySQL hereby grant you an additional
|
|
permission to link the program and your derivative works with the
|
|
separately licensed software that they have included with MySQL.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License, version 2.0, for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef MGMAPI_ERROR_H
|
|
#define MGMAPI_ERROR_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
/**
|
|
* Error codes
|
|
*/
|
|
enum ndb_mgm_error {
|
|
/** Not an error */
|
|
NDB_MGM_NO_ERROR = 0,
|
|
|
|
/* Request for service errors */
|
|
/** Supplied connectstring is illegal */
|
|
NDB_MGM_ILLEGAL_CONNECT_STRING = 1001,
|
|
/** Supplied NdbMgmHandle is illegal */
|
|
NDB_MGM_ILLEGAL_SERVER_HANDLE = 1005,
|
|
/** Illegal reply from server */
|
|
NDB_MGM_ILLEGAL_SERVER_REPLY = 1006,
|
|
/** Illegal number of nodes */
|
|
NDB_MGM_ILLEGAL_NUMBER_OF_NODES = 1007,
|
|
/** Illegal node status */
|
|
NDB_MGM_ILLEGAL_NODE_STATUS = 1008,
|
|
/** Memory allocation error */
|
|
NDB_MGM_OUT_OF_MEMORY = 1009,
|
|
/** Management server not connected */
|
|
NDB_MGM_SERVER_NOT_CONNECTED = 1010,
|
|
/** Could not connect to socker */
|
|
NDB_MGM_COULD_NOT_CONNECT_TO_SOCKET = 1011,
|
|
/** Could not bind local address */
|
|
NDB_MGM_BIND_ADDRESS = 1012,
|
|
|
|
/* Alloc node id failures */
|
|
/** Generic error, retry may succeed */
|
|
NDB_MGM_ALLOCID_ERROR = 1101,
|
|
/** Non retriable error */
|
|
NDB_MGM_ALLOCID_CONFIG_MISMATCH = 1102,
|
|
|
|
/* Service errors - Start/Stop Node or System */
|
|
/** Start failed */
|
|
NDB_MGM_START_FAILED = 2001,
|
|
/** Stop failed */
|
|
NDB_MGM_STOP_FAILED = 2002,
|
|
/** Restart failed */
|
|
NDB_MGM_RESTART_FAILED = 2003,
|
|
|
|
/* Service errors - Backup */
|
|
/** Unable to start backup */
|
|
NDB_MGM_COULD_NOT_START_BACKUP = 3001,
|
|
/** Unable to abort backup */
|
|
NDB_MGM_COULD_NOT_ABORT_BACKUP = 3002,
|
|
|
|
/* Service errors - Single User Mode */
|
|
/** Unable to enter single user mode */
|
|
NDB_MGM_COULD_NOT_ENTER_SINGLE_USER_MODE = 4001,
|
|
/** Unable to exit single user mode */
|
|
NDB_MGM_COULD_NOT_EXIT_SINGLE_USER_MODE = 4002,
|
|
|
|
/* Service errors - Configuration change */
|
|
/** Unable to start config change */
|
|
NDB_MGM_CONFIG_CHANGE_FAILED = 4011,
|
|
/** Unable to get configuration */
|
|
NDB_MGM_GET_CONFIG_FAILED = 4012,
|
|
|
|
/* Usage errors */
|
|
/** Usage error */
|
|
NDB_MGM_USAGE_ERROR = 5001
|
|
};
|
|
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
|
|
struct Ndb_Mgm_Error_Msg {
|
|
enum ndb_mgm_error code;
|
|
const char * msg;
|
|
};
|
|
|
|
extern const struct Ndb_Mgm_Error_Msg ndb_mgm_error_msgs[];
|
|
extern const int ndb_mgm_noOfErrorMsgs;
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|