gambas-source-code/main/gbx/gbx_extern.c
Benoît Minisini 5f900c0b68 [DEVELOPMENT ENVIRONMENT]
* NEW: English and french tips were updated. A new tip was added.
* NEW: Files that were opened at project close are automatically reopened
  when the project is loaded again.
* NEW: A warning message is displayed when the GNU translation tools are
  not installed.
* BUG: The code editor method combo-box is correctly updated now.
* BUG: Some fixes in the automatic completion.
* BUG: Replace points by dash in the name of packages generated by the IDE
  packager.
* NEW: Updated russian translation
* NEW: Updated french translation

[DATABASE MANAGER]
* NEW: Updated russian translation

[EXAMPLES]
* BUG: Fixed the Gravity and the GameOfLife examples so that they do not
  use public form controls anymore.

[INTERPRETER]
* OPT: Many optimizations in the string substitution routines, the 
  internal datatype conversions, the INPUT and LINE INPUT instructions, the 
  error messages generation, the object and string reference counting, and
  the memory allocation routines.
* NEW: Opening a device file in direct mode (FOR READ/WRITE) is now 
  automatically non blocking.
* OPT: Lof() now only tries its different methods (ioctl and lseek) once.
* BUG: Val() now ignores thousand separators characters at the end of the 
  number.
* NEW: A new flag for enabling the stack trace generation at each error.

[GB.DEBUG]
* BUG: The gb.debug component interface declaration was not 64-bits aware.

[GB.EVAL]
* BUG: The Highlight.Purge() method now correctly deals with non-ASCII 
 characters.

[GB.FORM]
* BUG: TableView.Edit() does not raise a "read-only combo-box" error 
  anymore.
  
[GB.FORM.DIALOG]
* BUG: Dialog buttons now are never cut.

[GB.GTK]
* BUG: Cached drawing areas are correctly redrawn now.
* BUG: Loading big images now works correctly. There is apparently a bug 
  in the GTK+ image loader, and I found a workaround.
* BUG: Message boxes correctly display the text of their buttons now.

[GB.QT]
* BUG: The Open, and initial Move and Resize event of embedded forms are 
  now always raised when you call the Show method or if you set the Visible
  property. Before, it was raised when the embedded form was actually 
  shown.

[GB.SETTINGS]
* NEW: Settings are now stored in ~/.config/gambasX, where X is the 
  gambas version number.
* BUG: Strings are correctly quoted inside the settings file now.

[GB.WEB]
* NEW: Application.Protocol is a new property that allows to tell the 
  component that the protocol is not necessarily "http".


git-svn-id: svn://localhost/gambas/trunk@1153 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-03-11 13:29:47 +00:00

405 lines
8.1 KiB
C

