object.c 7.89 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 * Copyright 2008 Jacek Caban for CodeWeavers
 *
 * 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
 */

#include "jscript.h"

#include "wine/debug.h"

WINE_DEFAULT_DEBUG_CHANNEL(jscript);

static const WCHAR toStringW[] = {'t','o','S','t','r','i','n','g',0};
static const WCHAR toLocaleStringW[] = {'t','o','L','o','c','a','l','e','S','t','r','i','n','g',0};
static const WCHAR valueOfW[] = {'v','a','l','u','e','O','f',0};
static const WCHAR hasOwnPropertyW[] = {'h','a','s','O','w','n','P','r','o','p','e','r','t','y',0};
static const WCHAR propertyIsEnumerableW[] =
    {'p','r','o','p','e','r','t','y','I','s','E','n','u','m','e','r','a','b','l','e',0};
static const WCHAR isPrototypeOfW[] = {'i','s','P','r','o','t','o','t','y','p','e','O','f',0};

33 34
static const WCHAR default_valueW[] = {'[','o','b','j','e','c','t',' ','O','b','j','e','c','t',']',0};

35
static HRESULT Object_toString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
36 37
        VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
{
38
    jsdisp_t *jsdisp;
39
    const WCHAR *str;
40

41 42 43 44 45 46 47 48 49 50 51 52 53
    static const WCHAR formatW[] = {'[','o','b','j','e','c','t',' ','%','s',']',0};

    static const WCHAR arrayW[] = {'A','r','r','a','y',0};
    static const WCHAR booleanW[] = {'B','o','o','l','e','a','n',0};
    static const WCHAR dateW[] = {'D','a','t','e',0};
    static const WCHAR errorW[] = {'E','r','r','o','r',0};
    static const WCHAR functionW[] = {'F','u','n','c','t','i','o','n',0};
    static const WCHAR mathW[] = {'M','a','t','h',0};
    static const WCHAR numberW[] = {'N','u','m','b','e','r',0};
    static const WCHAR objectW[] = {'O','b','j','e','c','t',0};
    static const WCHAR regexpW[] = {'R','e','g','E','x','p',0};
    static const WCHAR stringW[] = {'S','t','r','i','n','g',0};
    /* Keep in sync with jsclass_t enum */
54
    static const WCHAR *names[] = {objectW, arrayW, booleanW, dateW, errorW,
55
        functionW, NULL, mathW, numberW, objectW, regexpW, stringW, objectW, objectW};
56

57 58
    TRACE("\n");

59
    jsdisp = get_jsdisp(jsthis);
60 61 62 63 64
    if(!jsdisp) {
        str = objectW;
    }else if(names[jsdisp->builtin_info->class]) {
        str = names[jsdisp->builtin_info->class];
    }else {
65
        FIXME("jdisp->builtin_info->class = %d\n", jsdisp->builtin_info->class);
66 67 68
        return E_FAIL;
    }

69 70
    if(retv) {
        V_VT(retv) = VT_BSTR;
71
        V_BSTR(retv) = SysAllocStringLen(NULL, 9+strlenW(str));
72 73
        if(!V_BSTR(retv))
            return E_OUTOFMEMORY;
74

75
        sprintfW(V_BSTR(retv), formatW, str);
76 77 78
    }

    return S_OK;
79 80
}

81
static HRESULT Object_toLocaleString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
82 83
        VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
{
84 85
    DISPPARAMS params = {NULL, NULL, 0, 0};

86
    TRACE("\n");
87

88 89 90 91 92 93
    if(!is_jsdisp(jsthis)) {
        FIXME("Host object this\n");
        return E_FAIL;
    }

    return jsdisp_call_name(jsthis->u.jsdisp, toStringW, DISPATCH_METHOD, &params, retv, ei, sp);
94 95
}

