mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
100 lines
2.4 KiB
C
100 lines
2.4 KiB
C
/* Copyright (C) 2003 MySQL AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
#ifndef NDBERROR_H
|
|
#define NDBERROR_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum
|
|
{
|
|
ndberror_st_success = 0,
|
|
ndberror_st_temporary = 1,
|
|
ndberror_st_permanent = 2,
|
|
ndberror_st_unknown = 3
|
|
} ndberror_status_enum;
|
|
|
|
typedef enum
|
|
{
|
|
ndberror_cl_none = 0,
|
|
ndberror_cl_application = 1,
|
|
ndberror_cl_no_data_found = 2,
|
|
ndberror_cl_constraint_violation = 3,
|
|
ndberror_cl_schema_error = 4,
|
|
ndberror_cl_user_defined = 5,
|
|
ndberror_cl_insufficient_space = 6,
|
|
ndberror_cl_temporary_resource = 7,
|
|
ndberror_cl_node_recovery = 8,
|
|
ndberror_cl_overload = 9,
|
|
ndberror_cl_timeout_expired = 10,
|
|
ndberror_cl_unknown_result = 11,
|
|
ndberror_cl_internal_error = 12,
|
|
ndberror_cl_function_not_implemented = 13,
|
|
ndberror_cl_unknown_error_code = 14,
|
|
ndberror_cl_node_shutdown = 15
|
|
} ndberror_classification_enum;
|
|
|
|
|
|
typedef struct {
|
|
|
|
/**
|
|
* Error status.
|
|
*/
|
|
ndberror_status_enum status;
|
|
|
|
/**
|
|
* Error type
|
|
*/
|
|
ndberror_classification_enum classification;
|
|
|
|
/**
|
|
* Error code
|
|
*/
|
|
int code;
|
|
|
|
/**
|
|
* Error message
|
|
*/
|
|
const char * message;
|
|
|
|
/**
|
|
* The detailed description. This is extra information regarding the
|
|
* error which is not included in the error message.
|
|
*
|
|
* @note Is NULL when no details specified
|
|
*/
|
|
char * details;
|
|
|
|
} ndberror_struct;
|
|
|
|
|
|
typedef ndberror_status_enum ndberror_status;
|
|
typedef ndberror_classification_enum ndberror_classification;
|
|
|
|
const char *ndberror_status_message(ndberror_status);
|
|
const char *ndberror_classification_message(ndberror_classification);
|
|
void ndberror_update(ndberror_struct *);
|
|
int ndb_error_string(int err_no, char *str, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|