jscript: Use compiler-generated struct for representing function code.
[wine/multimedia.git] / dlls / jscript / function.c
blobf79ac04520c6263e942f498096406e3e1e610c1f
1 /*
2 * Copyright 2008 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "jscript.h"
20 #include "engine.h"
22 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(jscript);
26 typedef struct {
27 jsdisp_t dispex;
28 builtin_invoke_t value_proc;
29 const WCHAR *name;
30 DWORD flags;
31 parameter_t *parameters;
32 scope_chain_t *scope_chain;
33 bytecode_t *code;
34 function_code_t *func_code;
35 const WCHAR *src_str;
36 DWORD src_len;
37 DWORD length;
38 jsdisp_t *arguments;
39 } FunctionInstance;
41 static inline FunctionInstance *function_from_vdisp(vdisp_t *vdisp)
43 return (FunctionInstance*)vdisp->u.jsdisp;
46 static inline FunctionInstance *function_this(vdisp_t *jsthis)
48 return is_vclass(jsthis, JSCLASS_FUNCTION) ? function_from_vdisp(jsthis) : NULL;
51 static const WCHAR prototypeW[] = {'p','r','o','t','o','t', 'y', 'p','e',0};
53 static const WCHAR lengthW[] = {'l','e','n','g','t','h',0};
54 static const WCHAR toStringW[] = {'t','o','S','t','r','i','n','g',0};
55 static const WCHAR applyW[] = {'a','p','p','l','y',0};
56 static const WCHAR callW[] = {'c','a','l','l',0};
57 static const WCHAR argumentsW[] = {'a','r','g','u','m','e','n','t','s',0};
59 static IDispatch *get_this(DISPPARAMS *dp)
61 DWORD i;
63 for(i=0; i < dp->cNamedArgs; i++) {
64 if(dp->rgdispidNamedArgs[i] == DISPID_THIS) {
65 if(V_VT(dp->rgvarg+i) == VT_DISPATCH)
66 return V_DISPATCH(dp->rgvarg+i);
68 WARN("This is not VT_DISPATCH\n");
69 return NULL;
73 TRACE("no this passed\n");
74 return NULL;
77 static HRESULT init_parameters(jsdisp_t *var_disp, FunctionInstance *function, DISPPARAMS *dp,
78 jsexcept_t *ei)
80 parameter_t *param;
81 VARIANT var_empty;
82 DWORD cargs, i=0;
83 HRESULT hres;
85 V_VT(&var_empty) = VT_EMPTY;
86 cargs = arg_cnt(dp);
88 for(param = function->parameters; param; param = param->next) {
89 hres = jsdisp_propput_name(var_disp, param->identifier,
90 i < cargs ? get_arg(dp,i) : &var_empty, ei);
91 if(FAILED(hres))
92 return hres;
94 i++;
97 return S_OK;
100 static HRESULT Arguments_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
101 VARIANT *retv, jsexcept_t *ei)
103 FIXME("\n");
104 return E_NOTIMPL;
107 static const builtin_info_t Arguments_info = {
108 JSCLASS_ARGUMENTS,
109 {NULL, Arguments_value, 0},
110 0, NULL,
111 NULL,
112 NULL
115 static HRESULT create_arguments(script_ctx_t *ctx, IDispatch *calee, DISPPARAMS *dp,
116 jsexcept_t *ei, jsdisp_t **ret)
118 jsdisp_t *args;
119 VARIANT var;
120 DWORD i;
121 HRESULT hres;
123 static const WCHAR caleeW[] = {'c','a','l','l','e','e',0};
125 args = heap_alloc_zero(sizeof(jsdisp_t));
126 if(!args)
127 return E_OUTOFMEMORY;
129 hres = init_dispex_from_constr(args, ctx, &Arguments_info, ctx->object_constr);
130 if(FAILED(hres)) {
131 heap_free(args);
132 return hres;
135 for(i=0; i < arg_cnt(dp); i++) {
136 hres = jsdisp_propput_idx(args, i, get_arg(dp,i), ei);
137 if(FAILED(hres))
138 break;
141 if(SUCCEEDED(hres)) {
142 V_VT(&var) = VT_I4;
143 V_I4(&var) = arg_cnt(dp);
144 hres = jsdisp_propput_name(args, lengthW, &var, ei);
146 if(SUCCEEDED(hres)) {
147 V_VT(&var) = VT_DISPATCH;
148 V_DISPATCH(&var) = calee;
149 hres = jsdisp_propput_name(args, caleeW, &var, ei);
153 if(FAILED(hres)) {
154 jsdisp_release(args);
155 return hres;
158 *ret = args;
159 return S_OK;
162 static HRESULT create_var_disp(script_ctx_t *ctx, FunctionInstance *function, jsdisp_t *arg_disp,
163 DISPPARAMS *dp, jsexcept_t *ei, jsdisp_t **ret)
165 jsdisp_t *var_disp;
166 VARIANT var;
167 HRESULT hres;
169 hres = create_dispex(ctx, NULL, NULL, &var_disp);
170 if(FAILED(hres))
171 return hres;
173 var_set_jsdisp(&var, arg_disp);
174 hres = jsdisp_propput_name(var_disp, argumentsW, &var, ei);
175 if(SUCCEEDED(hres))
176 hres = init_parameters(var_disp, function, dp, ei);
177 if(FAILED(hres)) {
178 jsdisp_release(var_disp);
179 return hres;
182 *ret = var_disp;
183 return S_OK;
186 static HRESULT invoke_source(script_ctx_t *ctx, FunctionInstance *function, IDispatch *this_obj, DISPPARAMS *dp,
187 VARIANT *retv, jsexcept_t *ei)
189 jsdisp_t *var_disp, *arg_disp;
190 exec_ctx_t *exec_ctx;
191 scope_chain_t *scope;
192 HRESULT hres;
194 if(!function->func_code) {
195 FIXME("no source\n");
196 return E_FAIL;
199 hres = create_arguments(ctx, to_disp(&function->dispex), dp, ei, &arg_disp);
200 if(FAILED(hres))
201 return hres;
203 hres = create_var_disp(ctx, function, arg_disp, dp, ei, &var_disp);
204 if(FAILED(hres)) {
205 jsdisp_release(arg_disp);
206 return hres;
209 hres = scope_push(function->scope_chain, var_disp, &scope);
210 if(SUCCEEDED(hres)) {
211 hres = create_exec_ctx(ctx, this_obj, var_disp, scope, FALSE, &exec_ctx);
212 scope_release(scope);
214 jsdisp_release(var_disp);
215 if(SUCCEEDED(hres)) {
216 jsdisp_t *prev_args;
218 prev_args = function->arguments;
219 function->arguments = arg_disp;
220 hres = exec_source(exec_ctx, function->code, function->func_code, FALSE, ei, retv);
221 function->arguments = prev_args;
223 jsdisp_release(arg_disp);
224 exec_release(exec_ctx);
227 return hres;
230 static HRESULT invoke_constructor(script_ctx_t *ctx, FunctionInstance *function, DISPPARAMS *dp,
231 VARIANT *retv, jsexcept_t *ei)
233 jsdisp_t *this_obj;
234 VARIANT var;
235 HRESULT hres;
237 hres = create_object(ctx, &function->dispex, &this_obj);
238 if(FAILED(hres))
239 return hres;
241 hres = invoke_source(ctx, function, to_disp(this_obj), dp, &var, ei);
242 if(FAILED(hres)) {
243 jsdisp_release(this_obj);
244 return hres;
247 if(V_VT(&var) == VT_DISPATCH) {
248 jsdisp_release(this_obj);
249 V_VT(retv) = VT_DISPATCH;
250 V_DISPATCH(retv) = V_DISPATCH(&var);
251 }else {
252 VariantClear(&var);
253 var_set_jsdisp(retv, this_obj);
255 return S_OK;
258 static HRESULT invoke_value_proc(script_ctx_t *ctx, FunctionInstance *function, IDispatch *this_disp, WORD flags, DISPPARAMS *dp,
259 VARIANT *retv, jsexcept_t *ei)
261 vdisp_t vthis;
262 HRESULT hres;
264 if(this_disp)
265 set_disp(&vthis, this_disp);
266 else if(ctx->host_global)
267 set_disp(&vthis, ctx->host_global);
268 else
269 set_jsdisp(&vthis, ctx->global);
271 hres = function->value_proc(ctx, &vthis, flags, dp, retv, ei);
273 vdisp_release(&vthis);
274 return hres;
277 static HRESULT call_function(script_ctx_t *ctx, FunctionInstance *function, IDispatch *this_obj, DISPPARAMS *args,
278 VARIANT *retv, jsexcept_t *ei)
280 if(function->value_proc)
281 return invoke_value_proc(ctx, function, this_obj, DISPATCH_METHOD, args, retv, ei);
283 return invoke_source(ctx, function, this_obj, args, retv, ei);
286 static HRESULT function_to_string(FunctionInstance *function, BSTR *ret)
288 BSTR str;
290 static const WCHAR native_prefixW[] = {'\n','f','u','n','c','t','i','o','n',' '};
291 static const WCHAR native_suffixW[] =
292 {'(',')',' ','{','\n',' ',' ',' ',' ','[','n','a','t','i','v','e',' ','c','o','d','e',']','\n','}','\n'};
294 if(function->value_proc) {
295 DWORD name_len;
297 name_len = strlenW(function->name);
298 str = SysAllocStringLen(NULL, sizeof(native_prefixW) + name_len*sizeof(WCHAR) + sizeof(native_suffixW));
299 if(!str)
300 return E_OUTOFMEMORY;
302 memcpy(str, native_prefixW, sizeof(native_prefixW));
303 memcpy(str + sizeof(native_prefixW)/sizeof(WCHAR), function->name, name_len*sizeof(WCHAR));
304 memcpy(str + sizeof(native_prefixW)/sizeof(WCHAR) + name_len, native_suffixW, sizeof(native_suffixW));
305 }else {
306 str = SysAllocStringLen(function->src_str, function->src_len);
307 if(!str)
308 return E_OUTOFMEMORY;
311 *ret = str;
312 return S_OK;
315 static HRESULT Function_length(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
316 VARIANT *retv, jsexcept_t *ei)
318 FunctionInstance *This = function_from_vdisp(jsthis);
320 TRACE("%p %d\n", This, This->length);
322 switch(flags) {
323 case DISPATCH_PROPERTYGET:
324 V_VT(retv) = VT_I4;
325 V_I4(retv) = This->length;
326 break;
327 default:
328 FIXME("unimplemented flags %x\n", flags);
329 return E_NOTIMPL;
332 return S_OK;
335 static HRESULT Function_toString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
336 VARIANT *retv, jsexcept_t *ei)
338 FunctionInstance *function;
339 BSTR str;
340 HRESULT hres;
342 TRACE("\n");
344 if(!(function = function_this(jsthis)))
345 return throw_type_error(ctx, ei, JS_E_FUNCTION_EXPECTED, NULL);
347 hres = function_to_string(function, &str);
348 if(FAILED(hres))
349 return hres;
351 if(retv) {
352 V_VT(retv) = VT_BSTR;
353 V_BSTR(retv) = str;
354 }else {
355 SysFreeString(str);
357 return S_OK;
360 static HRESULT array_to_args(script_ctx_t *ctx, jsdisp_t *arg_array, jsexcept_t *ei, DISPPARAMS *args)
362 VARIANT var, *argv;
363 DWORD length, i;
364 HRESULT hres;
366 hres = jsdisp_propget_name(arg_array, lengthW, &var, ei);
367 if(FAILED(hres))
368 return hres;
370 hres = to_uint32(ctx, &var, ei, &length);
371 VariantClear(&var);
372 if(FAILED(hres))
373 return hres;
375 argv = heap_alloc(length * sizeof(VARIANT));
376 if(!argv)
377 return E_OUTOFMEMORY;
379 for(i=0; i<length; i++) {
380 hres = jsdisp_get_idx(arg_array, i, argv+i, ei);
381 if(hres == DISP_E_UNKNOWNNAME)
382 V_VT(argv+i) = VT_EMPTY;
383 else if(FAILED(hres)) {
384 while(i--)
385 VariantClear(argv+i);
386 heap_free(argv);
387 return hres;
391 args->cArgs = length;
392 args->rgvarg = argv;
393 return S_OK;
396 static HRESULT Function_apply(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
397 VARIANT *retv, jsexcept_t *ei)
399 FunctionInstance *function;
400 DISPPARAMS args = {NULL,NULL,0,0};
401 DWORD argc, i;
402 IDispatch *this_obj = NULL;
403 HRESULT hres = S_OK;
405 TRACE("\n");
407 if(!(function = function_this(jsthis)))
408 return throw_type_error(ctx, ei, JS_E_FUNCTION_EXPECTED, NULL);
410 argc = arg_cnt(dp);
411 if(argc) {
412 VARIANT *v = get_arg(dp,0);
414 if(V_VT(v) != VT_EMPTY && V_VT(v) != VT_NULL) {
415 hres = to_object(ctx, v, &this_obj);
416 if(FAILED(hres))
417 return hres;
421 if(argc >= 2) {
422 jsdisp_t *arg_array = NULL;
424 if(V_VT(get_arg(dp,1)) == VT_DISPATCH) {
425 arg_array = iface_to_jsdisp((IUnknown*)V_DISPATCH(get_arg(dp,1)));
426 if(arg_array &&
427 (!is_class(arg_array, JSCLASS_ARRAY) && !is_class(arg_array, JSCLASS_ARGUMENTS) )) {
428 jsdisp_release(arg_array);
429 arg_array = NULL;
433 if(arg_array) {
434 hres = array_to_args(ctx, arg_array, ei, &args);
435 jsdisp_release(arg_array);
436 }else {
437 FIXME("throw TypeError\n");
438 hres = E_FAIL;
442 if(SUCCEEDED(hres))
443 hres = call_function(ctx, function, this_obj, &args, retv, ei);
445 if(this_obj)
446 IDispatch_Release(this_obj);
447 for(i=0; i<args.cArgs; i++)
448 VariantClear(args.rgvarg+i);
449 heap_free(args.rgvarg);
450 return hres;
453 static HRESULT Function_call(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
454 VARIANT *retv, jsexcept_t *ei)
456 FunctionInstance *function;
457 DISPPARAMS args = {NULL,NULL,0,0};
458 IDispatch *this_obj = NULL;
459 DWORD argc;
460 HRESULT hres;
462 TRACE("\n");
464 if(!(function = function_this(jsthis)))
465 return throw_type_error(ctx, ei, JS_E_FUNCTION_EXPECTED, NULL);
467 argc = arg_cnt(dp);
468 if(argc) {
469 VARIANT *v = get_arg(dp,0);
471 if(V_VT(v) != VT_EMPTY && V_VT(v) != VT_NULL) {
472 hres = to_object(ctx, v, &this_obj);
473 if(FAILED(hres))
474 return hres;
477 args.cArgs = argc-1;
480 if(args.cArgs)
481 args.rgvarg = dp->rgvarg + dp->cArgs - args.cArgs-1;
483 hres = call_function(ctx, function, this_obj, &args, retv, ei);
485 if(this_obj)
486 IDispatch_Release(this_obj);
487 return hres;
490 HRESULT Function_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
491 VARIANT *retv, jsexcept_t *ei)
493 FunctionInstance *function;
495 TRACE("\n");
497 if(!is_vclass(jsthis, JSCLASS_FUNCTION)) {
498 ERR("dispex is not a function\n");
499 return E_FAIL;
502 function = (FunctionInstance*)jsthis->u.jsdisp;
504 switch(flags) {
505 case DISPATCH_METHOD:
506 if(function->value_proc)
507 return invoke_value_proc(ctx, function, get_this(dp), flags, dp, retv, ei);
509 return invoke_source(ctx, function, get_this(dp), dp, retv, ei);
511 case DISPATCH_PROPERTYGET: {
512 HRESULT hres;
513 BSTR str;
515 hres = function_to_string(function, &str);
516 if(FAILED(hres))
517 return hres;
519 V_VT(retv) = VT_BSTR;
520 V_BSTR(retv) = str;
521 break;
524 case DISPATCH_CONSTRUCT:
525 if(function->value_proc)
526 return invoke_value_proc(ctx, function, get_this(dp), flags, dp, retv, ei);
528 return invoke_constructor(ctx, function, dp, retv, ei);
530 default:
531 FIXME("not implemented flags %x\n", flags);
532 return E_NOTIMPL;
535 return S_OK;
538 static HRESULT Function_arguments(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags,
539 DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei)
541 FunctionInstance *function = (FunctionInstance*)jsthis->u.jsdisp;
542 HRESULT hres = S_OK;
544 TRACE("\n");
546 switch(flags) {
547 case DISPATCH_PROPERTYGET: {
548 if(function->arguments) {
549 jsdisp_addref(function->arguments);
550 var_set_jsdisp(retv, function->arguments);
551 }else {
552 V_VT(retv) = VT_NULL;
554 break;
556 case DISPATCH_PROPERTYPUT:
557 break;
558 default:
559 FIXME("unimplemented flags %x\n", flags);
560 hres = E_NOTIMPL;
563 return hres;
566 static void Function_destructor(jsdisp_t *dispex)
568 FunctionInstance *This = (FunctionInstance*)dispex;
570 if(This->code)
571 release_bytecode(This->code);
572 if(This->scope_chain)
573 scope_release(This->scope_chain);
574 heap_free(This);
577 static const builtin_prop_t Function_props[] = {
578 {applyW, Function_apply, PROPF_METHOD|2},
579 {argumentsW, Function_arguments, 0},
580 {callW, Function_call, PROPF_METHOD|1},
581 {lengthW, Function_length, 0},
582 {toStringW, Function_toString, PROPF_METHOD}
585 static const builtin_info_t Function_info = {
586 JSCLASS_FUNCTION,
587 {NULL, Function_value, 0},
588 sizeof(Function_props)/sizeof(*Function_props),
589 Function_props,
590 Function_destructor,
591 NULL
594 static HRESULT create_function(script_ctx_t *ctx, const builtin_info_t *builtin_info, DWORD flags,
595 BOOL funcprot, jsdisp_t *prototype, FunctionInstance **ret)
597 FunctionInstance *function;
598 HRESULT hres;
600 function = heap_alloc_zero(sizeof(FunctionInstance));
601 if(!function)
602 return E_OUTOFMEMORY;
604 if(funcprot)
605 hres = init_dispex(&function->dispex, ctx, &Function_info, prototype);
606 else if(builtin_info)
607 hres = init_dispex_from_constr(&function->dispex, ctx, builtin_info, ctx->function_constr);
608 else
609 hres = init_dispex_from_constr(&function->dispex, ctx, &Function_info, ctx->function_constr);
610 if(FAILED(hres))
611 return hres;
613 function->flags = flags;
614 function->length = flags & PROPF_ARGMASK;
616 *ret = function;
617 return S_OK;
620 static HRESULT set_prototype(script_ctx_t *ctx, jsdisp_t *dispex, jsdisp_t *prototype)
622 jsexcept_t jsexcept;
623 VARIANT var;
625 var_set_jsdisp(&var, prototype);
626 memset(&jsexcept, 0, sizeof(jsexcept));
628 return jsdisp_propput_name(dispex, prototypeW, &var, &jsexcept);
631 HRESULT create_builtin_function(script_ctx_t *ctx, builtin_invoke_t value_proc, const WCHAR *name,
632 const builtin_info_t *builtin_info, DWORD flags, jsdisp_t *prototype, jsdisp_t **ret)
634 FunctionInstance *function;
635 HRESULT hres;
637 hres = create_function(ctx, builtin_info, flags, FALSE, NULL, &function);
638 if(FAILED(hres))
639 return hres;
641 if(builtin_info) {
642 VARIANT var;
644 V_VT(&var) = VT_I4;
645 V_I4(&var) = function->length;
646 hres = jsdisp_propput_const(&function->dispex, lengthW, &var);
649 if(SUCCEEDED(hres))
650 hres = set_prototype(ctx, &function->dispex, prototype);
651 if(FAILED(hres)) {
652 jsdisp_release(&function->dispex);
653 return hres;
656 function->value_proc = value_proc;
657 function->name = name;
659 *ret = &function->dispex;
660 return S_OK;
663 HRESULT create_source_function(script_ctx_t *ctx, bytecode_t *code, parameter_t *parameters, function_code_t *func_code,
664 scope_chain_t *scope_chain, const WCHAR *src_str, DWORD src_len, jsdisp_t **ret)
666 FunctionInstance *function;
667 jsdisp_t *prototype;
668 parameter_t *iter;
669 DWORD length = 0;
670 HRESULT hres;
672 hres = create_object(ctx, NULL, &prototype);
673 if(FAILED(hres))
674 return hres;
676 hres = create_function(ctx, NULL, PROPF_CONSTR, FALSE, NULL, &function);
677 if(SUCCEEDED(hres)) {
678 hres = set_prototype(ctx, &function->dispex, prototype);
679 if(FAILED(hres))
680 jsdisp_release(&function->dispex);
682 jsdisp_release(prototype);
683 if(FAILED(hres))
684 return hres;
686 function->func_code = func_code;
687 function->parameters = parameters;
689 if(scope_chain) {
690 scope_addref(scope_chain);
691 function->scope_chain = scope_chain;
694 bytecode_addref(code);
695 function->code = code;
697 for(iter = parameters; iter; iter = iter->next)
698 length++;
699 function->length = length;
701 function->src_str = src_str;
702 function->src_len = src_len;
704 *ret = &function->dispex;
705 return S_OK;
708 static HRESULT construct_function(script_ctx_t *ctx, DISPPARAMS *dp, jsexcept_t *ei, IDispatch **ret)
710 function_expression_t *expr;
711 WCHAR *str = NULL, *ptr;
712 DWORD argc, len = 0, l;
713 bytecode_t *code;
714 jsdisp_t *function;
715 BSTR *params = NULL;
716 int i=0, j=0;
717 HRESULT hres = S_OK;
719 static const WCHAR function_anonymousW[] = {'f','u','n','c','t','i','o','n',' ','a','n','o','n','y','m','o','u','s','('};
720 static const WCHAR function_beginW[] = {')',' ','{','\n'};
721 static const WCHAR function_endW[] = {'\n','}',0};
723 argc = arg_cnt(dp);
724 if(argc) {
725 params = heap_alloc(argc*sizeof(BSTR));
726 if(!params)
727 return E_OUTOFMEMORY;
729 if(argc > 2)
730 len = (argc-2)*2; /* separating commas */
731 for(i=0; i < argc; i++) {
732 hres = to_string(ctx, get_arg(dp,i), ei, params+i);
733 if(FAILED(hres))
734 break;
735 len += SysStringLen(params[i]);
739 if(SUCCEEDED(hres)) {
740 len += (sizeof(function_anonymousW) + sizeof(function_beginW) + sizeof(function_endW)) / sizeof(WCHAR);
741 str = heap_alloc(len*sizeof(WCHAR));
742 if(str) {
743 memcpy(str, function_anonymousW, sizeof(function_anonymousW));
744 ptr = str + sizeof(function_anonymousW)/sizeof(WCHAR);
745 if(argc > 1) {
746 while(1) {
747 l = SysStringLen(params[j]);
748 memcpy(ptr, params[j], l*sizeof(WCHAR));
749 ptr += l;
750 if(++j == argc-1)
751 break;
752 *ptr++ = ',';
753 *ptr++ = ' ';
756 memcpy(ptr, function_beginW, sizeof(function_beginW));
757 ptr += sizeof(function_beginW)/sizeof(WCHAR);
758 if(argc) {
759 l = SysStringLen(params[argc-1]);
760 memcpy(ptr, params[argc-1], l*sizeof(WCHAR));
761 ptr += l;
763 memcpy(ptr, function_endW, sizeof(function_endW));
765 TRACE("%s\n", debugstr_w(str));
766 }else {
767 hres = E_OUTOFMEMORY;
771 while(--i >= 0)
772 SysFreeString(params[i]);
773 heap_free(params);
774 if(FAILED(hres))
775 return hres;
777 hres = compile_script(ctx, str, NULL, FALSE, FALSE, &code);
778 heap_free(str);
779 if(FAILED(hres))
780 return hres;
782 if(code->global_code.func_cnt != 1 || code->parser->source->variables) {
783 ERR("Invalid parser result!\n");
784 release_bytecode(code);
785 return E_UNEXPECTED;
787 expr = code->global_code.funcs[0].expr;
789 hres = create_source_function(ctx, code, expr->parameter_list, code->global_code.funcs, NULL, expr->src_str,
790 expr->src_len, &function);
791 release_bytecode(code);
792 if(FAILED(hres))
793 return hres;
795 *ret = to_disp(function);
796 return S_OK;
799 static HRESULT FunctionConstr_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
800 VARIANT *retv, jsexcept_t *ei)
802 HRESULT hres;
804 TRACE("\n");
806 switch(flags) {
807 case DISPATCH_CONSTRUCT: {
808 IDispatch *ret;
810 hres = construct_function(ctx, dp, ei, &ret);
811 if(FAILED(hres))
812 return hres;
814 V_VT(retv) = VT_DISPATCH;
815 V_DISPATCH(retv) = ret;
816 break;
818 default:
819 FIXME("unimplemented flags %x\n", flags);
820 return E_NOTIMPL;
823 return S_OK;
826 static HRESULT FunctionProt_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp,
827 VARIANT *retv, jsexcept_t *ei)
829 FIXME("\n");
830 return E_NOTIMPL;
833 HRESULT init_function_constr(script_ctx_t *ctx, jsdisp_t *object_prototype)
835 FunctionInstance *prot, *constr;
836 HRESULT hres;
838 static const WCHAR FunctionW[] = {'F','u','n','c','t','i','o','n',0};
840 hres = create_function(ctx, NULL, PROPF_CONSTR, TRUE, object_prototype, &prot);
841 if(FAILED(hres))
842 return hres;
844 prot->value_proc = FunctionProt_value;
845 prot->name = prototypeW;
847 hres = create_function(ctx, NULL, PROPF_CONSTR|1, TRUE, &prot->dispex, &constr);
848 if(SUCCEEDED(hres)) {
849 constr->value_proc = FunctionConstr_value;
850 constr->name = FunctionW;
851 hres = set_prototype(ctx, &constr->dispex, &prot->dispex);
852 if(FAILED(hres))
853 jsdisp_release(&constr->dispex);
855 jsdisp_release(&prot->dispex);
856 if(FAILED(hres))
857 return hres;
859 ctx->function_constr = &constr->dispex;
860 return S_OK;