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
21 #include "wine/debug.h"
23 WINE_DEFAULT_DEBUG_CHANNEL(jscript
);
32 static const WCHAR lengthW
[] = {'l','e','n','g','t','h',0};
33 static const WCHAR toStringW
[] = {'t','o','S','t','r','i','n','g',0};
34 static const WCHAR valueOfW
[] = {'v','a','l','u','e','O','f',0};
35 static const WCHAR anchorW
[] = {'a','n','c','h','o','r',0};
36 static const WCHAR bigW
[] = {'b','i','g',0};
37 static const WCHAR blinkW
[] = {'b','l','i','n','k',0};
38 static const WCHAR boldW
[] = {'b','o','l','d',0};
39 static const WCHAR charAtW
[] = {'c','h','a','r','A','t',0};
40 static const WCHAR charCodeAtW
[] = {'c','h','a','r','C','o','d','e','A','t',0};
41 static const WCHAR concatW
[] = {'c','o','n','c','a','t',0};
42 static const WCHAR fixedW
[] = {'f','i','x','e','d',0};
43 static const WCHAR fontcolorW
[] = {'f','o','n','t','c','o','l','o','r',0};
44 static const WCHAR fontsizeW
[] = {'f','o','n','t','s','i','z','e',0};
45 static const WCHAR indexOfW
[] = {'i','n','d','e','x','O','f',0};
46 static const WCHAR italicsW
[] = {'i','t','a','l','i','c','s',0};
47 static const WCHAR lastIndexOfW
[] = {'l','a','s','t','I','n','d','e','x','O','f',0};
48 static const WCHAR linkW
[] = {'l','i','n','k',0};
49 static const WCHAR matchW
[] = {'m','a','t','c','h',0};
50 static const WCHAR replaceW
[] = {'r','e','p','l','a','c','e',0};
51 static const WCHAR searchW
[] = {'s','e','a','r','c','h',0};
52 static const WCHAR sliceW
[] = {'s','l','i','c','e',0};
53 static const WCHAR smallW
[] = {'s','m','a','l','l',0};
54 static const WCHAR splitW
[] = {'s','p','l','i','t',0};
55 static const WCHAR strikeW
[] = {'s','t','r','i','k','e',0};
56 static const WCHAR subW
[] = {'s','u','b',0};
57 static const WCHAR substringW
[] = {'s','u','b','s','t','r','i','n','g',0};
58 static const WCHAR substrW
[] = {'s','u','b','s','t','r',0};
59 static const WCHAR supW
[] = {'s','u','p',0};
60 static const WCHAR toLowerCaseW
[] = {'t','o','L','o','w','e','r','C','a','s','e',0};
61 static const WCHAR toUpperCaseW
[] = {'t','o','U','p','p','e','r','C','a','s','e',0};
62 static const WCHAR toLocaleLowerCaseW
[] = {'t','o','L','o','c','a','l','e','L','o','w','e','r','C','a','s','e',0};
63 static const WCHAR toLocaleUpperCaseW
[] = {'t','o','L','o','c','a','l','e','U','p','p','e','r','C','a','s','e',0};
64 static const WCHAR localeCompareW
[] = {'l','o','c','a','l','e','C','o','m','p','a','r','e',0};
65 static const WCHAR fromCharCodeW
[] = {'f','r','o','m','C','h','a','r','C','o','d','e',0};
67 static inline StringInstance
*string_from_vdisp(vdisp_t
*vdisp
)
69 return (StringInstance
*)vdisp
->u
.jsdisp
;
72 static inline StringInstance
*string_this(vdisp_t
*jsthis
)
74 return is_vclass(jsthis
, JSCLASS_STRING
) ? string_from_vdisp(jsthis
) : NULL
;
77 static HRESULT
get_string_val(script_ctx_t
*ctx
, vdisp_t
*jsthis
, jsexcept_t
*ei
,
78 const WCHAR
**str
, DWORD
*len
, BSTR
*val_str
)
80 StringInstance
*string
;
84 if((string
= string_this(jsthis
))) {
86 *len
= string
->length
;
91 V_VT(&this_var
) = VT_DISPATCH
;
92 V_DISPATCH(&this_var
) = jsthis
->u
.disp
;
93 hres
= to_string(ctx
, &this_var
, ei
, val_str
);
98 *len
= SysStringLen(*val_str
);
102 static HRESULT
String_length(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
103 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
105 TRACE("%p\n", jsthis
);
108 case DISPATCH_PROPERTYGET
: {
109 StringInstance
*string
= string_from_vdisp(jsthis
);
112 V_I4(retv
) = string
->length
;
116 FIXME("unimplemented flags %x\n", flags
);
123 static HRESULT
stringobj_to_string(vdisp_t
*jsthis
, VARIANT
*retv
)
125 StringInstance
*string
;
127 if(!(string
= string_this(jsthis
))) {
128 WARN("this is not a string object\n");
133 BSTR str
= SysAllocString(string
->str
);
135 return E_OUTOFMEMORY
;
137 V_VT(retv
) = VT_BSTR
;
143 /* ECMA-262 3rd Edition 15.5.4.2 */
144 static HRESULT
String_toString(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
145 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
149 return stringobj_to_string(jsthis
, retv
);
152 /* ECMA-262 3rd Edition 15.5.4.2 */
153 static HRESULT
String_valueOf(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
154 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
158 return stringobj_to_string(jsthis
, retv
);
161 static HRESULT
do_attributeless_tag_format(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
162 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
, const WCHAR
*tagname
)
169 static const WCHAR tagfmt
[] = {'<','%','s','>','%','s','<','/','%','s','>',0};
171 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
176 BSTR ret
= SysAllocStringLen(NULL
, length
+ 2*strlenW(tagname
) + 5);
178 SysFreeString(val_str
);
179 return E_OUTOFMEMORY
;
182 sprintfW(ret
, tagfmt
, tagname
, str
, tagname
);
184 V_VT(retv
) = VT_BSTR
;
188 SysFreeString(val_str
);
192 static HRESULT
do_attribute_tag_format(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
193 DISPPARAMS
*dp
, VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
,
194 const WCHAR
*tagname
, const WCHAR
*attr
)
196 static const WCHAR tagfmtW
[]
197 = {'<','%','s',' ','%','s','=','\"','%','s','\"','>','%','s','<','/','%','s','>',0};
198 static const WCHAR undefinedW
[] = {'u','n','d','e','f','i','n','e','d',0};
200 StringInstance
*string
;
203 BSTR attr_value
, val_str
= NULL
;
206 if(!(string
= string_this(jsthis
))) {
209 V_VT(&this) = VT_DISPATCH
;
210 V_DISPATCH(&this) = jsthis
->u
.disp
;
212 hres
= to_string(ctx
, &this, ei
, &val_str
);
217 length
= SysStringLen(val_str
);
221 length
= string
->length
;
225 hres
= to_string(ctx
, get_arg(dp
, 0), ei
, &attr_value
);
227 SysFreeString(val_str
);
232 attr_value
= SysAllocString(undefinedW
);
234 SysFreeString(val_str
);
235 return E_OUTOFMEMORY
;
240 BSTR ret
= SysAllocStringLen(NULL
, length
+ 2*strlenW(tagname
)
241 + strlenW(attr
) + SysStringLen(attr_value
) + 9);
243 SysFreeString(attr_value
);
244 SysFreeString(val_str
);
245 return E_OUTOFMEMORY
;
248 sprintfW(ret
, tagfmtW
, tagname
, attr
, attr_value
, str
, tagname
);
250 V_VT(retv
) = VT_BSTR
;
254 SysFreeString(attr_value
);
255 SysFreeString(val_str
);
259 static HRESULT
String_anchor(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
260 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
262 static const WCHAR fontW
[] = {'A',0};
263 static const WCHAR colorW
[] = {'N','A','M','E',0};
265 return do_attribute_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, fontW
, colorW
);
268 static HRESULT
String_big(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
269 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
271 static const WCHAR bigtagW
[] = {'B','I','G',0};
272 return do_attributeless_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, bigtagW
);
275 static HRESULT
String_blink(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
276 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
278 static const WCHAR blinktagW
[] = {'B','L','I','N','K',0};
279 return do_attributeless_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, blinktagW
);
282 static HRESULT
String_bold(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
283 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
285 static const WCHAR boldtagW
[] = {'B',0};
286 return do_attributeless_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, boldtagW
);
289 /* ECMA-262 3rd Edition 15.5.4.5 */
290 static HRESULT
String_charAt(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
291 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
301 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
308 hres
= to_integer(ctx
, get_arg(dp
, 0), ei
, &num
);
310 SysFreeString(val_str
);
314 if(V_VT(&num
) == VT_I4
) {
317 WARN("pos = %lf\n", V_R8(&num
));
323 SysFreeString(val_str
);
327 if(0 <= pos
&& pos
< length
)
328 ret
= SysAllocStringLen(str
+pos
, 1);
330 ret
= SysAllocStringLen(NULL
, 0);
331 SysFreeString(val_str
);
333 return E_OUTOFMEMORY
;
336 V_VT(retv
) = VT_BSTR
;
341 /* ECMA-262 3rd Edition 15.5.4.5 */
342 static HRESULT
String_charCodeAt(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
343 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
347 DWORD length
, idx
= 0;
352 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
356 if(arg_cnt(dp
) > 0) {
359 hres
= to_integer(ctx
, get_arg(dp
, 0), ei
, &v
);
361 SysFreeString(val_str
);
365 if(V_VT(&v
) != VT_I4
|| V_I4(&v
) < 0 || V_I4(&v
) >= length
) {
366 if(retv
) num_set_nan(&v
);
367 SysFreeString(val_str
);
376 V_I4(retv
) = str
[idx
];
379 SysFreeString(val_str
);
383 /* ECMA-262 3rd Edition 15.5.4.6 */
384 static HRESULT
String_concat(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
385 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
387 BSTR
*strs
= NULL
, ret
= NULL
;
388 DWORD len
= 0, i
, l
, str_cnt
;
395 str_cnt
= arg_cnt(dp
)+1;
396 strs
= heap_alloc_zero(str_cnt
* sizeof(BSTR
));
398 return E_OUTOFMEMORY
;
400 V_VT(&var
) = VT_DISPATCH
;
401 V_DISPATCH(&var
) = jsthis
->u
.disp
;
403 hres
= to_string(ctx
, &var
, ei
, strs
);
404 if(SUCCEEDED(hres
)) {
405 for(i
=0; i
< arg_cnt(dp
); i
++) {
406 hres
= to_string(ctx
, get_arg(dp
, i
), ei
, strs
+i
+1);
412 if(SUCCEEDED(hres
)) {
413 for(i
=0; i
< str_cnt
; i
++)
414 len
+= SysStringLen(strs
[i
]);
416 ptr
= ret
= SysAllocStringLen(NULL
, len
);
418 for(i
=0; i
< str_cnt
; i
++) {
419 l
= SysStringLen(strs
[i
]);
420 memcpy(ptr
, strs
[i
], l
*sizeof(WCHAR
));
425 for(i
=0; i
< str_cnt
; i
++)
426 SysFreeString(strs
[i
]);
433 V_VT(retv
) = VT_BSTR
;
441 static HRESULT
String_fixed(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
442 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
444 static const WCHAR fixedtagW
[] = {'T','T',0};
445 return do_attributeless_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, fixedtagW
);
448 static HRESULT
String_fontcolor(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
449 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
451 static const WCHAR fontW
[] = {'F','O','N','T',0};
452 static const WCHAR colorW
[] = {'C','O','L','O','R',0};
454 return do_attribute_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, fontW
, colorW
);
457 static HRESULT
String_fontsize(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
458 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
460 static const WCHAR fontW
[] = {'F','O','N','T',0};
461 static const WCHAR colorW
[] = {'S','I','Z','E',0};
463 return do_attribute_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, fontW
, colorW
);
466 static HRESULT
String_indexOf(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
467 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
469 DWORD length
, pos
= 0;
471 BSTR search_str
, val_str
;
477 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
486 SysFreeString(val_str
);
490 hres
= to_string(ctx
, get_arg(dp
,0), ei
, &search_str
);
492 SysFreeString(val_str
);
496 if(arg_cnt(dp
) >= 2) {
499 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &ival
);
500 if(SUCCEEDED(hres
)) {
501 if(V_VT(&ival
) == VT_I4
)
502 pos
= V_VT(&ival
) > 0 ? V_I4(&ival
) : 0;
504 pos
= V_R8(&ival
) > 0.0 ? length
: 0;
510 if(SUCCEEDED(hres
)) {
513 ptr
= strstrW(str
+pos
, search_str
);
520 SysFreeString(search_str
);
521 SysFreeString(val_str
);
532 static HRESULT
String_italics(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
533 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
535 static const WCHAR italicstagW
[] = {'I',0};
536 return do_attributeless_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, italicstagW
);
539 /* ECMA-262 3rd Edition 15.5.4.8 */
540 static HRESULT
String_lastIndexOf(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
541 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
543 BSTR search_str
, val_str
;
544 DWORD length
, pos
, search_len
;
551 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
560 SysFreeString(val_str
);
564 hres
= to_string(ctx
, get_arg(dp
,0), ei
, &search_str
);
566 SysFreeString(val_str
);
570 search_len
= SysStringLen(search_str
);
572 if(arg_cnt(dp
) >= 2) {
575 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &ival
);
576 if(SUCCEEDED(hres
)) {
577 if(V_VT(&ival
) == VT_I4
)
578 pos
= V_VT(&ival
) > 0 ? V_I4(&ival
) : 0;
580 pos
= V_R8(&ival
) > 0.0 ? length
: 0;
588 if(SUCCEEDED(hres
) && length
>= search_len
) {
591 for(ptr
= str
+min(pos
, length
-search_len
); ptr
>= str
; ptr
--) {
592 if(!memcmp(ptr
, search_str
, search_len
*sizeof(WCHAR
))) {
599 SysFreeString(search_str
);
600 SysFreeString(val_str
);
611 static HRESULT
String_link(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
612 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
614 static const WCHAR fontW
[] = {'A',0};
615 static const WCHAR colorW
[] = {'H','R','E','F',0};
617 return do_attribute_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, fontW
, colorW
);
620 /* ECMA-262 3rd Edition 15.5.4.10 */
621 static HRESULT
String_match(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
622 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
625 match_result_t
*match_result
;
628 VARIANT var
, *arg_var
;
629 DWORD length
, match_cnt
, i
;
637 V_VT(retv
) = VT_NULL
;
643 arg_var
= get_arg(dp
, 0);
644 switch(V_VT(arg_var
)) {
646 regexp
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(arg_var
));
648 if(regexp
->builtin_info
->class == JSCLASS_REGEXP
)
650 jsdisp_release(regexp
);
655 hres
= to_string(ctx
, arg_var
, ei
, &match_str
);
659 hres
= create_regexp(ctx
, match_str
, SysStringLen(match_str
), 0, ®exp
);
660 SysFreeString(match_str
);
666 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
668 hres
= regexp_match(ctx
, regexp
, str
, length
, FALSE
, &match_result
, &match_cnt
);
669 jsdisp_release(regexp
);
671 SysFreeString(val_str
);
679 V_VT(retv
) = VT_NULL
;
681 SysFreeString(val_str
);
685 hres
= create_array(ctx
, match_cnt
, &array
);
687 SysFreeString(val_str
);
691 V_VT(&var
) = VT_BSTR
;
693 for(i
=0; i
< match_cnt
; i
++) {
694 V_BSTR(&var
) = SysAllocStringLen(match_result
[i
].str
, match_result
[i
].len
);
696 hres
= E_OUTOFMEMORY
;
700 hres
= jsdisp_propput_idx(array
, i
, &var
, ei
, NULL
/*FIXME*/);
701 SysFreeString(V_BSTR(&var
));
706 SysFreeString(val_str
);
708 if(SUCCEEDED(hres
) && retv
) {
709 V_VT(retv
) = VT_DISPATCH
;
710 V_DISPATCH(retv
) = (IDispatch
*)_IDispatchEx_(array
);
712 jsdisp_release(array
);
723 static HRESULT
strbuf_append(strbuf_t
*buf
, const WCHAR
*str
, DWORD len
)
728 if(len
+ buf
->len
> buf
->size
) {
732 new_size
= buf
->size
? buf
->size
<<1 : 16;
733 if(new_size
< buf
->len
+len
)
734 new_size
= buf
->len
+len
;
736 new_buf
= heap_realloc(buf
->buf
, new_size
*sizeof(WCHAR
));
738 new_buf
= heap_alloc(new_size
*sizeof(WCHAR
));
740 return E_OUTOFMEMORY
;
743 buf
->size
= new_size
;
746 memcpy(buf
->buf
+buf
->len
, str
, len
*sizeof(WCHAR
));
751 static HRESULT
rep_call(script_ctx_t
*ctx
, DispatchEx
*func
, const WCHAR
*str
, match_result_t
*match
,
752 match_result_t
*parens
, DWORD parens_cnt
, BSTR
*ret
, jsexcept_t
*ei
, IServiceProvider
*caller
)
754 DISPPARAMS dp
= {NULL
, NULL
, 0, 0};
755 VARIANTARG
*args
, *arg
;
760 dp
.cArgs
= parens_cnt
+3;
761 dp
.rgvarg
= args
= heap_alloc_zero(sizeof(VARIANT
)*dp
.cArgs
);
763 return E_OUTOFMEMORY
;
765 arg
= get_arg(&dp
,0);
767 V_BSTR(arg
) = SysAllocStringLen(match
->str
, match
->len
);
769 hres
= E_OUTOFMEMORY
;
771 if(SUCCEEDED(hres
)) {
772 for(i
=0; i
< parens_cnt
; i
++) {
773 arg
= get_arg(&dp
,i
+1);
775 V_BSTR(arg
) = SysAllocStringLen(parens
[i
].str
, parens
[i
].len
);
777 hres
= E_OUTOFMEMORY
;
783 if(SUCCEEDED(hres
)) {
784 arg
= get_arg(&dp
,parens_cnt
+1);
786 V_I4(arg
) = match
->str
- str
;
788 arg
= get_arg(&dp
,parens_cnt
+2);
790 V_BSTR(arg
) = SysAllocString(str
);
792 hres
= E_OUTOFMEMORY
;
796 hres
= jsdisp_call_value(func
, DISPATCH_METHOD
, &dp
, &var
, ei
, caller
);
798 for(i
=0; i
< parens_cnt
+1; i
++) {
799 if(i
!= parens_cnt
+1)
800 SysFreeString(V_BSTR(get_arg(&dp
,i
)));
807 hres
= to_string(ctx
, &var
, ei
, ret
);
812 /* ECMA-262 3rd Edition 15.5.4.11 */
813 static HRESULT
String_replace(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
814 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*caller
)
817 DWORD parens_cnt
= 0, parens_size
=0, rep_len
=0, length
;
818 BSTR rep_str
= NULL
, match_str
= NULL
, ret_str
, val_str
;
819 DispatchEx
*rep_func
= NULL
, *regexp
= NULL
;
820 match_result_t
*parens
= NULL
, match
, **parens_ptr
= &parens
;
821 strbuf_t ret
= {NULL
,0,0};
828 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
835 val_str
= SysAllocStringLen(str
, length
);
837 return E_OUTOFMEMORY
;
840 V_VT(retv
) = VT_BSTR
;
841 V_BSTR(retv
) = val_str
;
846 arg_var
= get_arg(dp
, 0);
847 switch(V_VT(arg_var
)) {
849 regexp
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(arg_var
));
851 if(is_class(regexp
, JSCLASS_REGEXP
)) {
854 jsdisp_release(regexp
);
860 hres
= to_string(ctx
, arg_var
, ei
, &match_str
);
862 SysFreeString(val_str
);
867 if(arg_cnt(dp
) >= 2) {
868 arg_var
= get_arg(dp
,1);
869 switch(V_VT(arg_var
)) {
871 rep_func
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(arg_var
));
873 if(is_class(rep_func
, JSCLASS_FUNCTION
)) {
876 jsdisp_release(rep_func
);
882 hres
= to_string(ctx
, arg_var
, ei
, &rep_str
);
886 rep_len
= SysStringLen(rep_str
);
887 if(!strchrW(rep_str
, '$'))
892 if(SUCCEEDED(hres
)) {
893 const WCHAR
*cp
, *ecp
;
899 hres
= regexp_match_next(ctx
, regexp
, gcheck
, str
, length
, &cp
, parens_ptr
,
900 &parens_size
, &parens_cnt
, &match
);
903 if(hres
== S_FALSE
) {
910 match
.str
= strstrW(cp
, match_str
);
913 match
.len
= SysStringLen(match_str
);
914 cp
= match
.str
+match
.len
;
917 hres
= strbuf_append(&ret
, ecp
, match
.str
-ecp
);
918 ecp
= match
.str
+match
.len
;
925 hres
= rep_call(ctx
, rep_func
, str
, &match
, parens
, parens_cnt
, &cstr
, ei
, caller
);
929 hres
= strbuf_append(&ret
, cstr
, SysStringLen(cstr
));
933 }else if(rep_str
&& regexp
) {
934 const WCHAR
*ptr
= rep_str
, *ptr2
;
936 while((ptr2
= strchrW(ptr
, '$'))) {
937 hres
= strbuf_append(&ret
, ptr
, ptr2
-ptr
);
943 hres
= strbuf_append(&ret
, ptr2
, 1);
947 hres
= strbuf_append(&ret
, match
.str
, match
.len
);
951 hres
= strbuf_append(&ret
, str
, match
.str
-str
);
955 hres
= strbuf_append(&ret
, ecp
, (str
+length
)-ecp
);
961 if(!isdigitW(ptr2
[1])) {
962 hres
= strbuf_append(&ret
, ptr2
, 1);
968 if(isdigitW(ptr2
[2]) && idx
*10 + (ptr2
[2]-'0') <= parens_cnt
) {
969 idx
= idx
*10 + (ptr
[2]-'0');
971 }else if(idx
&& idx
<= parens_cnt
) {
974 hres
= strbuf_append(&ret
, ptr2
, 1);
979 hres
= strbuf_append(&ret
, parens
[idx
-1].str
, parens
[idx
-1].len
);
988 hres
= strbuf_append(&ret
, ptr
, (rep_str
+rep_len
)-ptr
);
992 hres
= strbuf_append(&ret
, rep_str
, rep_len
);
996 static const WCHAR undefinedW
[] = {'u','n','d','e','f','i','n','e','d'};
998 hres
= strbuf_append(&ret
, undefinedW
, sizeof(undefinedW
)/sizeof(WCHAR
));
1005 hres
= strbuf_append(&ret
, ecp
, (str
+length
)-ecp
);
1009 jsdisp_release(rep_func
);
1011 jsdisp_release(regexp
);
1012 SysFreeString(val_str
);
1013 SysFreeString(rep_str
);
1014 SysFreeString(match_str
);
1017 if(SUCCEEDED(hres
) && retv
) {
1018 ret_str
= SysAllocStringLen(ret
.buf
, ret
.len
);
1020 return E_OUTOFMEMORY
;
1022 V_VT(retv
) = VT_BSTR
;
1023 V_BSTR(retv
) = ret_str
;
1024 TRACE("= %s\n", debugstr_w(ret_str
));
1031 static HRESULT
String_search(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1032 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1038 /* ECMA-262 3rd Edition 15.5.4.13 */
1039 static HRESULT
String_slice(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1040 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1051 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1056 hres
= to_integer(ctx
, get_arg(dp
,0), ei
, &v
);
1058 SysFreeString(val_str
);
1062 if(V_VT(&v
) == VT_I4
) {
1065 start
= length
+ start
;
1068 }else if(start
> length
) {
1072 start
= V_R8(&v
) < 0.0 ? 0 : length
;
1078 if(arg_cnt(dp
) >= 2) {
1079 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &v
);
1081 SysFreeString(val_str
);
1085 if(V_VT(&v
) == VT_I4
) {
1091 }else if(end
> length
) {
1095 end
= V_R8(&v
) < 0.0 ? 0 : length
;
1105 BSTR retstr
= SysAllocStringLen(str
+start
, end
-start
);
1107 SysFreeString(val_str
);
1108 return E_OUTOFMEMORY
;
1111 V_VT(retv
) = VT_BSTR
;
1112 V_BSTR(retv
) = retstr
;
1115 SysFreeString(val_str
);
1119 static HRESULT
String_small(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1120 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1122 static const WCHAR smalltagW
[] = {'S','M','A','L','L',0};
1123 return do_attributeless_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, smalltagW
);
1126 static HRESULT
String_split(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1127 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1129 match_result_t
*match_result
= NULL
;
1130 DWORD length
, match_cnt
, i
, match_len
= 0;
1131 const WCHAR
*str
, *ptr
, *ptr2
;
1132 BOOL use_regexp
= FALSE
;
1135 BSTR val_str
, match_str
= NULL
;
1140 if(arg_cnt(dp
) != 1) {
1141 FIXME("unsupported args\n");
1145 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1149 arg
= get_arg(dp
, 0);
1154 regexp
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(arg
));
1156 if(is_class(regexp
, JSCLASS_REGEXP
)) {
1158 hres
= regexp_match(ctx
, regexp
, str
, length
, TRUE
, &match_result
, &match_cnt
);
1159 jsdisp_release(regexp
);
1161 SysFreeString(val_str
);
1166 jsdisp_release(regexp
);
1170 hres
= to_string(ctx
, arg
, ei
, &match_str
);
1172 SysFreeString(val_str
);
1176 match_len
= SysStringLen(match_str
);
1178 SysFreeString(match_str
);
1183 hres
= create_array(ctx
, 0, &array
);
1185 if(SUCCEEDED(hres
)) {
1191 ptr2
= match_result
[i
].str
;
1192 }else if(match_str
) {
1193 ptr2
= strstrW(ptr
, match_str
);
1202 V_VT(&var
) = VT_BSTR
;
1203 V_BSTR(&var
) = SysAllocStringLen(ptr
, ptr2
-ptr
);
1205 hres
= E_OUTOFMEMORY
;
1209 hres
= jsdisp_propput_idx(array
, i
, &var
, ei
, sp
);
1210 SysFreeString(V_BSTR(&var
));
1215 ptr
= match_result
[i
].str
+ match_result
[i
].len
;
1217 ptr
= ptr2
+ match_len
;
1223 if(SUCCEEDED(hres
) && (match_str
|| use_regexp
)) {
1224 DWORD len
= (str
+length
) - ptr
;
1226 if(len
|| match_str
) {
1227 V_VT(&var
) = VT_BSTR
;
1228 V_BSTR(&var
) = SysAllocStringLen(ptr
, len
);
1231 hres
= jsdisp_propput_idx(array
, i
, &var
, ei
, sp
);
1232 SysFreeString(V_BSTR(&var
));
1234 hres
= E_OUTOFMEMORY
;
1239 SysFreeString(match_str
);
1240 SysFreeString(val_str
);
1241 heap_free(match_result
);
1243 if(SUCCEEDED(hres
) && retv
) {
1244 V_VT(retv
) = VT_DISPATCH
;
1245 V_DISPATCH(retv
) = (IDispatch
*)_IDispatchEx_(array
);
1247 jsdisp_release(array
);
1253 static HRESULT
String_strike(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1254 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1256 static const WCHAR striketagW
[] = {'S','T','R','I','K','E',0};
1257 return do_attributeless_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, striketagW
);
1260 static HRESULT
String_sub(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1261 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1263 static const WCHAR subtagW
[] = {'S','U','B',0};
1264 return do_attributeless_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, subtagW
);
1267 /* ECMA-262 3rd Edition 15.5.4.15 */
1268 static HRESULT
String_substring(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1269 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1280 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1284 if(arg_cnt(dp
) >= 1) {
1285 hres
= to_integer(ctx
, get_arg(dp
,0), ei
, &v
);
1287 SysFreeString(val_str
);
1291 if(V_VT(&v
) == VT_I4
) {
1295 else if(start
>= length
)
1298 start
= V_R8(&v
) < 0.0 ? 0 : length
;
1302 if(arg_cnt(dp
) >= 2) {
1303 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &v
);
1305 SysFreeString(val_str
);
1309 if(V_VT(&v
) == VT_I4
) {
1313 else if(end
> length
)
1316 end
= V_R8(&v
) < 0.0 ? 0 : length
;
1329 V_VT(retv
) = VT_BSTR
;
1330 V_BSTR(retv
) = SysAllocStringLen(str
+start
, end
-start
);
1332 SysFreeString(val_str
);
1333 return E_OUTOFMEMORY
;
1336 SysFreeString(val_str
);
1340 /* ECMA-262 3rd Edition B.2.3 */
1341 static HRESULT
String_substr(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1342 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1353 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1357 if(arg_cnt(dp
) >= 1) {
1358 hres
= to_integer(ctx
, get_arg(dp
,0), ei
, &v
);
1360 SysFreeString(val_str
);
1364 if(V_VT(&v
) == VT_I4
) {
1368 else if(start
>= length
)
1371 start
= V_R8(&v
) < 0.0 ? 0 : length
;
1375 if(arg_cnt(dp
) >= 2) {
1376 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &v
);
1378 SysFreeString(val_str
);
1382 if(V_VT(&v
) == VT_I4
) {
1386 else if(len
> length
-start
)
1389 len
= V_R8(&v
) < 0.0 ? 0 : length
-start
;
1397 V_VT(retv
) = VT_BSTR
;
1398 V_BSTR(retv
) = SysAllocStringLen(str
+start
, len
);
1400 hres
= E_OUTOFMEMORY
;
1403 SysFreeString(val_str
);
1407 static HRESULT
String_sup(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1408 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1410 static const WCHAR suptagW
[] = {'S','U','P',0};
1411 return do_attributeless_tag_format(ctx
, jsthis
, flags
, dp
, retv
, ei
, sp
, suptagW
);
1414 static HRESULT
String_toLowerCase(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1415 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1424 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1430 val_str
= SysAllocStringLen(str
, length
);
1432 return E_OUTOFMEMORY
;
1437 V_VT(retv
) = VT_BSTR
;
1438 V_BSTR(retv
) = val_str
;
1440 else SysFreeString(val_str
);
1444 static HRESULT
String_toUpperCase(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1445 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1454 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1460 val_str
= SysAllocStringLen(str
, length
);
1462 return E_OUTOFMEMORY
;
1467 V_VT(retv
) = VT_BSTR
;
1468 V_BSTR(retv
) = val_str
;
1470 else SysFreeString(val_str
);
1474 static HRESULT
String_toLocaleLowerCase(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1475 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1481 static HRESULT
String_toLocaleUpperCase(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1482 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1488 static HRESULT
String_localeCompare(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1489 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1495 static HRESULT
String_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1496 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1498 StringInstance
*This
= string_from_vdisp(jsthis
);
1504 return throw_type_error(ctx
, ei
, IDS_NOT_FUNC
, NULL
);
1505 case DISPATCH_PROPERTYGET
: {
1506 BSTR str
= SysAllocString(This
->str
);
1508 return E_OUTOFMEMORY
;
1510 V_VT(retv
) = VT_BSTR
;
1515 FIXME("flags %x\n", flags
);
1522 static void String_destructor(DispatchEx
*dispex
)
1524 StringInstance
*This
= (StringInstance
*)dispex
;
1526 heap_free(This
->str
);
1530 static const builtin_prop_t String_props
[] = {
1531 {anchorW
, String_anchor
, PROPF_METHOD
|1},
1532 {bigW
, String_big
, PROPF_METHOD
},
1533 {blinkW
, String_blink
, PROPF_METHOD
},
1534 {boldW
, String_bold
, PROPF_METHOD
},
1535 {charAtW
, String_charAt
, PROPF_METHOD
|1},
1536 {charCodeAtW
, String_charCodeAt
, PROPF_METHOD
|1},
1537 {concatW
, String_concat
, PROPF_METHOD
|1},
1538 {fixedW
, String_fixed
, PROPF_METHOD
},
1539 {fontcolorW
, String_fontcolor
, PROPF_METHOD
|1},
1540 {fontsizeW
, String_fontsize
, PROPF_METHOD
|1},
1541 {indexOfW
, String_indexOf
, PROPF_METHOD
|2},
1542 {italicsW
, String_italics
, PROPF_METHOD
},
1543 {lastIndexOfW
, String_lastIndexOf
, PROPF_METHOD
|2},
1544 {lengthW
, String_length
, 0},
1545 {linkW
, String_link
, PROPF_METHOD
|1},
1546 {localeCompareW
, String_localeCompare
, PROPF_METHOD
|1},
1547 {matchW
, String_match
, PROPF_METHOD
|1},
1548 {replaceW
, String_replace
, PROPF_METHOD
|1},
1549 {searchW
, String_search
, PROPF_METHOD
},
1550 {sliceW
, String_slice
, PROPF_METHOD
},
1551 {smallW
, String_small
, PROPF_METHOD
},
1552 {splitW
, String_split
, PROPF_METHOD
|2},
1553 {strikeW
, String_strike
, PROPF_METHOD
},
1554 {subW
, String_sub
, PROPF_METHOD
},
1555 {substrW
, String_substr
, PROPF_METHOD
|2},
1556 {substringW
, String_substring
, PROPF_METHOD
|2},
1557 {supW
, String_sup
, PROPF_METHOD
},
1558 {toLocaleLowerCaseW
, String_toLocaleLowerCase
, PROPF_METHOD
},
1559 {toLocaleUpperCaseW
, String_toLocaleUpperCase
, PROPF_METHOD
},
1560 {toLowerCaseW
, String_toLowerCase
, PROPF_METHOD
},
1561 {toStringW
, String_toString
, PROPF_METHOD
},
1562 {toUpperCaseW
, String_toUpperCase
, PROPF_METHOD
},
1563 {valueOfW
, String_valueOf
, PROPF_METHOD
}
1566 static const builtin_info_t String_info
= {
1568 {NULL
, String_value
, 0},
1569 sizeof(String_props
)/sizeof(*String_props
),
1575 /* ECMA-262 3rd Edition 15.5.3.2 */
1576 static HRESULT
StringConstr_fromCharCode(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
1577 DISPPARAMS
*dp
, VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1583 ret
= SysAllocStringLen(NULL
, arg_cnt(dp
));
1585 return E_OUTOFMEMORY
;
1587 for(i
=0; i
<arg_cnt(dp
); i
++) {
1588 hres
= to_uint32(ctx
, get_arg(dp
, i
), ei
, &code
);
1598 V_VT(retv
) = VT_BSTR
;
1601 else SysFreeString(ret
);
1606 static HRESULT
StringConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1607 VARIANT
*retv
, jsexcept_t
*ei
, IServiceProvider
*sp
)
1618 hres
= to_string(ctx
, get_arg(dp
, 0), ei
, &str
);
1622 str
= SysAllocStringLen(NULL
, 0);
1624 return E_OUTOFMEMORY
;
1627 V_VT(retv
) = VT_BSTR
;
1631 case DISPATCH_CONSTRUCT
: {
1637 hres
= to_string(ctx
, get_arg(dp
, 0), ei
, &str
);
1641 hres
= create_string(ctx
, str
, SysStringLen(str
), &ret
);
1644 hres
= create_string(ctx
, NULL
, 0, &ret
);
1650 V_VT(retv
) = VT_DISPATCH
;
1651 V_DISPATCH(retv
) = (IDispatch
*)_IDispatchEx_(ret
);
1656 FIXME("unimplemented flags: %x\n", flags
);
1663 static HRESULT
string_alloc(script_ctx_t
*ctx
, DispatchEx
*object_prototype
, StringInstance
**ret
)
1665 StringInstance
*string
;
1668 string
= heap_alloc_zero(sizeof(StringInstance
));
1670 return E_OUTOFMEMORY
;
1672 if(object_prototype
)
1673 hres
= init_dispex(&string
->dispex
, ctx
, &String_info
, object_prototype
);
1675 hres
= init_dispex_from_constr(&string
->dispex
, ctx
, &String_info
, ctx
->string_constr
);
1685 static const builtin_prop_t StringConstr_props
[] = {
1686 {fromCharCodeW
, StringConstr_fromCharCode
, PROPF_METHOD
},
1689 static const builtin_info_t StringConstr_info
= {
1691 {NULL
, Function_value
, 0},
1692 sizeof(StringConstr_props
)/sizeof(*StringConstr_props
),
1698 HRESULT
create_string_constr(script_ctx_t
*ctx
, DispatchEx
*object_prototype
, DispatchEx
**ret
)
1700 StringInstance
*string
;
1703 static const WCHAR StringW
[] = {'S','t','r','i','n','g',0};
1705 hres
= string_alloc(ctx
, object_prototype
, &string
);
1709 hres
= create_builtin_function(ctx
, StringConstr_value
, StringW
, &StringConstr_info
,
1710 PROPF_CONSTR
|1, &string
->dispex
, ret
);
1712 jsdisp_release(&string
->dispex
);
1716 HRESULT
create_string(script_ctx_t
*ctx
, const WCHAR
*str
, DWORD len
, DispatchEx
**ret
)
1718 StringInstance
*string
;
1721 hres
= string_alloc(ctx
, NULL
, &string
);
1728 string
->length
= len
;
1729 string
->str
= heap_alloc((len
+1)*sizeof(WCHAR
));
1731 jsdisp_release(&string
->dispex
);
1732 return E_OUTOFMEMORY
;
1735 memcpy(string
->str
, str
, len
*sizeof(WCHAR
));
1736 string
->str
[len
] = 0;
1738 *ret
= &string
->dispex
;