2008-09-10 02:34:16 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Jacek Caban for CodeWeavers
|
2009-07-06 10:38:51 +02:00
|
|
|
* Copyright 2009 Piotr Caban
|
2008-09-10 02:34:16 +02:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2016-01-27 20:43:55 +01:00
|
|
|
#include <assert.h>
|
|
|
|
|
2008-09-10 02:34:16 +02:00
|
|
|
#include "jscript.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(jscript);
|
|
|
|
|
|
|
|
typedef struct {
|
2010-09-06 16:11:49 +02:00
|
|
|
jsdisp_t dispex;
|
2008-09-16 20:45:29 +02:00
|
|
|
|
2012-09-17 15:20:01 +02:00
|
|
|
BOOL val;
|
2008-09-10 02:34:16 +02:00
|
|
|
} BoolInstance;
|
|
|
|
|
|
|
|
static const WCHAR toStringW[] = {'t','o','S','t','r','i','n','g',0};
|
|
|
|
static const WCHAR valueOfW[] = {'v','a','l','u','e','O','f',0};
|
|
|
|
|
2016-09-22 10:00:36 +02:00
|
|
|
static inline BoolInstance *bool_from_jsdisp(jsdisp_t *jsdisp)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(jsdisp, BoolInstance, dispex);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline BoolInstance *bool_from_vdisp(vdisp_t *vdisp)
|
|
|
|
{
|
|
|
|
return bool_from_jsdisp(vdisp->u.jsdisp);
|
|
|
|
}
|
|
|
|
|
2009-09-23 16:18:39 +02:00
|
|
|
static inline BoolInstance *bool_this(vdisp_t *jsthis)
|
|
|
|
{
|
2016-09-22 10:00:36 +02:00
|
|
|
return is_vclass(jsthis, JSCLASS_BOOLEAN) ? bool_from_vdisp(jsthis) : NULL;
|
2009-09-23 16:18:39 +02:00
|
|
|
}
|
|
|
|
|
2016-01-27 20:43:55 +01:00
|
|
|
BOOL bool_obj_value(jsdisp_t *obj)
|
|
|
|
{
|
|
|
|
assert(is_class(obj, JSCLASS_BOOLEAN));
|
2016-09-22 10:00:36 +02:00
|
|
|
return bool_from_jsdisp(obj)->val;
|
2016-01-27 20:43:55 +01:00
|
|
|
}
|
|
|
|
|
2009-07-06 10:38:41 +02:00
|
|
|
/* ECMA-262 3rd Edition 15.6.4.2 */
|
2012-09-18 19:01:49 +02:00
|
|
|
static HRESULT Bool_toString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r)
|
2008-09-10 02:34:16 +02:00
|
|
|
{
|
2009-09-23 16:18:39 +02:00
|
|
|
BoolInstance *bool;
|
|
|
|
|
2009-07-06 10:38:41 +02:00
|
|
|
static const WCHAR trueW[] = {'t','r','u','e',0};
|
|
|
|
static const WCHAR falseW[] = {'f','a','l','s','e',0};
|
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2009-09-23 16:18:39 +02:00
|
|
|
if(!(bool = bool_this(jsthis)))
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx, JS_E_BOOLEAN_EXPECTED, NULL);
|
2009-07-06 10:38:41 +02:00
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r) {
|
2012-10-11 12:16:01 +02:00
|
|
|
jsstr_t *val;
|
2009-07-06 10:38:41 +02:00
|
|
|
|
2012-10-11 12:16:01 +02:00
|
|
|
val = jsstr_alloc(bool->val ? trueW : falseW);
|
2009-07-06 10:38:41 +02:00
|
|
|
if(!val)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
*r = jsval_string(val);
|
2009-07-06 10:38:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
2008-09-10 02:34:16 +02:00
|
|
|
}
|
|
|
|
|
2009-07-06 10:38:45 +02:00
|
|
|
/* ECMA-262 3rd Edition 15.6.4.3 */
|
2012-09-18 19:01:49 +02:00
|
|
|
static HRESULT Bool_valueOf(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv, jsval_t *r)
|
2008-09-10 02:34:16 +02:00
|
|
|
{
|
2009-09-23 16:18:39 +02:00
|
|
|
BoolInstance *bool;
|
|
|
|
|
2009-07-06 10:38:45 +02:00
|
|
|
TRACE("\n");
|
|
|
|
|
2009-09-23 16:18:39 +02:00
|
|
|
if(!(bool = bool_this(jsthis)))
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx, JS_E_BOOLEAN_EXPECTED, NULL);
|
2009-07-06 10:38:45 +02:00
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_bool(bool->val);
|
2009-07-06 10:38:45 +02:00
|
|
|
return S_OK;
|
2008-09-10 02:34:16 +02:00
|
|
|
}
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT Bool_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-10 02:34:16 +02:00
|
|
|
{
|
2009-07-22 13:02:30 +02:00
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
switch(flags) {
|
|
|
|
case INVOKE_FUNC:
|
2012-09-18 19:01:49 +02:00
|
|
|
return throw_type_error(ctx, JS_E_FUNCTION_EXPECTED, NULL);
|
2009-07-22 13:02:30 +02:00
|
|
|
default:
|
|
|
|
FIXME("unimplemented flags %x\n", flags);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
|
2008-09-10 02:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const builtin_prop_t Bool_props[] = {
|
|
|
|
{toStringW, Bool_toString, PROPF_METHOD},
|
|
|
|
{valueOfW, Bool_valueOf, PROPF_METHOD}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const builtin_info_t Bool_info = {
|
|
|
|
JSCLASS_BOOLEAN,
|
|
|
|
{NULL, Bool_value, 0},
|
|
|
|
sizeof(Bool_props)/sizeof(*Bool_props),
|
|
|
|
Bool_props,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2012-07-24 13:16:46 +02:00
|
|
|
static const builtin_info_t BoolInst_info = {
|
|
|
|
JSCLASS_BOOLEAN,
|
|
|
|
{NULL, Bool_value, 0},
|
|
|
|
0, NULL,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2012-09-17 15:16:42 +02:00
|
|
|
static HRESULT BoolConstr_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, unsigned argc, jsval_t *argv,
|
2012-09-18 19:01:49 +02:00
|
|
|
jsval_t *r)
|
2008-09-10 02:34:16 +02:00
|
|
|
{
|
2012-09-17 15:16:42 +02:00
|
|
|
BOOL value = FALSE;
|
2009-07-06 10:38:36 +02:00
|
|
|
HRESULT hres;
|
|
|
|
|
2012-06-25 14:08:38 +02:00
|
|
|
if(argc) {
|
2012-09-17 15:18:03 +02:00
|
|
|
hres = to_boolean(argv[0], &value);
|
2009-07-06 10:38:36 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(flags) {
|
|
|
|
case DISPATCH_CONSTRUCT: {
|
2010-09-06 16:11:49 +02:00
|
|
|
jsdisp_t *bool;
|
2009-07-06 10:38:36 +02:00
|
|
|
|
2009-09-23 16:17:17 +02:00
|
|
|
hres = create_bool(ctx, value, &bool);
|
2009-07-06 10:38:36 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-09-17 15:16:20 +02:00
|
|
|
*r = jsval_obj(bool);
|
2009-07-06 10:38:36 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
case INVOKE_FUNC:
|
2012-09-17 15:16:20 +02:00
|
|
|
if(r)
|
|
|
|
*r = jsval_bool(value);
|
2009-07-06 10:38:36 +02:00
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
default:
|
|
|
|
FIXME("unimplemented flags %x\n", flags);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
2008-09-10 02:34:16 +02:00
|
|
|
}
|
|
|
|
|
2010-09-06 16:11:49 +02:00
|
|
|
static HRESULT alloc_bool(script_ctx_t *ctx, jsdisp_t *object_prototype, BoolInstance **ret)
|
2008-09-10 02:34:16 +02:00
|
|
|
{
|
|
|
|
BoolInstance *bool;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
bool = heap_alloc_zero(sizeof(BoolInstance));
|
|
|
|
if(!bool)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2009-08-14 11:54:51 +02:00
|
|
|
if(object_prototype)
|
|
|
|
hres = init_dispex(&bool->dispex, ctx, &Bool_info, object_prototype);
|
2008-09-10 02:34:16 +02:00
|
|
|
else
|
2012-07-24 13:16:46 +02:00
|
|
|
hres = init_dispex_from_constr(&bool->dispex, ctx, &BoolInst_info, ctx->bool_constr);
|
2008-09-10 02:34:16 +02:00
|
|
|
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
heap_free(bool);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ret = bool;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2010-09-06 16:11:49 +02:00
|
|
|
HRESULT create_bool_constr(script_ctx_t *ctx, jsdisp_t *object_prototype, jsdisp_t **ret)
|
2008-09-10 02:34:16 +02:00
|
|
|
{
|
|
|
|
BoolInstance *bool;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-09-17 01:04:44 +02:00
|
|
|
static const WCHAR BooleanW[] = {'B','o','o','l','e','a','n',0};
|
|
|
|
|
2009-08-14 11:54:51 +02:00
|
|
|
hres = alloc_bool(ctx, object_prototype, &bool);
|
2008-09-10 02:34:16 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2012-07-16 15:31:10 +02:00
|
|
|
hres = create_builtin_constructor(ctx, BoolConstr_value, BooleanW, NULL,
|
2009-10-13 22:08:43 +02:00
|
|
|
PROPF_CONSTR|1, &bool->dispex, ret);
|
2008-09-10 02:34:16 +02:00
|
|
|
|
|
|
|
jsdisp_release(&bool->dispex);
|
|
|
|
return hres;
|
|
|
|
}
|
2008-09-16 20:45:29 +02:00
|
|
|
|
2012-09-17 15:20:01 +02:00
|
|
|
HRESULT create_bool(script_ctx_t *ctx, BOOL b, jsdisp_t **ret)
|
2008-09-16 20:45:29 +02:00
|
|
|
{
|
|
|
|
BoolInstance *bool;
|
|
|
|
HRESULT hres;
|
|
|
|
|
2009-08-14 11:54:51 +02:00
|
|
|
hres = alloc_bool(ctx, NULL, &bool);
|
2008-09-16 20:45:29 +02:00
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
bool->val = b;
|
|
|
|
|
|
|
|
*ret = &bool->dispex;
|
|
|
|
return S_OK;
|
|
|
|
}
|