/***************************************************************************
gbx_extern.c
Extern calls in dynamic libraries
(c) 2000-2007 Benoit Minisini <gambas@users.sourceforge.net>
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 1, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
***************************************************************************/
#define __GBX_EXTERN_C
#include "config.h"
#include "gb_common.h"
#include <ffi.h>
#include "gb_common_buffer.h"
#include "gb_table.h"
#include "gbx_type.h"
#include "gbx_value.h"
#include "gbx_class.h"
#include "gbx_exec.h"
#include "gbx_api.h"
#include "gbx_extern.h"
typedef
struct {
SYMBOL sym;
lt_dlhandle handle;
}
EXTERN_SYMBOL;
static TABLE *_table = NULL;
static ffi_type *_to_ffi_type[17] = {
&ffi_type_void, &ffi_type_sint32, &ffi_type_sint32, &ffi_type_sint32,
&ffi_type_sint32, &ffi_type_sint64, &ffi_type_float, &ffi_type_double,
&ffi_type_void, &ffi_type_pointer, &ffi_type_pointer, &ffi_type_void,
&ffi_type_void, &ffi_type_void, &ffi_type_void, &ffi_type_pointer,
&ffi_type_pointer
};
static lt_dlhandle get_library(char *name)
{
EXTERN_SYMBOL *esym;
char *p;
if (!_table)
TABLE_create(&_table, sizeof(EXTERN_SYMBOL), TF_NORMAL);
TABLE_add_symbol(_table, name, strlen(name), (SYMBOL **)(void *)&esym, NULL);
if (!esym->handle)
{
/* !!! Must add the suffix !!! */
p = strrchr(name, ':');
if (!p)
sprintf(COMMON_buffer, "%s." SHARED_LIBRARY_EXT, name);
else
sprintf(COMMON_buffer, "%.*s." SHARED_LIBRARY_EXT ".%s", (int)(p - name), name, p + 1);
name = COMMON_buffer;
#ifndef DONT_USE_LTDL
/* no more available in libltld ?
lt_dlopen_flag = RTLD_LAZY;
*/
esym->handle = lt_dlopenext(name);
#else
esym->handle = dlopen(name, RTLD_LAZY);
#endif
if (esym->handle == NULL)
THROW(E_EXTLIB, name, lt_dlerror());
//fprintf(stderr, "%s loaded.\n", name);
}
return esym->handle;
}
static void *get_function(CLASS_EXTERN *ext)
{
lt_dlhandle handle;
void *func;
if (ext->loaded)
return (void *)ext->alias;
handle = get_library(ext->library);
func = lt_dlsym(handle, ext->alias);
if (func == NULL)
{
lt_dlclose(handle);
THROW(E_EXTSYM, ext->library, ext->alias);
}
//ext->library = (char *)handle;
ext->alias = (char *)func;
ext->loaded = TRUE;
return func;
}
/*
EXEC.class : the class
EXEC.index : the extern function index
EXEC.nparam : the number of parameters to the call
EXEC.drop : if the return value should be dropped.
*/
void EXTERN_call(void)
{
static const void *jump[17] = {
&&__VOID, &&__BOOLEAN, &&__BYTE, &&__SHORT, &&__INTEGER, &&__LONG, &&__SINGLE, &&__FLOAT, &&__DATE,
&&__STRING, &&__STRING, &&__VARIANT, &&__ARRAY, &&__FUNCTION, &&__CLASS, &&__NULL, &&__OBJECT
};
static const int use_temp[17] = { 0, 0, 0, 0, 0, 0, sizeof(float), 0, 0, sizeof(char *), sizeof(char *), 0, 0, 0, 0, 0, sizeof(void *) };
static char temp[4 * sizeof(void *)];
static void *null = 0;
CLASS_EXTERN *ext = &EXEC.class->load->ext[EXEC.index];
int nparam = EXEC.nparam;
ffi_cif cif;
ffi_type *types[nparam];
ffi_type *rtype;
void *args[nparam];
int rvalue[4];
TYPE *sign;
VALUE *value;
char *tmp = NULL;
char *next_tmp;
void *func;
int i, t;
if (nparam < ext->n_param)
THROW(E_NEPARAM);
if (nparam > ext->n_param)
THROW(E_TMPARAM);
sign = (TYPE *)ext->param;
value = &SP[-nparam];
next_tmp = temp;
for (i = 0; i < nparam; i++, value++, sign++)
{
VALUE_conv(value, *sign);
if (TYPE_is_object(value->type))
t = T_OBJECT;
else
t = (int)value->type;
if (use_temp[t])
{
tmp = next_tmp;
if ((tmp + use_temp[t]) > &temp[sizeof(temp)])
THROW(E_TMPARAM);
args[i] = tmp;
next_tmp = tmp + use_temp[t];
}
types[i] = _to_ffi_type[t];
goto *jump[t];
__BOOLEAN:
__BYTE:
__SHORT:
__INTEGER:
args[i] = &value->_integer.value;
continue;
__LONG:
args[i] = &value->_long.value;
continue;
__SINGLE:
*((float *)tmp) = (float)value->_float.value;
continue;
__FLOAT:
args[i] = &value->_float.value;
continue;
__STRING:
*((char **)tmp) = (char *)(value->_string.addr + value->_string.start);
continue;
__OBJECT:
{
void *ob = value->_object.object;
CLASS *class = OBJECT_class(ob);
if (!CLASS_is_native(class) && class == CLASS_Class)
*((void **)tmp) = class->stat;
else
*((void **)tmp) = (char *)ob + sizeof(OBJECT);
}
continue;
__NULL:
args[i] = &null;
continue;
__DATE:
__VARIANT:
__VOID:
__ARRAY:
__CLASS:
__FUNCTION:
ERROR_panic("Bad type (%d) for EXTERN_call", value->type);
}
rtype = _to_ffi_type[ext->type];
func = get_function(ext);
if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, nparam, rtype, types) != FFI_OK)
ERROR_panic("ffi_prep_cif has failed");
ffi_call(&cif, func, rvalue, args);
switch (ext->type)
{
case T_BOOLEAN:
case T_BYTE:
case T_SHORT:
case T_INTEGER:
GB_ReturnInteger(*(int *)POINTER(rvalue));
break;
case T_LONG:
GB_ReturnLong(*(int64_t *)POINTER(rvalue));
break;
case T_SINGLE:
GB_ReturnFloat(*(float *)POINTER(rvalue));
break;
case T_FLOAT:
GB_ReturnFloat(*(double *)POINTER(rvalue));
break;
case T_STRING:
GB_ReturnConstString(*(char **)POINTER(rvalue), 0);
break;
default:
//GB_ReturnNull();
break;
}
while (nparam > 0)
{
nparam--;
POP();
}
POP(); /* extern function */
/* from EXEC_native() */
BORROW(&TEMP);
if (EXEC.drop)
{
RELEASE(&TEMP);
}
else
{
VALUE_conv(&TEMP, ext->type);
*SP = TEMP;
SP++;
}
}
#if 0
#define CAST(_type, _func) (*((_type (*)())_func))
void old_EXTERN_call(void)
{
CLASS_EXTERN *ext = &EXEC.class->load->ext[EXEC.index];
int nparam = EXEC.nparam;
int i, sz;
VALUE *value;
TYPE *sign;
ARGS args;
int *parg, *marg;
void *func;
if (nparam < ext->n_param)
THROW(E_NEPARAM);
if (nparam > ext->n_param)
THROW(E_TMPARAM);
if (nparam)
{
value = &SP[-nparam];
sign = (TYPE *)ext->param;
parg = (int *)&args;
marg = parg + sizeof(ARGS) / sizeof(int);
for (i = 0, sz = 0; i < nparam; i++, value++, sign++)
{
VALUE_conv(value, *sign);
if (parg >= marg)
THROW(E_TMPARAM);
parg += put_arg(parg, value);
}
}
func = get_function(ext);
switch (ext->type)
{
case T_BOOLEAN:
case T_BYTE:
case T_SHORT:
case T_INTEGER:
GB_ReturnInteger(CAST(int, func)(args));
break;
case T_LONG:
GB_ReturnLong(CAST(int64_t, func)(args));
break;
case T_SINGLE:
GB_ReturnFloat(CAST(float, func)(args));
break;
case T_FLOAT:
GB_ReturnFloat(CAST(double, func)(args));
break;
case T_STRING:
GB_ReturnConstString(CAST(char *, func)(args), 0);
break;
default:
CAST(void, func)(args);
GB_ReturnNull();
break;
}
while (nparam > 0)
{
nparam--;
POP();
}
POP(); /* extern function */
/* from EXEC_native() */
BORROW(&TEMP);
if (EXEC.drop)
RELEASE(&TEMP);
else
{
VALUE_conv(&TEMP, ext->type);
*SP = TEMP;
SP++;
}
}
#endif
void EXTERN_exit(void)
{
int i;
EXTERN_SYMBOL *esym;
if (!_table)
return;
for (i = 0; i < TABLE_count(_table); i++)
{
esym = (EXTERN_SYMBOL *)TABLE_get_symbol(_table, i);
if (esym->handle)
lt_dlclose(esym->handle);
}
TABLE_delete(&_table);
}