2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
gbx_subr.c
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
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
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
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_SUBR_C
|
|
|
|
|
|
|
|
#include "gb_common.h"
|
|
|
|
#include "gbx_subr.h"
|
|
|
|
#include "gambas.h"
|
|
|
|
#include "gbx_api.h"
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
/*int NPARAM;*/
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void SUBR_leave_void(int nparam)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
RELEASE_MANY(SP, nparam);
|
|
|
|
|
|
|
|
SP->type = T_VOID;
|
|
|
|
SP++;
|
|
|
|
}
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void SUBR_leave(int nparam)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
BORROW(RP);
|
|
|
|
|
|
|
|
RELEASE_MANY(SP, nparam);
|
|
|
|
|
|
|
|
//*SP++ = *RP;
|
|
|
|
COPY_VALUE(SP, RP);
|
|
|
|
SP++;
|
|
|
|
RP->type = T_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
bool SUBR_check_string(VALUE *param)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
2008-03-19 15:32:30 +01:00
|
|
|
__RETRY:
|
|
|
|
|
|
|
|
if (TYPE_is_string(param->type))
|
|
|
|
return (param->_string.len == 0);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
if (TYPE_is_null(param->type))
|
|
|
|
return TRUE;
|
|
|
|
|
2008-03-19 15:32:30 +01:00
|
|
|
if (param->type == T_VARIANT)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
2008-03-19 15:32:30 +01:00
|
|
|
VARIANT_undo(param);
|
|
|
|
goto __RETRY;
|
|
|
|
}
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
THROW(E_TYPE, TYPE_get_name(T_STRING), TYPE_get_name((param)->type));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void SUBR_check_integer(VALUE *param)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
if (param->type == T_VARIANT)
|
|
|
|
VARIANT_undo(param);
|
|
|
|
|
|
|
|
if (TYPE_is_integer(param->type))
|
|
|
|
return;
|
|
|
|
|
|
|
|
THROW(E_TYPE, TYPE_get_name(T_INTEGER), TYPE_get_name((param)->type));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void SUBR_check_float(VALUE *param)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
if (param->type == T_VARIANT)
|
|
|
|
VARIANT_undo(param);
|
|
|
|
|
|
|
|
if (TYPE_is_number(param->type))
|
|
|
|
{
|
|
|
|
VALUE_conv(param, T_FLOAT);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
THROW(E_TYPE, TYPE_get_name(T_INTEGER), TYPE_get_name((param)->type));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
int SUBR_get_integer(VALUE *param)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
SUBR_check_integer(param);
|
|
|
|
return param->_integer.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void *SUBR_get_pointer(VALUE *param)
|
|
|
|
{
|
|
|
|
if (param->type == T_VARIANT)
|
|
|
|
VARIANT_undo(param);
|
|
|
|
|
|
|
|
if (param->type != T_POINTER)
|
|
|
|
THROW(E_TYPE, "Pointer", TYPE_get_name((param)->type));
|
|
|
|
|
|
|
|
return (void *)param->_pointer.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
double SUBR_get_float(VALUE *param)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
SUBR_check_float(param);
|
|
|
|
return param->_float.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
char *SUBR_get_string(VALUE *param)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
if (SUBR_check_string(param))
|
|
|
|
return "";
|
|
|
|
|
|
|
|
STRING_copy_from_value_temp(&str, param);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
char *SUBR_copy_string(VALUE *param)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
|
|
|
|
SUBR_check_string(param);
|
|
|
|
STRING_copy_from_value_temp(&ret, param);
|
|
|
|
/*RELEASE_STRING(param);*/
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void SUBR_get_string_len(VALUE *param, char **str, int *len)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
if (SUBR_check_string(param))
|
|
|
|
{
|
|
|
|
*str = NULL;
|
|
|
|
*len = 0;
|
|
|
|
}
|
|
|
|
else
|
2008-03-19 15:32:30 +01:00
|
|
|
{
|
|
|
|
*str = param->_string.addr + param->_string.start;
|
|
|
|
*len = param->_string.len;
|
|
|
|
}
|
|
|
|
//VALUE_get_string(param, str, len);
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
|
2009-09-10 21:30:41 +02:00
|
|
|
bool SUBR_get_boolean(VALUE *param)
|
|
|
|
{
|
|
|
|
VALUE_conv(param, T_BOOLEAN);
|
|
|
|
return param->_boolean.value;
|
|
|
|
}
|
2009-09-17 22:58:27 +02:00
|
|
|
|
|
|
|
static TYPE conv_type(TYPE type)
|
|
|
|
{
|
|
|
|
if (type <= T_BYTE)
|
|
|
|
type = T_BYTE;
|
|
|
|
else if (type == T_CSTRING) // || type == T_NULL)
|
|
|
|
type = T_STRING;
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
TYPE SUBR_check_good_type(VALUE *param, int count)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
TYPE type, type2;
|
|
|
|
|
|
|
|
type = conv_type(param[0].type);;
|
|
|
|
|
|
|
|
for (i = 1; i < count; i++)
|
|
|
|
{
|
|
|
|
type2 = conv_type(param[i].type);
|
|
|
|
|
|
|
|
if (type2 == type)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (type == T_NULL)
|
|
|
|
{
|
|
|
|
if (type2 <= T_FLOAT)
|
|
|
|
goto __VARIANT;
|
|
|
|
|
|
|
|
type = type2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type <= T_FLOAT && type2 <= T_FLOAT)
|
|
|
|
{
|
|
|
|
if (type2 > type)
|
|
|
|
type = type2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type2 == T_NULL)
|
|
|
|
{
|
|
|
|
if (type <= T_FLOAT)
|
|
|
|
goto __VARIANT;
|
|
|
|
else
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TYPE_is_object(type) && TYPE_is_object(type2))
|
|
|
|
type = T_OBJECT;
|
|
|
|
else
|
|
|
|
type = T_VARIANT;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
|
|
|
|
__VARIANT:
|
|
|
|
|
|
|
|
return T_VARIANT;
|
2009-09-20 19:32:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TYPE SUBR_get_type(VALUE *param)
|
|
|
|
{
|
|
|
|
if (param->type == T_INTEGER)
|
|
|
|
return (TYPE)param->_integer.value;
|
|
|
|
if (param->type == T_CLASS)
|
|
|
|
return (TYPE)param->_class.class;
|
|
|
|
THROW(E_ILLEGAL);
|
|
|
|
}
|