Files
harbour-core/contrib/hbxpp/dllx.c
Viktor Szakats 9f16c2bf8e 2017-08-13 18:27 UTC Viktor Szakats (vszakats users.noreply.github.com)
* *
    * update copyright headers with new FSF postal address
    * COPYING.txt -> LICENSE.txt (rest of repo to be synced)
2017-08-13 18:38:59 +00:00

215 lines
6.7 KiB
C

/*
* Dynamic library handling functions (Xbase++ compatible)
*
* Copyright 2010 Viktor Szakats (vszakats.net/harbour)
* Copyright 2006 Paul Tucker <ptucker@sympatico.ca>
* Copyright 2002 Vic McClung <vicmcclung@vicmcclung.com>
*
* 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 program; see the file LICENSE.txt. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA (or visit https://www.gnu.org/licenses/).
*
* 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.
*
*/
#include "hbapi.h"
#include "hbapierr.h"
#include "hbapiitm.h"
#include "hbdyn.ch"
#include "dll.ch"
/* NOTE: I'm not totally familiar with how Xbase++ works. This functionality
was derived from the context in which the functions are used. [pt] */
typedef struct
{
PHB_ITEM pLibraryHandle;
int iFuncFlags;
void * pFunctionPtr; /* Function Address */
} HB_DLLEXEC, * PHB_DLLEXEC;
static HB_GARBAGE_FUNC( _DLLUnload )
{
PHB_DLLEXEC xec = ( PHB_DLLEXEC ) Cargo;
if( xec->pLibraryHandle )
{
/* by default we do not free library in pLibraryHandle destructor
* (look at hb_libRelease() in dynlibhb.c). If you want to free
* library call here hb_libFree( xec->pLibraryHandle ).
*/
hb_gcRefFree( xec->pLibraryHandle );
xec->pLibraryHandle = NULL;
}
}
static HB_GARBAGE_FUNC( _DLLMark )
{
PHB_DLLEXEC xec = ( PHB_DLLEXEC ) Cargo;
if( xec->pLibraryHandle )
hb_gcMark( xec->pLibraryHandle );
}
static const HB_GC_FUNCS s_gcDllFuncs =
{
_DLLUnload,
_DLLMark
};
/* NOTE: In Harbour this function will return an in-memory object, not a string.
2nd and 3rd parameters are not supported in Harbour. */
HB_FUNC_TRANSLATE( DLLLOAD, HB_LIBLOAD )
HB_FUNC_TRANSLATE( DLLUNLOAD, HB_LIBFREE )
/* NOTE: Function ordinals are not supported in 3rd parameter. */
HB_FUNC( DLLCALL )
{
PHB_ITEM pLibrary = hb_param( 1, HB_IT_ANY );
PHB_ITEM pLibraryHandle = NULL;
HB_BOOL bFreeLibrary = HB_FALSE;
if( pLibrary )
{
if( HB_IS_STRING( pLibrary ) )
{
pLibraryHandle = hb_libLoad( pLibrary, NULL );
if( pLibraryHandle )
bFreeLibrary = HB_TRUE;
}
else if( hb_libHandle( pLibrary ) )
pLibraryHandle = pLibrary;
}
if( pLibraryHandle )
{
int iXPPFlags = hb_parni( 2 );
int iFuncFlags = 0;
void * pFunctionPtr = hb_libSymAddr( pLibraryHandle, hb_parcx( 3 ) );
if( ( iXPPFlags & DLL_CDECL ) != 0 )
iFuncFlags |= HB_DYN_CALLCONV_CDECL;
if( ( iXPPFlags & DLL_STDCALL ) != 0 )
iFuncFlags |= HB_DYN_CALLCONV_STDCALL;
if( ( iXPPFlags & DLL_SYSTEM ) != 0 )
iFuncFlags |= HB_DYN_CALLCONV_SYSCALL;
hb_dynCall( iFuncFlags,
pFunctionPtr,
hb_pcount(),
4,
NULL );
if( bFreeLibrary )
hb_libFree( pLibraryHandle );
}
}
/* NOTE: Function ordinals are not supported in 3rd parameter. */
/* NOTE: In Harbour this function will return an in-memory object, not a string. */
HB_FUNC( DLLPREPARECALL )
{
PHB_ITEM pLibrary = hb_param( 1, HB_IT_ANY );
PHB_ITEM pLibraryHandle = NULL;
HB_BOOL bFreeLibrary = HB_FALSE;
const char * pszErrorText;
if( pLibrary )
{
if( HB_IS_STRING( pLibrary ) )
{
pLibraryHandle = hb_libLoad( pLibrary, NULL );
if( pLibraryHandle )
bFreeLibrary = HB_TRUE;
}
else if( hb_libHandle( pLibrary ) )
pLibraryHandle = pLibrary;
}
if( pLibraryHandle )
{
void * pFunctionPtr = hb_libSymAddr( pLibraryHandle, hb_parcx( 3 ) );
if( pFunctionPtr )
{
int iXPPFlags = hb_parni( 2 ), iFuncFlags = 0;
PHB_DLLEXEC xec;
if( ( iXPPFlags & DLL_CDECL ) != 0 )
iFuncFlags |= HB_DYN_CALLCONV_CDECL;
if( ( iXPPFlags & DLL_STDCALL ) != 0 )
iFuncFlags |= HB_DYN_CALLCONV_STDCALL;
if( ( iXPPFlags & DLL_SYSTEM ) != 0 )
iFuncFlags |= HB_DYN_CALLCONV_SYSCALL;
if( !bFreeLibrary )
hb_gcRefInc( pLibraryHandle );
xec = ( PHB_DLLEXEC ) hb_gcAllocate( sizeof( HB_DLLEXEC ), &s_gcDllFuncs );
xec->pLibraryHandle = pLibraryHandle;
xec->iFuncFlags = iFuncFlags;
xec->pFunctionPtr = pFunctionPtr;
hb_retptrGC( xec );
return;
}
pszErrorText = "Invalid function name";
}
else
pszErrorText = HB_ISCHAR( 1 ) ? "Invalid library name" : "Invalid library handle";
if( bFreeLibrary )
hb_libFree( pLibraryHandle );
hb_errRT_BASE( EG_ARG, 2010, pszErrorText, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
}
HB_FUNC( DLLEXECUTECALL )
{
PHB_DLLEXEC xec = ( PHB_DLLEXEC ) hb_parptrGC( &s_gcDllFuncs, 1 );
if( xec && xec->pLibraryHandle && xec->pFunctionPtr )
hb_dynCall( xec->iFuncFlags,
xec->pFunctionPtr,
hb_pcount(),
2,
NULL );
}