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
)
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
)
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
)
158 return stringobj_to_string(jsthis
, retv
);
161 static HRESULT
do_attributeless_tag_format(script_ctx_t
*ctx
, vdisp_t
*jsthis
, VARIANT
*retv
,
162 jsexcept_t
*ei
, 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
, DISPPARAMS
*dp
, VARIANT
*retv
,
193 jsexcept_t
*ei
, const WCHAR
*tagname
, const WCHAR
*attr
)
195 static const WCHAR tagfmtW
[]
196 = {'<','%','s',' ','%','s','=','\"','%','s','\"','>','%','s','<','/','%','s','>',0};
197 static const WCHAR undefinedW
[] = {'u','n','d','e','f','i','n','e','d',0};
199 StringInstance
*string
;
202 BSTR attr_value
, val_str
= NULL
;
205 if(!(string
= string_this(jsthis
))) {
208 V_VT(&this) = VT_DISPATCH
;
209 V_DISPATCH(&this) = jsthis
->u
.disp
;
211 hres
= to_string(ctx
, &this, ei
, &val_str
);
216 length
= SysStringLen(val_str
);
220 length
= string
->length
;
224 hres
= to_string(ctx
, get_arg(dp
, 0), ei
, &attr_value
);
226 SysFreeString(val_str
);
231 attr_value
= SysAllocString(undefinedW
);
233 SysFreeString(val_str
);
234 return E_OUTOFMEMORY
;
239 BSTR ret
= SysAllocStringLen(NULL
, length
+ 2*strlenW(tagname
)
240 + strlenW(attr
) + SysStringLen(attr_value
) + 9);
242 SysFreeString(attr_value
);
243 SysFreeString(val_str
);
244 return E_OUTOFMEMORY
;
247 sprintfW(ret
, tagfmtW
, tagname
, attr
, attr_value
, str
, tagname
);
249 V_VT(retv
) = VT_BSTR
;
253 SysFreeString(attr_value
);
254 SysFreeString(val_str
);
258 static HRESULT
String_anchor(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
259 VARIANT
*retv
, jsexcept_t
*ei
)
261 static const WCHAR fontW
[] = {'A',0};
262 static const WCHAR colorW
[] = {'N','A','M','E',0};
264 return do_attribute_tag_format(ctx
, jsthis
, dp
, retv
, ei
, fontW
, colorW
);
267 static HRESULT
String_big(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
268 VARIANT
*retv
, jsexcept_t
*ei
)
270 static const WCHAR bigtagW
[] = {'B','I','G',0};
271 return do_attributeless_tag_format(ctx
, jsthis
, retv
, ei
, bigtagW
);
274 static HRESULT
String_blink(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
275 VARIANT
*retv
, jsexcept_t
*ei
)
277 static const WCHAR blinktagW
[] = {'B','L','I','N','K',0};
278 return do_attributeless_tag_format(ctx
, jsthis
, retv
, ei
, blinktagW
);
281 static HRESULT
String_bold(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
282 VARIANT
*retv
, jsexcept_t
*ei
)
284 static const WCHAR boldtagW
[] = {'B',0};
285 return do_attributeless_tag_format(ctx
, jsthis
, retv
, ei
, boldtagW
);
288 /* ECMA-262 3rd Edition 15.5.4.5 */
289 static HRESULT
String_charAt(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
290 VARIANT
*retv
, jsexcept_t
*ei
)
300 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
307 hres
= to_integer(ctx
, get_arg(dp
, 0), ei
, &d
);
309 SysFreeString(val_str
);
312 pos
= is_int32(d
) ? d
: -1;
316 SysFreeString(val_str
);
320 if(0 <= pos
&& pos
< length
)
321 ret
= SysAllocStringLen(str
+pos
, 1);
323 ret
= SysAllocStringLen(NULL
, 0);
324 SysFreeString(val_str
);
326 return E_OUTOFMEMORY
;
329 V_VT(retv
) = VT_BSTR
;
334 /* ECMA-262 3rd Edition 15.5.4.5 */
335 static HRESULT
String_charCodeAt(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
336 VARIANT
*retv
, jsexcept_t
*ei
)
340 DWORD length
, idx
= 0;
345 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
349 if(arg_cnt(dp
) > 0) {
352 hres
= to_integer(ctx
, get_arg(dp
, 0), ei
, &d
);
354 SysFreeString(val_str
);
358 if(!is_int32(d
) || d
< 0 || d
>= length
) {
359 SysFreeString(val_str
);
370 V_I4(retv
) = str
[idx
];
373 SysFreeString(val_str
);
377 /* ECMA-262 3rd Edition 15.5.4.6 */
378 static HRESULT
String_concat(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
379 VARIANT
*retv
, jsexcept_t
*ei
)
381 BSTR
*strs
= NULL
, ret
= NULL
;
382 DWORD len
= 0, i
, l
, str_cnt
;
389 str_cnt
= arg_cnt(dp
)+1;
390 strs
= heap_alloc_zero(str_cnt
* sizeof(BSTR
));
392 return E_OUTOFMEMORY
;
394 V_VT(&var
) = VT_DISPATCH
;
395 V_DISPATCH(&var
) = jsthis
->u
.disp
;
397 hres
= to_string(ctx
, &var
, ei
, strs
);
398 if(SUCCEEDED(hres
)) {
399 for(i
=0; i
< arg_cnt(dp
); i
++) {
400 hres
= to_string(ctx
, get_arg(dp
, i
), ei
, strs
+i
+1);
406 if(SUCCEEDED(hres
)) {
407 for(i
=0; i
< str_cnt
; i
++)
408 len
+= SysStringLen(strs
[i
]);
410 ptr
= ret
= SysAllocStringLen(NULL
, len
);
412 for(i
=0; i
< str_cnt
; i
++) {
413 l
= SysStringLen(strs
[i
]);
414 memcpy(ptr
, strs
[i
], l
*sizeof(WCHAR
));
419 for(i
=0; i
< str_cnt
; i
++)
420 SysFreeString(strs
[i
]);
427 V_VT(retv
) = VT_BSTR
;
435 static HRESULT
String_fixed(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
436 VARIANT
*retv
, jsexcept_t
*ei
)
438 static const WCHAR fixedtagW
[] = {'T','T',0};
439 return do_attributeless_tag_format(ctx
, jsthis
, retv
, ei
, fixedtagW
);
442 static HRESULT
String_fontcolor(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
443 VARIANT
*retv
, jsexcept_t
*ei
)
445 static const WCHAR fontW
[] = {'F','O','N','T',0};
446 static const WCHAR colorW
[] = {'C','O','L','O','R',0};
448 return do_attribute_tag_format(ctx
, jsthis
, dp
, retv
, ei
, fontW
, colorW
);
451 static HRESULT
String_fontsize(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
452 VARIANT
*retv
, jsexcept_t
*ei
)
454 static const WCHAR fontW
[] = {'F','O','N','T',0};
455 static const WCHAR colorW
[] = {'S','I','Z','E',0};
457 return do_attribute_tag_format(ctx
, jsthis
, dp
, retv
, ei
, fontW
, colorW
);
460 static HRESULT
String_indexOf(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
461 VARIANT
*retv
, jsexcept_t
*ei
)
463 DWORD length
, pos
= 0;
465 BSTR search_str
, val_str
;
471 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
480 SysFreeString(val_str
);
484 hres
= to_string(ctx
, get_arg(dp
,0), ei
, &search_str
);
486 SysFreeString(val_str
);
490 if(arg_cnt(dp
) >= 2) {
493 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &d
);
494 if(SUCCEEDED(hres
) && d
> 0.0)
495 pos
= is_int32(d
) ? min(length
, d
) : length
;
498 if(SUCCEEDED(hres
)) {
501 ptr
= strstrW(str
+pos
, search_str
);
508 SysFreeString(search_str
);
509 SysFreeString(val_str
);
520 static HRESULT
String_italics(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
521 VARIANT
*retv
, jsexcept_t
*ei
)
523 static const WCHAR italicstagW
[] = {'I',0};
524 return do_attributeless_tag_format(ctx
, jsthis
, retv
, ei
, italicstagW
);
527 /* ECMA-262 3rd Edition 15.5.4.8 */
528 static HRESULT
String_lastIndexOf(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
529 VARIANT
*retv
, jsexcept_t
*ei
)
531 BSTR search_str
, val_str
;
532 DWORD length
, pos
= 0, search_len
;
539 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
548 SysFreeString(val_str
);
552 hres
= to_string(ctx
, get_arg(dp
,0), ei
, &search_str
);
554 SysFreeString(val_str
);
558 search_len
= SysStringLen(search_str
);
560 if(arg_cnt(dp
) >= 2) {
563 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &d
);
564 if(SUCCEEDED(hres
) && d
> 0)
565 pos
= is_int32(d
) ? min(length
, d
) : length
;
570 if(SUCCEEDED(hres
) && length
>= search_len
) {
573 for(ptr
= str
+min(pos
, length
-search_len
); ptr
>= str
; ptr
--) {
574 if(!memcmp(ptr
, search_str
, search_len
*sizeof(WCHAR
))) {
581 SysFreeString(search_str
);
582 SysFreeString(val_str
);
593 static HRESULT
String_link(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
594 VARIANT
*retv
, jsexcept_t
*ei
)
596 static const WCHAR fontW
[] = {'A',0};
597 static const WCHAR colorW
[] = {'H','R','E','F',0};
599 return do_attribute_tag_format(ctx
, jsthis
, dp
, retv
, ei
, fontW
, colorW
);
602 /* ECMA-262 3rd Edition 15.5.4.10 */
603 static HRESULT
String_match(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
604 VARIANT
*retv
, jsexcept_t
*ei
)
617 V_VT(retv
) = VT_NULL
;
623 arg_var
= get_arg(dp
, 0);
624 switch(V_VT(arg_var
)) {
626 regexp
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(arg_var
));
628 if(is_class(regexp
, JSCLASS_REGEXP
))
630 jsdisp_release(regexp
);
635 hres
= to_string(ctx
, arg_var
, ei
, &match_str
);
639 hres
= create_regexp(ctx
, match_str
, SysStringLen(match_str
), 0, ®exp
);
640 SysFreeString(match_str
);
646 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
647 if(SUCCEEDED(hres
)) {
649 val_str
= SysAllocStringLen(str
, length
);
651 hres
= regexp_string_match(ctx
, regexp
, val_str
, retv
, ei
);
653 hres
= E_OUTOFMEMORY
;
656 jsdisp_release(regexp
);
657 SysFreeString(val_str
);
667 static HRESULT
strbuf_append(strbuf_t
*buf
, const WCHAR
*str
, DWORD len
)
672 if(len
+ buf
->len
> buf
->size
) {
676 new_size
= buf
->size
? buf
->size
<<1 : 16;
677 if(new_size
< buf
->len
+len
)
678 new_size
= buf
->len
+len
;
680 new_buf
= heap_realloc(buf
->buf
, new_size
*sizeof(WCHAR
));
682 new_buf
= heap_alloc(new_size
*sizeof(WCHAR
));
684 return E_OUTOFMEMORY
;
687 buf
->size
= new_size
;
690 memcpy(buf
->buf
+buf
->len
, str
, len
*sizeof(WCHAR
));
695 static HRESULT
rep_call(script_ctx_t
*ctx
, jsdisp_t
*func
, const WCHAR
*str
, match_result_t
*match
,
696 match_result_t
*parens
, DWORD parens_cnt
, BSTR
*ret
, jsexcept_t
*ei
)
698 DISPPARAMS dp
= {NULL
, NULL
, 0, 0};
699 VARIANTARG
*args
, *arg
;
704 dp
.cArgs
= parens_cnt
+3;
705 dp
.rgvarg
= args
= heap_alloc_zero(sizeof(VARIANT
)*dp
.cArgs
);
707 return E_OUTOFMEMORY
;
709 arg
= get_arg(&dp
,0);
711 V_BSTR(arg
) = SysAllocStringLen(match
->str
, match
->len
);
713 hres
= E_OUTOFMEMORY
;
715 if(SUCCEEDED(hres
)) {
716 for(i
=0; i
< parens_cnt
; i
++) {
717 arg
= get_arg(&dp
,i
+1);
719 V_BSTR(arg
) = SysAllocStringLen(parens
[i
].str
, parens
[i
].len
);
721 hres
= E_OUTOFMEMORY
;
727 if(SUCCEEDED(hres
)) {
728 arg
= get_arg(&dp
,parens_cnt
+1);
730 V_I4(arg
) = match
->str
- str
;
732 arg
= get_arg(&dp
,parens_cnt
+2);
734 V_BSTR(arg
) = SysAllocString(str
);
736 hres
= E_OUTOFMEMORY
;
740 hres
= jsdisp_call_value(func
, DISPATCH_METHOD
, &dp
, &var
, ei
);
742 for(i
=0; i
< parens_cnt
+3; i
++) {
743 if(i
!= parens_cnt
+1)
744 SysFreeString(V_BSTR(get_arg(&dp
,i
)));
751 hres
= to_string(ctx
, &var
, ei
, ret
);
756 /* ECMA-262 3rd Edition 15.5.4.11 */
757 static HRESULT
String_replace(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
758 VARIANT
*retv
, jsexcept_t
*ei
)
761 DWORD parens_cnt
= 0, parens_size
=0, rep_len
=0, length
;
762 BSTR rep_str
= NULL
, match_str
= NULL
, ret_str
, val_str
;
763 jsdisp_t
*rep_func
= NULL
, *regexp
= NULL
;
764 match_result_t
*parens
= NULL
, match
= {NULL
,0}, **parens_ptr
= &parens
;
765 strbuf_t ret
= {NULL
,0,0};
766 DWORD re_flags
= REM_NO_CTX_UPDATE
;
772 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
779 val_str
= SysAllocStringLen(str
, length
);
781 return E_OUTOFMEMORY
;
784 V_VT(retv
) = VT_BSTR
;
785 V_BSTR(retv
) = val_str
;
790 arg_var
= get_arg(dp
, 0);
791 switch(V_VT(arg_var
)) {
793 regexp
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(arg_var
));
795 if(is_class(regexp
, JSCLASS_REGEXP
)) {
798 jsdisp_release(regexp
);
804 hres
= to_string(ctx
, arg_var
, ei
, &match_str
);
806 SysFreeString(val_str
);
811 if(arg_cnt(dp
) >= 2) {
812 arg_var
= get_arg(dp
,1);
813 switch(V_VT(arg_var
)) {
815 rep_func
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(arg_var
));
817 if(is_class(rep_func
, JSCLASS_FUNCTION
)) {
820 jsdisp_release(rep_func
);
826 hres
= to_string(ctx
, arg_var
, ei
, &rep_str
);
830 rep_len
= SysStringLen(rep_str
);
831 if(!strchrW(rep_str
, '$'))
836 if(SUCCEEDED(hres
)) {
837 const WCHAR
*cp
, *ecp
;
843 hres
= regexp_match_next(ctx
, regexp
, re_flags
, str
, length
, &cp
, parens_ptr
,
844 &parens_size
, &parens_cnt
, &match
);
845 re_flags
|= REM_CHECK_GLOBAL
;
847 if(hres
== S_FALSE
) {
857 match
.str
= strstrW(cp
, match_str
);
860 match
.len
= SysStringLen(match_str
);
861 cp
= match
.str
+match
.len
;
864 hres
= strbuf_append(&ret
, ecp
, match
.str
-ecp
);
865 ecp
= match
.str
+match
.len
;
872 hres
= rep_call(ctx
, rep_func
, str
, &match
, parens
, parens_cnt
, &cstr
, ei
);
876 hres
= strbuf_append(&ret
, cstr
, SysStringLen(cstr
));
880 }else if(rep_str
&& regexp
) {
881 const WCHAR
*ptr
= rep_str
, *ptr2
;
883 while((ptr2
= strchrW(ptr
, '$'))) {
884 hres
= strbuf_append(&ret
, ptr
, ptr2
-ptr
);
890 hres
= strbuf_append(&ret
, ptr2
, 1);
894 hres
= strbuf_append(&ret
, match
.str
, match
.len
);
898 hres
= strbuf_append(&ret
, str
, match
.str
-str
);
902 hres
= strbuf_append(&ret
, ecp
, (str
+length
)-ecp
);
908 if(!isdigitW(ptr2
[1])) {
909 hres
= strbuf_append(&ret
, ptr2
, 1);
915 if(isdigitW(ptr2
[2]) && idx
*10 + (ptr2
[2]-'0') <= parens_cnt
) {
916 idx
= idx
*10 + (ptr
[2]-'0');
918 }else if(idx
&& idx
<= parens_cnt
) {
921 hres
= strbuf_append(&ret
, ptr2
, 1);
926 hres
= strbuf_append(&ret
, parens
[idx
-1].str
, parens
[idx
-1].len
);
935 hres
= strbuf_append(&ret
, ptr
, (rep_str
+rep_len
)-ptr
);
939 hres
= strbuf_append(&ret
, rep_str
, rep_len
);
943 static const WCHAR undefinedW
[] = {'u','n','d','e','f','i','n','e','d'};
945 hres
= strbuf_append(&ret
, undefinedW
, sizeof(undefinedW
)/sizeof(WCHAR
));
955 hres
= strbuf_append(&ret
, ecp
, (str
+length
)-ecp
);
959 jsdisp_release(rep_func
);
960 SysFreeString(rep_str
);
961 SysFreeString(match_str
);
964 if(SUCCEEDED(hres
) && match
.str
&& regexp
) {
966 val_str
= SysAllocStringLen(str
, length
);
968 SysFreeString(ctx
->last_match
);
969 ctx
->last_match
= val_str
;
971 ctx
->last_match_index
= match
.str
-str
;
972 ctx
->last_match_length
= match
.len
;
974 hres
= E_OUTOFMEMORY
;
979 jsdisp_release(regexp
);
980 SysFreeString(val_str
);
982 if(SUCCEEDED(hres
) && retv
) {
983 ret_str
= SysAllocStringLen(ret
.buf
, ret
.len
);
985 return E_OUTOFMEMORY
;
987 V_VT(retv
) = VT_BSTR
;
988 V_BSTR(retv
) = ret_str
;
989 TRACE("= %s\n", debugstr_w(ret_str
));
996 static HRESULT
String_search(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
997 VARIANT
*retv
, jsexcept_t
*ei
)
999 jsdisp_t
*regexp
= NULL
;
1000 const WCHAR
*str
, *cp
;
1001 match_result_t match
;
1009 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1015 V_VT(retv
) = VT_NULL
;
1016 SysFreeString(val_str
);
1020 arg
= get_arg(dp
,0);
1021 if(V_VT(arg
) == VT_DISPATCH
) {
1022 regexp
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(arg
));
1024 if(!is_class(regexp
, JSCLASS_REGEXP
)) {
1025 jsdisp_release(regexp
);
1032 hres
= create_regexp_var(ctx
, arg
, NULL
, ®exp
);
1034 SysFreeString(val_str
);
1040 hres
= regexp_match_next(ctx
, regexp
, REM_RESET_INDEX
, str
, length
, &cp
, NULL
, NULL
, NULL
, &match
);
1041 SysFreeString(val_str
);
1042 jsdisp_release(regexp
);
1048 V_I4(retv
) = hres
== S_OK
? match
.str
-str
: -1;
1053 /* ECMA-262 3rd Edition 15.5.4.13 */
1054 static HRESULT
String_slice(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1055 VARIANT
*retv
, jsexcept_t
*ei
)
1066 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1071 hres
= to_integer(ctx
, get_arg(dp
,0), ei
, &d
);
1073 SysFreeString(val_str
);
1080 start
= length
+ start
;
1083 }else if(start
> length
) {
1091 if(arg_cnt(dp
) >= 2) {
1092 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &d
);
1094 SysFreeString(val_str
);
1104 }else if(end
> length
) {
1108 end
= d
< 0.0 ? 0 : length
;
1118 BSTR retstr
= SysAllocStringLen(str
+start
, end
-start
);
1120 SysFreeString(val_str
);
1121 return E_OUTOFMEMORY
;
1124 V_VT(retv
) = VT_BSTR
;
1125 V_BSTR(retv
) = retstr
;
1128 SysFreeString(val_str
);
1132 static HRESULT
String_small(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1133 VARIANT
*retv
, jsexcept_t
*ei
)
1135 static const WCHAR smalltagW
[] = {'S','M','A','L','L',0};
1136 return do_attributeless_tag_format(ctx
, jsthis
, retv
, ei
, smalltagW
);
1139 static HRESULT
String_split(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1140 VARIANT
*retv
, jsexcept_t
*ei
)
1142 match_result_t
*match_result
= NULL
;
1143 DWORD length
, match_cnt
, i
, match_len
= 0;
1144 const WCHAR
*str
, *ptr
, *ptr2
;
1145 BOOL use_regexp
= FALSE
;
1148 BSTR val_str
, match_str
= NULL
;
1153 if(arg_cnt(dp
) != 1) {
1154 FIXME("unsupported args\n");
1158 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1162 arg
= get_arg(dp
, 0);
1167 regexp
= iface_to_jsdisp((IUnknown
*)V_DISPATCH(arg
));
1169 if(is_class(regexp
, JSCLASS_REGEXP
)) {
1171 hres
= regexp_match(ctx
, regexp
, str
, length
, TRUE
, &match_result
, &match_cnt
);
1172 jsdisp_release(regexp
);
1174 SysFreeString(val_str
);
1179 jsdisp_release(regexp
);
1183 hres
= to_string(ctx
, arg
, ei
, &match_str
);
1185 SysFreeString(val_str
);
1189 match_len
= SysStringLen(match_str
);
1191 SysFreeString(match_str
);
1196 hres
= create_array(ctx
, 0, &array
);
1198 if(SUCCEEDED(hres
)) {
1204 ptr2
= match_result
[i
].str
;
1205 }else if(match_str
) {
1206 ptr2
= strstrW(ptr
, match_str
);
1215 V_VT(&var
) = VT_BSTR
;
1216 V_BSTR(&var
) = SysAllocStringLen(ptr
, ptr2
-ptr
);
1218 hres
= E_OUTOFMEMORY
;
1222 hres
= jsdisp_propput_idx(array
, i
, &var
, ei
);
1223 SysFreeString(V_BSTR(&var
));
1228 ptr
= match_result
[i
].str
+ match_result
[i
].len
;
1230 ptr
= ptr2
+ match_len
;
1236 if(SUCCEEDED(hres
) && (match_str
|| use_regexp
)) {
1237 DWORD len
= (str
+length
) - ptr
;
1239 if(len
|| match_str
) {
1240 V_VT(&var
) = VT_BSTR
;
1241 V_BSTR(&var
) = SysAllocStringLen(ptr
, len
);
1244 hres
= jsdisp_propput_idx(array
, i
, &var
, ei
);
1245 SysFreeString(V_BSTR(&var
));
1247 hres
= E_OUTOFMEMORY
;
1252 SysFreeString(match_str
);
1253 SysFreeString(val_str
);
1254 heap_free(match_result
);
1256 if(SUCCEEDED(hres
) && retv
)
1257 var_set_jsdisp(retv
, array
);
1259 jsdisp_release(array
);
1264 static HRESULT
String_strike(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1265 VARIANT
*retv
, jsexcept_t
*ei
)
1267 static const WCHAR striketagW
[] = {'S','T','R','I','K','E',0};
1268 return do_attributeless_tag_format(ctx
, jsthis
, retv
, ei
, striketagW
);
1271 static HRESULT
String_sub(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1272 VARIANT
*retv
, jsexcept_t
*ei
)
1274 static const WCHAR subtagW
[] = {'S','U','B',0};
1275 return do_attributeless_tag_format(ctx
, jsthis
, retv
, ei
, subtagW
);
1278 /* ECMA-262 3rd Edition 15.5.4.15 */
1279 static HRESULT
String_substring(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1280 VARIANT
*retv
, jsexcept_t
*ei
)
1291 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1295 if(arg_cnt(dp
) >= 1) {
1296 hres
= to_integer(ctx
, get_arg(dp
,0), ei
, &d
);
1298 SysFreeString(val_str
);
1303 start
= is_int32(d
) ? min(length
, d
) : length
;
1306 if(arg_cnt(dp
) >= 2) {
1307 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &d
);
1309 SysFreeString(val_str
);
1314 end
= is_int32(d
) ? min(length
, d
) : length
;
1328 V_VT(retv
) = VT_BSTR
;
1329 V_BSTR(retv
) = SysAllocStringLen(str
+start
, end
-start
);
1331 SysFreeString(val_str
);
1332 return E_OUTOFMEMORY
;
1335 SysFreeString(val_str
);
1339 /* ECMA-262 3rd Edition B.2.3 */
1340 static HRESULT
String_substr(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1341 VARIANT
*retv
, jsexcept_t
*ei
)
1352 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1356 if(arg_cnt(dp
) >= 1) {
1357 hres
= to_integer(ctx
, get_arg(dp
,0), ei
, &d
);
1359 SysFreeString(val_str
);
1364 start
= is_int32(d
) ? min(length
, d
) : length
;
1367 if(arg_cnt(dp
) >= 2) {
1368 hres
= to_integer(ctx
, get_arg(dp
,1), ei
, &d
);
1370 SysFreeString(val_str
);
1375 len
= is_int32(d
) ? min(length
-start
, d
) : length
-start
;
1384 V_VT(retv
) = VT_BSTR
;
1385 V_BSTR(retv
) = SysAllocStringLen(str
+start
, len
);
1387 hres
= E_OUTOFMEMORY
;
1390 SysFreeString(val_str
);
1394 static HRESULT
String_sup(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1395 VARIANT
*retv
, jsexcept_t
*ei
)
1397 static const WCHAR suptagW
[] = {'S','U','P',0};
1398 return do_attributeless_tag_format(ctx
, jsthis
, retv
, ei
, suptagW
);
1401 static HRESULT
String_toLowerCase(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1402 VARIANT
*retv
, jsexcept_t
*ei
)
1411 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1417 val_str
= SysAllocStringLen(str
, length
);
1419 return E_OUTOFMEMORY
;
1424 V_VT(retv
) = VT_BSTR
;
1425 V_BSTR(retv
) = val_str
;
1427 else SysFreeString(val_str
);
1431 static HRESULT
String_toUpperCase(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1432 VARIANT
*retv
, jsexcept_t
*ei
)
1441 hres
= get_string_val(ctx
, jsthis
, ei
, &str
, &length
, &val_str
);
1447 val_str
= SysAllocStringLen(str
, length
);
1449 return E_OUTOFMEMORY
;
1454 V_VT(retv
) = VT_BSTR
;
1455 V_BSTR(retv
) = val_str
;
1457 else SysFreeString(val_str
);
1461 static HRESULT
String_toLocaleLowerCase(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1462 VARIANT
*retv
, jsexcept_t
*ei
)
1468 static HRESULT
String_toLocaleUpperCase(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1469 VARIANT
*retv
, jsexcept_t
*ei
)
1475 static HRESULT
String_localeCompare(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1476 VARIANT
*retv
, jsexcept_t
*ei
)
1482 static HRESULT
String_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1483 VARIANT
*retv
, jsexcept_t
*ei
)
1485 StringInstance
*This
= string_from_vdisp(jsthis
);
1491 return throw_type_error(ctx
, ei
, JS_E_FUNCTION_EXPECTED
, NULL
);
1492 case DISPATCH_PROPERTYGET
: {
1493 BSTR str
= SysAllocString(This
->str
);
1495 return E_OUTOFMEMORY
;
1497 V_VT(retv
) = VT_BSTR
;
1502 FIXME("flags %x\n", flags
);
1509 static void String_destructor(jsdisp_t
*dispex
)
1511 StringInstance
*This
= (StringInstance
*)dispex
;
1513 heap_free(This
->str
);
1517 static const builtin_prop_t String_props
[] = {
1518 {anchorW
, String_anchor
, PROPF_METHOD
|1},
1519 {bigW
, String_big
, PROPF_METHOD
},
1520 {blinkW
, String_blink
, PROPF_METHOD
},
1521 {boldW
, String_bold
, PROPF_METHOD
},
1522 {charAtW
, String_charAt
, PROPF_METHOD
|1},
1523 {charCodeAtW
, String_charCodeAt
, PROPF_METHOD
|1},
1524 {concatW
, String_concat
, PROPF_METHOD
|1},
1525 {fixedW
, String_fixed
, PROPF_METHOD
},
1526 {fontcolorW
, String_fontcolor
, PROPF_METHOD
|1},
1527 {fontsizeW
, String_fontsize
, PROPF_METHOD
|1},
1528 {indexOfW
, String_indexOf
, PROPF_METHOD
|2},
1529 {italicsW
, String_italics
, PROPF_METHOD
},
1530 {lastIndexOfW
, String_lastIndexOf
, PROPF_METHOD
|2},
1531 {lengthW
, String_length
, 0},
1532 {linkW
, String_link
, PROPF_METHOD
|1},
1533 {localeCompareW
, String_localeCompare
, PROPF_METHOD
|1},
1534 {matchW
, String_match
, PROPF_METHOD
|1},
1535 {replaceW
, String_replace
, PROPF_METHOD
|1},
1536 {searchW
, String_search
, PROPF_METHOD
},
1537 {sliceW
, String_slice
, PROPF_METHOD
},
1538 {smallW
, String_small
, PROPF_METHOD
},
1539 {splitW
, String_split
, PROPF_METHOD
|2},
1540 {strikeW
, String_strike
, PROPF_METHOD
},
1541 {subW
, String_sub
, PROPF_METHOD
},
1542 {substrW
, String_substr
, PROPF_METHOD
|2},
1543 {substringW
, String_substring
, PROPF_METHOD
|2},
1544 {supW
, String_sup
, PROPF_METHOD
},
1545 {toLocaleLowerCaseW
, String_toLocaleLowerCase
, PROPF_METHOD
},
1546 {toLocaleUpperCaseW
, String_toLocaleUpperCase
, PROPF_METHOD
},
1547 {toLowerCaseW
, String_toLowerCase
, PROPF_METHOD
},
1548 {toStringW
, String_toString
, PROPF_METHOD
},
1549 {toUpperCaseW
, String_toUpperCase
, PROPF_METHOD
},
1550 {valueOfW
, String_valueOf
, PROPF_METHOD
}
1553 static const builtin_info_t String_info
= {
1555 {NULL
, String_value
, 0},
1556 sizeof(String_props
)/sizeof(*String_props
),
1562 /* ECMA-262 3rd Edition 15.5.3.2 */
1563 static HRESULT
StringConstr_fromCharCode(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
,
1564 DISPPARAMS
*dp
, VARIANT
*retv
, jsexcept_t
*ei
)
1570 ret
= SysAllocStringLen(NULL
, arg_cnt(dp
));
1572 return E_OUTOFMEMORY
;
1574 for(i
=0; i
<arg_cnt(dp
); i
++) {
1575 hres
= to_uint32(ctx
, get_arg(dp
, i
), ei
, &code
);
1585 V_VT(retv
) = VT_BSTR
;
1588 else SysFreeString(ret
);
1593 static HRESULT
StringConstr_value(script_ctx_t
*ctx
, vdisp_t
*jsthis
, WORD flags
, DISPPARAMS
*dp
,
1594 VARIANT
*retv
, jsexcept_t
*ei
)
1605 hres
= to_string(ctx
, get_arg(dp
, 0), ei
, &str
);
1609 str
= SysAllocStringLen(NULL
, 0);
1611 return E_OUTOFMEMORY
;
1614 V_VT(retv
) = VT_BSTR
;
1618 case DISPATCH_CONSTRUCT
: {
1624 hres
= to_string(ctx
, get_arg(dp
, 0), ei
, &str
);
1628 hres
= create_string(ctx
, str
, SysStringLen(str
), &ret
);
1631 hres
= create_string(ctx
, NULL
, 0, &ret
);
1637 var_set_jsdisp(retv
, ret
);
1642 FIXME("unimplemented flags: %x\n", flags
);
1649 static HRESULT
string_alloc(script_ctx_t
*ctx
, jsdisp_t
*object_prototype
, StringInstance
**ret
)
1651 StringInstance
*string
;
1654 string
= heap_alloc_zero(sizeof(StringInstance
));
1656 return E_OUTOFMEMORY
;
1658 if(object_prototype
)
1659 hres
= init_dispex(&string
->dispex
, ctx
, &String_info
, object_prototype
);
1661 hres
= init_dispex_from_constr(&string
->dispex
, ctx
, &String_info
, ctx
->string_constr
);
1671 static const builtin_prop_t StringConstr_props
[] = {
1672 {fromCharCodeW
, StringConstr_fromCharCode
, PROPF_METHOD
},
1675 static const builtin_info_t StringConstr_info
= {
1677 {NULL
, Function_value
, 0},
1678 sizeof(StringConstr_props
)/sizeof(*StringConstr_props
),
1684 HRESULT
create_string_constr(script_ctx_t
*ctx
, jsdisp_t
*object_prototype
, jsdisp_t
**ret
)
1686 StringInstance
*string
;
1689 static const WCHAR StringW
[] = {'S','t','r','i','n','g',0};
1691 hres
= string_alloc(ctx
, object_prototype
, &string
);
1695 hres
= create_builtin_function(ctx
, StringConstr_value
, StringW
, &StringConstr_info
,
1696 PROPF_CONSTR
|1, &string
->dispex
, ret
);
1698 jsdisp_release(&string
->dispex
);
1702 HRESULT
create_string(script_ctx_t
*ctx
, const WCHAR
*str
, DWORD len
, jsdisp_t
**ret
)
1704 StringInstance
*string
;
1707 hres
= string_alloc(ctx
, NULL
, &string
);
1714 string
->length
= len
;
1715 string
->str
= heap_alloc((len
+1)*sizeof(WCHAR
));
1717 jsdisp_release(&string
->dispex
);
1718 return E_OUTOFMEMORY
;
1721 memcpy(string
->str
, str
, len
*sizeof(WCHAR
));
1722 string
->str
[len
] = 0;
1724 *ret
= &string
->dispex
;