📄 dba.h
字号:
/* 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 *//** * @mainpage DBA User Guide * * @section secIntro Introduction * DBA is an API to access the NDB Cluster. * * DBA supports transactions using an asynchronous execution model. * Everything but transactions is synchronous. * * DBA uses the concept of bindings to simplify database access. * A <em>binding</em> is a relation between a database table and * one or several C structs. * A binding is created initially and then used multiple time during * application execution. * * Each of the data accessing functions in DBA is implemented as a * transaction, i.e. the call will either fully complete or * nothing happens (the transaction fails). * * DBA also supports "read as much as possible" with bulk read. * With bulk read the application can specify a set of primary keys and * try to read all of the corresponding rows. The bulk read will not fail * if a row does not exist but will instead inform the application using a * RowFoundIndicator variable. * * A <em>request</em> is a transaction or a bulk read. * * @section secError Error Handling * When a synchronous method in DBA fails these methods are applicable: * -# DBA_GetLatestError() * -# DBA_GetLatestNdbError() * -# DBA_GetLatestErrorMsg() * * The DBA_GetLatestErrorMsg() will then return a description of * what has failed. * * For asynchronous methods the application should: * -# check that the RequestId returned by function is not * @ref DBA_INVALID_REQID * -# check Status supplied in callback (see @ref DBA_AsyncCallbackFn_t) * * If @ref DBA_INVALID_REQID is returned, * the details of error can be found using * "latest"-functions. * * If error is indicated in callback (using Status), when the * "latest"-functions are <b>NOT</b> applicable. * * @section secExamples Example Programs * * - @ref common.hpp * - @ref basic.cpp * - @ref br_test.cpp * - @ref ptr_binding_test.cpp * *//** * @page basic.cpp basic.cpp * @include basic.cpp *//** * @page common.hpp common.hpp * @include common.hpp *//** * @page br_test.cpp br_test.cpp * @include br_test.cpp *//** * @page ptr_binding_test.cpp ptr_binding_test.cpp * @include ptr_binding_test.cpp *//** @addtogroup DBA * @{ *//****** THIS LINE IS 80 CHARACTERS WIDE - DO *NOT* EXCEED 80 CHARACTERS! ****/#ifndef DBA_H#define DBA_H/* --- Include files ---- */#include <ndb_global.h>#include <defs/pcn_types.h>/* --- Types and definitions --- *//** * Possible error status for DBA functions. */typedef enum { DBA_NO_ERROR = 0, /**< Success */ DBA_NOT_IMPLEMENTED = -1, /**< Function not implemented */ DBA_NDB_ERROR = -2, /**< Uncategorised error from NDB */ DBA_ERROR = -3, /**< Uncategorised error from DBA implementation */ DBA_APPLICATION_ERROR = 1, /**< Function called with invalid argument(s) or other application errors */ DBA_NO_DATA = 2, /**< No row with specified PK existed */ DBA_CONSTRAINT_VIOLATION = 3, /**< There already exists a row with that PK*/ DBA_SCHEMA_ERROR = 4, /**< Table already exists */ DBA_INSUFFICIENT_SPACE = 5, /**< The DB is full */ DBA_TEMPORARY_ERROR = 6, /**< Some temporary problem occured */ DBA_TIMEOUT = 7, /**< The request timed out, probably due to dead-lock */ DBA_OVERLOAD = 8, /**< The DB is overloaded */ DBA_UNKNOWN_RESULT = 9 /**< It is unknown wheater transaction was commited or aborted */} DBA_Error_t;/** * Error code. This is the error code that is returned by NDB. * Not to be confused by the status returned by the DBA implementation. */typedef int DBA_ErrorCode_t;/** * DBA column types */typedef enum { DBA_CHAR, /**< String */ DBA_INT /**< Integer */} DBA_DataTypes_t;/** * Column description. * Used for creating tables. */typedef struct DBA_ColumnDesc { const char* Name; /**< Name of table column */ DBA_DataTypes_t DataType; /**< Datatype of table column*/ Size_t Size; /**< Column size in bytes */ Boolean_t IsKey; /**< True if column is part of primary key */} DBA_ColumnDesc_t;/** * Used to simplify binding definitions. See @ref DBA_ColumnBinding * for example. * * @param ColName Name of column in db table * @param Type Column/field type. * @param Struct Structure * @param Field Field in structure * @return Arg list for defining binding of type @ref DBA_Binding_t */#define DBA_BINDING( ColName, Type, Struct, Field ) \ { ColName, Type, PCN_SIZE_OF( Struct, Field ), \ PCN_OFFSET_OF( Struct, Field ), 0, 0 }/** * Used to simplify ptr binding definitions. See @ref DBA_ColumnBinding * for example. * * @param Struct Structure * @param Field Field in structure * @return Arg list for defining binding of type @ref DBA_Binding_t */#define DBA_BINDING_PTR(Struct, Field, ColBindings, NbCBindings) \ { 0, DBA_CHAR, NbCBindings, PCN_OFFSET_OF( Struct, Field ), \ 1, ColBindings }/** * The @ref DBA_ColumnBinding_t is used to describe a binding between one * column and one field of a C struct. * *<pre> * typedef struct Address { * char StreetName[30]; * int StreetNumber; * } Address_t; * * typdef struct Person { * char Name[30]; * Address_t * AddressPtr; * } Person_t; </pre> * * * For example, if the field Name of a Person_t data structure is * bound to the column "NAME", the corresponding binding would be * defined as: * *<pre> * DBA_ColumnBinding_t NameBinding = * DBA_BINDING( "name", DBA_CHAR, Person_t, Name ); </pre> * * * There is also the @ref DBA_BINDING_PTR which is used when * several linked structures should be put into one table. * * For example, if data in a Person_t data structure should be saved * in the same table as the Address_t data structure * (as the address belongs to the person), the corresponding binding would be * defined as: * *<pre> * DBA_ColumnBinding_t AddrBinding[AddrLen]; This binding describes how the * fields in the Address_t * structure is linked to the * table PERSON_ADDRESS * * DBA_ColumnBinding_t AddressBinding = * DBA_BINDING_PTR(Person_t, AddressPtr, AddrBinding, AddrLen); </pre> * * */struct DBA_ColumnBinding { const char* Name; /**< Name of table column */ DBA_DataTypes_t DataType; /**< Type of member in structure */ Size_t Size; /**< Size in bytes of member or no of @ref DBA_ColumnBinding's when doing ptr binding */ Size_t Offset; /**< Offset of the member */ Boolean_t Ptr; /**< True if binding is of ptr type */ const struct DBA_ColumnBinding * SubBinding; /**< Address of Binding Ptr valid if Ptr is true */};/** * Typedef: @ref DBA_ColumnBinding */typedef struct DBA_ColumnBinding DBA_ColumnBinding_t;/** * A @ref DBA_Binding_t object is used to establish a binding between * one or more columns of a table to the fields of C structs. * * It is used with insert, and update and read transactions to define * on which columns of the table the operations is performed, and to * which members of a C data structure they map. * * All key columns must be bound to a field of the struct. * * The function @ref DBA_CreateBinding is used to create this binding. */typedef struct DBA_Binding DBA_Binding_t;/* --- Exported functions --- *//** * Set DBA configuration parameter *<pre> * Id Description Default Min Max * == =========================== ======= ==== ==== * 0 NBP Interval 10 4 - * 1 Operations/Bulkread 1000 1 5000 * 2 Start transaction timeout 0 0 - * 3 Force send algorithm 1 0 2 *</pre> * @return Status */DBA_Error_t DBA_SetParameter(int ParameterId, int Value);/** * Set DBA configuration parameter. * See @ref DBA_SetParameter for description of parameters. * * @return Status */DBA_Error_t DBA_GetParameter(int ParameterId, int * Value);/** * Initialize DBA library and connect to NDB Cluster. * * @return Status */DBA_Error_t DBA_Open( ); /** * Close connection to NDB cluster and free allocated memory. * * @return Error status */DBA_Error_t DBA_Close(void); /** * Get latest DBA error. * * @note Only applicable to synchronous methods */DBA_Error_t DBA_GetLatestError();/** * Get latest NDB error. * * @note Only applicable to synchronous methods */DBA_ErrorCode_t DBA_GetLatestNdbError();/** * Get latest error string associated with DBA_GetLatestError(). * * @note String must not be free by caller of this method. * @note Only applicable to synchronous methods. */const char * DBA_GetLatestErrorMsg();/** * Get error msg associated with code * * @note String must not be free by caller of this method */const char * DBA_GetErrorMsg(DBA_Error_t);/** * Get error msg associated with code * * @note String must not be free by caller of this method */const char * DBA_GetNdbErrorMsg(DBA_ErrorCode_t);/** * Create a table. * * @param TableName Name of table to create. * @param NbColumns numbers of columns. * @param Columns Column descriptions. * @return Status. */DBA_Error_t DBA_CreateTable( const char* TableName, int NbColumns, const DBA_ColumnDesc_t Columns[] );/** * Destroy a table. * * @param TableName Table name. * @return Status. * @note Not implemented */DBA_Error_t DBA_DropTable( const char* TableName );/** * Test for existence of a table. * * @param TableName Table name. * @return Boolean value indicating if table exists or not.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -