* harbour/make_rpm.sh
* check for rpmbuild also when BUGGY_RPM is set
* harbour/make_tgz.sh
* removed rebuild hbpptest with shared libraries
* harbour/include/hbapicls.h
+ added definitions for hb_clsCreate(), hb_clsAdd(), hb_clsAssociate()
* harbour/include/hbapierr.h
* harbour/source/rtl/errorapi.c
+ added hb_errFuncName - pseudo function name which can be used as
operation description in new error object. It should help to simplify
some code and fix function names when RT error is generated from C
function which can be executed from different .prg functions.
* harbour/include/hbclass.ch
+ added some missing Classy(y) compatible object variable type
descriptions: Int, Integer, Block
* harbour/source/rdd/dbfcdx/dbfcdx1.c
! disabled early retrieving from the cache key position and key count
* harbour/include/hbvm.h
* harbour/source/vm/hvm.c
+ added: void hb_vmPushEvalSym( void ) for the code which do not
want to access any [P]HB_SYMB structures
* changed symbol name in hb_symEval from __EVAL to EVAL and modified
hb_symEval registration method to not register hb_vmDoBlock as global
function. Having PHB_DYNS address for "EVAL" in hb_symEval.pDynSym
allows to eliminate some strcmp() when we are looking for EVAL public
symbol.
! fixed symbol table updating in PCODE functions for future multi module
.hrb files
* harbour/source/vm/proc.c
* use hb_symEval.pDynSym instead of strcmp()
* harbour/source/vm/arrays.c
* harbour/source/vm/debug.c
* minor code cleanup
* harbour/source/rtl/tclass.prg
* harbour/source/vm/classes.c
% separate message hash table from methods table - it will cause farther
reduction of allocated memory - many thanks to all people who send
me statistics about number of used classes and symbols from their code.
% use hb_symEval.pDynSym
+ added support for object variable type scope checking like in Class(y).
! fixed typo in pushing object class variables by reference
% s_pClasses is now indexed directly by class handle
% some other optimiztions
! make hidden and non virtual invisible in child classes if it overloaded
some other non hidden method. In such case the overloaded method is used
and can be accessed.
! make friend functions real method class oriented not (super)object for
hidden messages
188 lines
8.4 KiB
C
188 lines
8.4 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* Header file for the Error API
|
|
*
|
|
* Copyright 1999 Antonio Linares <alinares@fivetech.com>
|
|
* www - http://www.harbour-project.org
|
|
*
|
|
* 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, 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 software; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
#ifndef HB_APIERR_H_
|
|
#define HB_APIERR_H_
|
|
|
|
#include "hbapi.h"
|
|
#include "error.ch"
|
|
|
|
HB_EXTERN_BEGIN
|
|
|
|
/* Error codes (returned from hb_errLaunch()) */
|
|
|
|
#define E_BREAK 0xFFFF
|
|
#define E_RETRY 1
|
|
#define E_DEFAULT 0
|
|
|
|
/* Error flags */
|
|
|
|
#define EF_NONE 0
|
|
#define EF_CANRETRY 1
|
|
#define EF_CANSUBSTITUTE 2
|
|
#define EF_CANDEFAULT 4
|
|
|
|
/* oError:Severity */
|
|
|
|
/* ... defined in error.ch */
|
|
|
|
/* oError:SubSystem (commonly used) */
|
|
|
|
#define HB_ERR_SS_BASE "BASE"
|
|
#define HB_ERR_SS_TERMINAL "TERM"
|
|
#define HB_ERR_SS_DBCMD "DBCMD"
|
|
#define HB_ERR_SS_TOOLS "TOOLS"
|
|
|
|
/* oError:GenCode */
|
|
|
|
/* ... defined in extend.ch */
|
|
|
|
/* Internal error numbers */
|
|
|
|
#define HB_ERR_IE_NOT_ENOUGH_MEM 1024
|
|
#define HB_ERR_IE_ERR_RECOV_FAIL 1025
|
|
#define HB_ERR_IE_UNREC_ERROR 1026
|
|
#define HB_ERR_IE_GENERIC 1027
|
|
|
|
#define HB_ERR_ARGS_BASEPARAMS 0xFFFFFFFF
|
|
#define HB_ERR_ARGS_SELFPARAMS 0xFFFFFFFE
|
|
|
|
/* pseudo function name in operation description */
|
|
extern char hb_errFuncName;
|
|
|
|
/* Standard API */
|
|
|
|
extern char * hb_errGetDescription ( PHB_ITEM pError );
|
|
extern char * hb_errGetFileName ( PHB_ITEM pError );
|
|
extern USHORT hb_errGetFlags ( PHB_ITEM pError );
|
|
extern USHORT hb_errGetGenCode ( PHB_ITEM pError );
|
|
extern char * hb_errGetOperation ( PHB_ITEM pError );
|
|
extern USHORT hb_errGetOsCode ( PHB_ITEM pError );
|
|
extern USHORT hb_errGetSeverity ( PHB_ITEM pError );
|
|
extern USHORT hb_errGetSubCode ( PHB_ITEM pError );
|
|
extern char * hb_errGetSubSystem ( PHB_ITEM pError );
|
|
extern USHORT hb_errGetTries ( PHB_ITEM pError );
|
|
extern USHORT hb_errLaunch ( PHB_ITEM pError );
|
|
extern PHB_ITEM hb_errNew ( void );
|
|
extern PHB_ITEM hb_errPutArgs ( PHB_ITEM pError, ULONG ulArgCount, ... );
|
|
extern PHB_ITEM hb_errPutDescription ( PHB_ITEM pError, const char * szDescription );
|
|
extern PHB_ITEM hb_errPutFileName ( PHB_ITEM pError, const char * szFileName );
|
|
extern PHB_ITEM hb_errPutFlags ( PHB_ITEM pError, USHORT uiFlags );
|
|
extern PHB_ITEM hb_errPutGenCode ( PHB_ITEM pError, USHORT uiGenCode );
|
|
extern PHB_ITEM hb_errPutOperation ( PHB_ITEM pError, const char * szOperation );
|
|
extern PHB_ITEM hb_errPutOsCode ( PHB_ITEM pError, USHORT uiOsCode );
|
|
extern PHB_ITEM hb_errPutSeverity ( PHB_ITEM pError, USHORT uiSeverity );
|
|
extern PHB_ITEM hb_errPutSubCode ( PHB_ITEM pError, USHORT uiSubCode );
|
|
extern PHB_ITEM hb_errPutSubSystem ( PHB_ITEM pError, const char * szSubSystem );
|
|
extern PHB_ITEM hb_errPutTries ( PHB_ITEM pError, USHORT uiTries );
|
|
extern void hb_errRelease ( PHB_ITEM pError );
|
|
|
|
/* Harbour additions */
|
|
|
|
extern void hb_errInit ( void );
|
|
extern void hb_errExit ( void );
|
|
|
|
extern HB_EXPORT PHB_ITEM hb_errLaunchSubst( PHB_ITEM pError );
|
|
|
|
extern HB_EXPORT PHB_ITEM hb_errRT_New( USHORT uiSeverity,
|
|
const char * szSubSystem,
|
|
ULONG ulGenCode,
|
|
ULONG ulSubCode,
|
|
const char * szDescription,
|
|
const char * szOperation,
|
|
USHORT uiOsCode,
|
|
USHORT uiFlags );
|
|
|
|
extern HB_EXPORT PHB_ITEM hb_errRT_New_Subst( USHORT uiSeverity,
|
|
const char * szSubSystem,
|
|
ULONG ulGenCode,
|
|
ULONG ulSubCode,
|
|
const char * szDescription,
|
|
const char * szOperation,
|
|
USHORT uiOsCode,
|
|
USHORT uiFlags );
|
|
|
|
extern HB_EXPORT PHB_ITEM hb_errRT_SubstParams( const char *szSubSystem, ULONG ulGenCode, ULONG ulSubCode, const char * szDescription, const char * szOperation );
|
|
|
|
extern HB_EXPORT USHORT hb_errRT_BASE ( ULONG ulGenCode, ULONG ulSubCode, const char * szDescription, const char * szOperation, ULONG ulArgCount, ... );
|
|
extern HB_EXPORT USHORT hb_errRT_BASE_Ext1 ( ULONG ulGenCode, ULONG ulSubCode, const char * szDescription, const char * szOperation, USHORT uiOsCode, USHORT uiFlags, ULONG ulArgCount, ... );
|
|
extern HB_EXPORT PHB_ITEM hb_errRT_BASE_Subst ( ULONG ulGenCode, ULONG ulSubCode, const char * szDescription, const char * szOperation, ULONG ulArgCount, ... );
|
|
extern HB_EXPORT void hb_errRT_BASE_SubstR ( ULONG ulGenCode, ULONG ulSubCode, const char * szDescription, const char * szOperation, ULONG ulArgCount, ... );
|
|
extern HB_EXPORT USHORT hb_errRT_TERM ( ULONG ulGenCode, ULONG ulSubCode, const char * szDescription, const char * szOperation, USHORT uiOSCode, USHORT uiFlags );
|
|
extern HB_EXPORT USHORT hb_errRT_DBCMD ( ULONG ulGenCode, ULONG ulSubCode, const char * szDescription, const char * szOperation );
|
|
extern HB_EXPORT USHORT hb_errRT_DBCMD_Ext ( ULONG ulGenCode, ULONG ulSubCode, const char * szDescription, const char * szOperation, USHORT uiFlags );
|
|
extern HB_EXPORT USHORT hb_errRT_TOOLS ( ULONG ulGenCode, ULONG ulSubCode, const char * szDescription, const char * szOperation );
|
|
|
|
extern HB_EXPORT void hb_errInternal ( ULONG ulIntCode, const char * szText, const char * szPar1, const char * szPar2 );
|
|
|
|
/* Low-level error handling */
|
|
struct HB_ERROR_INFO_; /* forward declaration */
|
|
#define HB_ERROR_HANDLE( hbfunc ) HB_ITEM_PTR hbfunc( struct HB_ERROR_INFO_ * ErrorInfo )
|
|
typedef HB_ERROR_HANDLE( HB_ERROR_HANDLER );
|
|
typedef HB_ERROR_HANDLER * HB_ERROR_HANDLER_PTR;
|
|
|
|
typedef struct HB_ERROR_INFO_
|
|
{
|
|
HB_ERROR_HANDLER_PTR Func;
|
|
HB_ITEM_PTR Error;
|
|
void * Cargo;
|
|
struct HB_ERROR_INFO_ * Previous;
|
|
HB_ITEM_PTR ErrorBlock;
|
|
} HB_ERROR_INFO, * HB_ERROR_INFO_PTR;
|
|
|
|
/* set/get current error handler */
|
|
extern HB_EXPORT HB_ERROR_INFO_PTR hb_errorHandler( HB_ERROR_INFO_PTR pNewHandler );
|
|
|
|
HB_EXTERN_END
|
|
|
|
#endif /* HB_APIERR_H_ */
|