96
static HRESULT Object_valueOf(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
97 98
        VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
{
99 100 101
    TRACE("\n");

    if(retv) {
102
        IDispatch_AddRef(jsthis->u.disp);
103 104

        V_VT(retv) = VT_DISPATCH;
105
        V_DISPATCH(retv) = jsthis->u.disp;
106 107 108
    }

    return S_OK;
109 110
}

111
static HRESULT Object_hasOwnProperty(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
112 113 114 115 116 117
        VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
{
    FIXME("\n");
    return E_NOTIMPL;
}

118
static HRESULT Object_propertyIsEnumerable(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
119 120 121 122 123 124
        VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
{
    FIXME("\n");
    return E_NOTIMPL;
}

125
static HRESULT Object_isPrototypeOf(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
126 127 128 129 130 131
        VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
{
    FIXME("\n");
    return E_NOTIMPL;
}

132
static HRESULT Object_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
133 134
        VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
{
135 136 137
    TRACE("\n");

    switch(flags) {
138
    case INVOKE_FUNC:
139
        return throw_type_error(ctx, ei, JS_E_FUNCTION_EXPECTED, NULL);
140 141 142 143 144 145 146 147 148 149 150 151
    case DISPATCH_PROPERTYGET:
        V_VT(retv) = VT_BSTR;
        V_BSTR(retv) = SysAllocString(default_valueW);
        if(!V_BSTR(retv))
            return E_OUTOFMEMORY;
        break;
    default:
        FIXME("unimplemented flags %x\n", flags);
        return E_NOTIMPL;
    }

    return S_OK;
152 153
}

154
static void Object_destructor(jsdisp_t *dispex)
155 156 157 158 159
{
    heap_free(dispex);
}

static const builtin_prop_t Object_props[] = {
160 161 162
    {hasOwnPropertyW,        Object_hasOwnProperty,        PROPF_METHOD|1},
    {isPrototypeOfW,         Object_isPrototypeOf,         PROPF_METHOD|1},
    {propertyIsEnumerableW,  Object_propertyIsEnumerable,  PROPF_METHOD|1},
163 164 165 166 167 168 169 170 171 172 173 174 175 176
    {toLocaleStringW,        Object_toLocaleString,        PROPF_METHOD},
    {toStringW,              Object_toString,              PROPF_METHOD},
    {valueOfW,               Object_valueOf,               PROPF_METHOD}
};

static const builtin_info_t Object_info = {
    JSCLASS_OBJECT,
    {NULL, Object_value, 0},
    sizeof(Object_props)/sizeof(*Object_props),
    Object_props,
    Object_destructor,
    NULL
};

177
static HRESULT ObjectConstr_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
178
        VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
179
{
180 181 182 183 184
    HRESULT hres;

    TRACE("\n");

    switch(flags) {
185 186 187 188
    case DISPATCH_METHOD:
        if(arg_cnt(dp)) {
            VARIANT *arg = get_arg(dp,0);

189
            if(V_VT(arg) != VT_EMPTY && V_VT(arg) != VT_NULL && (V_VT(arg) != VT_DISPATCH || V_DISPATCH(arg))) {
190 191
                IDispatch *disp;

192
                hres = to_object(ctx, arg, &disp);
193 194 195 196 197 198 199 200 201 202 203 204 205
                if(FAILED(hres))
                    return hres;

                if(retv) {
                    V_VT(retv) = VT_DISPATCH;
                    V_DISPATCH(retv) = disp;
                }else {
                    IDispatch_Release(disp);
                }
                return S_OK;
            }
        }
        /* fall through */
206
    case DISPATCH_CONSTRUCT: {
207
        jsdisp_t *obj;
208

209
        hres = create_object(ctx, NULL, &obj);
210 211 212
        if(FAILED(hres))
            return hres;

213 214 215 216
        if(retv)
            var_set_jsdisp(retv, obj);
        else
            jsdisp_release(obj);
217 218 219 220 221 222 223 224 225
        break;
    }

    default:
        FIXME("unimplemented flags: %x\n", flags);
        return E_NOTIMPL;
    }

    return S_OK;
226 227
}

228
HRESULT create_object_constr(script_ctx_t *ctx, jsdisp_t *object_prototype, jsdisp_t **ret)
229
{
230 231 232
    static const WCHAR ObjectW[] = {'O','b','j','e','c','t',0};

    return create_builtin_function(ctx, ObjectConstr_value, ObjectW, NULL, PROPF_CONSTR,
233 234
            object_prototype, ret);
}
235

236
HRESULT create_object_prototype(script_ctx_t *ctx, jsdisp_t **ret)
237 238
{
    return create_dispex(ctx, &Object_info, NULL, ret);
239
}
240

241
HRESULT create_object(script_ctx_t *ctx, jsdisp_t *constr, jsdisp_t **ret)
242
{
243
    jsdisp_t *object;
244 245
    HRESULT hres;

246
    object = heap_alloc_zero(sizeof(jsdisp_t));
247 248 249 250 251 252 253 254 255 256 257 258
    if(!object)
        return E_OUTOFMEMORY;

    hres = init_dispex_from_constr(object, ctx, &Object_info, constr ? constr : ctx->object_constr);
    if(FAILED(hres)) {
        heap_free(object);
        return hres;
    }

    *ret = object;
    return S_OK;
}