Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
705ce33a
Commit
705ce33a
authored
Oct 18, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Added VBArray stub.
parent
e61f2729
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
183 additions
and
6 deletions
+183
-6
Makefile.in
dlls/jscript/Makefile.in
+2
-1
global.c
dlls/jscript/global.c
+8
-3
jscript.h
dlls/jscript/jscript.h
+4
-1
object.c
dlls/jscript/object.c
+1
-1
api.js
dlls/jscript/tests/api.js
+8
-0
vbarray.c
dlls/jscript/vbarray.c
+160
-0
No files found.
dlls/jscript/Makefile.in
View file @
705ce33a
...
...
@@ -41,7 +41,8 @@ C_SRCS = \
number.c
\
object.c
\
regexp.c
\
string.c
string.c
\
vbarray.c
IDL_TLB_SRCS
=
jsglobal.idl
...
...
dlls/jscript/global.c
View file @
705ce33a
...
...
@@ -248,8 +248,9 @@ static HRESULT JSGlobal_ActiveXObject(script_ctx_t *ctx, vdisp_t *jsthis, WORD f
static
HRESULT
JSGlobal_VBArray
(
script_ctx_t
*
ctx
,
vdisp_t
*
jsthis
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
sp
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"
\n
"
);
return
constructor_call
(
ctx
->
vbarray_constr
,
flags
,
dp
,
retv
,
ei
,
sp
);
}
static
HRESULT
JSGlobal_Enumerator
(
script_ctx_t
*
ctx
,
vdisp_t
*
jsthis
,
WORD
flags
,
DISPPARAMS
*
dp
,
...
...
@@ -1039,7 +1040,7 @@ static const builtin_prop_t JSGlobal_props[] = {
{
SyntaxErrorW
,
JSGlobal_SyntaxError
,
PROPF_CONSTR
|
1
},
{
TypeErrorW
,
JSGlobal_TypeError
,
PROPF_CONSTR
|
1
},
{
URIErrorW
,
JSGlobal_URIError
,
PROPF_CONSTR
|
1
},
{
VBArrayW
,
JSGlobal_VBArray
,
PROPF_
METHOD
|
1
},
{
VBArrayW
,
JSGlobal_VBArray
,
PROPF_
CONSTR
|
1
},
{
decodeURIW
,
JSGlobal_decodeURI
,
PROPF_METHOD
|
1
},
{
decodeURIComponentW
,
JSGlobal_decodeURIComponent
,
PROPF_METHOD
|
1
},
{
encodeURIW
,
JSGlobal_encodeURI
,
PROPF_METHOD
|
1
},
...
...
@@ -1106,6 +1107,10 @@ static HRESULT init_constructors(script_ctx_t *ctx, jsdisp_t *object_prototype)
if
(
FAILED
(
hres
))
return
hres
;
hres
=
create_vbarray_constr
(
ctx
,
object_prototype
,
&
ctx
->
vbarray_constr
);
if
(
FAILED
(
hres
))
return
hres
;
return
S_OK
;
}
...
...
dlls/jscript/jscript.h
View file @
705ce33a
...
...
@@ -84,7 +84,8 @@ typedef enum {
JSCLASS_OBJECT
,
JSCLASS_REGEXP
,
JSCLASS_STRING
,
JSCLASS_ARGUMENTS
JSCLASS_ARGUMENTS
,
JSCLASS_VBARRAY
}
jsclass_t
;
jsdisp_t
*
iface_to_jsdisp
(
IUnknown
*
);
...
...
@@ -304,6 +305,7 @@ struct _script_ctx_t {
jsdisp_t
*
object_constr
;
jsdisp_t
*
regexp_constr
;
jsdisp_t
*
string_constr
;
jsdisp_t
*
vbarray_constr
;
};
void
script_release
(
script_ctx_t
*
);
...
...
@@ -326,6 +328,7 @@ HRESULT create_number_constr(script_ctx_t*,jsdisp_t*,jsdisp_t**);
HRESULT
create_object_constr
(
script_ctx_t
*
,
jsdisp_t
*
,
jsdisp_t
**
);
HRESULT
create_regexp_constr
(
script_ctx_t
*
,
jsdisp_t
*
,
jsdisp_t
**
);
HRESULT
create_string_constr
(
script_ctx_t
*
,
jsdisp_t
*
,
jsdisp_t
**
);
HRESULT
create_vbarray_constr
(
script_ctx_t
*
,
jsdisp_t
*
,
jsdisp_t
**
);
IUnknown
*
create_ax_site
(
script_ctx_t
*
);
...
...
dlls/jscript/object.c
View file @
705ce33a
...
...
@@ -52,7 +52,7 @@ static HRESULT Object_toString(script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, D
static
const
WCHAR
stringW
[]
=
{
'S'
,
't'
,
'r'
,
'i'
,
'n'
,
'g'
,
0
};
/* Keep in sync with jsclass_t enum */
static
const
WCHAR
*
names
[]
=
{
objectW
,
arrayW
,
booleanW
,
dateW
,
errorW
,
functionW
,
NULL
,
mathW
,
numberW
,
objectW
,
regexpW
,
stringW
,
objectW
};
functionW
,
NULL
,
mathW
,
numberW
,
objectW
,
regexpW
,
stringW
,
objectW
,
objectW
};
TRACE
(
"
\n
"
);
...
...
dlls/jscript/tests/api.js
View file @
705ce33a
...
...
@@ -2194,6 +2194,14 @@ testFunctions(Function.prototype, [
[
"toString"
,
0
]
]);
testFunctions
(
VBArray
.
prototype
,
[
[
"dimensions"
,
0
],
[
"getItem"
,
1
],
[
"lbound"
,
0
],
[
"toArray"
,
0
],
[
"ubound"
,
0
]
]);
ok
(
ActiveXObject
.
length
==
1
,
"ActiveXObject.length = "
+
ActiveXObject
.
length
);
ok
(
Array
.
length
==
1
,
"Array.length = "
+
Array
.
length
);
ok
(
Boolean
.
length
==
1
,
"Boolean.length = "
+
Boolean
.
length
);
...
...
dlls/jscript/vbarray.c
0 → 100644
View file @
705ce33a
/*
* Copyright 2010 Piotr 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
);
typedef
struct
{
jsdisp_t
dispex
;
SAFEARRAY
*
safearray
;
}
VBArrayInstance
;
static
const
WCHAR
dimensionsW
[]
=
{
'd'
,
'i'
,
'm'
,
'e'
,
'n'
,
's'
,
'i'
,
'o'
,
'n'
,
's'
,
0
};
static
const
WCHAR
getItemW
[]
=
{
'g'
,
'e'
,
't'
,
'I'
,
't'
,
'e'
,
'm'
,
0
};
static
const
WCHAR
lboundW
[]
=
{
'l'
,
'b'
,
'o'
,
'u'
,
'n'
,
'd'
,
0
};
static
const
WCHAR
toArrayW
[]
=
{
't'
,
'o'
,
'A'
,
'r'
,
'r'
,
'a'
,
'y'
,
0
};
static
const
WCHAR
uboundW
[]
=
{
'u'
,
'b'
,
'o'
,
'u'
,
'n'
,
'd'
,
0
};
static
HRESULT
VBArray_dimensions
(
script_ctx_t
*
ctx
,
vdisp_t
*
vthis
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
caller
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
VBArray_getItem
(
script_ctx_t
*
ctx
,
vdisp_t
*
vthis
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
caller
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
VBArray_lbound
(
script_ctx_t
*
ctx
,
vdisp_t
*
vthis
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
caller
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
VBArray_toArray
(
script_ctx_t
*
ctx
,
vdisp_t
*
vthis
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
caller
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
VBArray_ubound
(
script_ctx_t
*
ctx
,
vdisp_t
*
vthis
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
caller
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
static
HRESULT
VBArray_value
(
script_ctx_t
*
ctx
,
vdisp_t
*
jsthis
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
sp
)
{
FIXME
(
"
\n
"
);
switch
(
flags
)
{
default:
FIXME
(
"unimplemented flags %x
\n
"
,
flags
);
return
E_NOTIMPL
;
}
return
S_OK
;
}
static
void
VBArray_destructor
(
jsdisp_t
*
dispex
)
{
heap_free
(
dispex
);
}
static
const
builtin_prop_t
VBArray_props
[]
=
{
{
dimensionsW
,
VBArray_dimensions
,
PROPF_METHOD
},
{
getItemW
,
VBArray_getItem
,
PROPF_METHOD
|
1
},
{
lboundW
,
VBArray_lbound
,
PROPF_METHOD
},
{
toArrayW
,
VBArray_toArray
,
PROPF_METHOD
},
{
uboundW
,
VBArray_ubound
,
PROPF_METHOD
}
};
static
const
builtin_info_t
VBArray_info
=
{
JSCLASS_VBARRAY
,
{
NULL
,
VBArray_value
,
0
},
sizeof
(
VBArray_props
)
/
sizeof
(
*
VBArray_props
),
VBArray_props
,
VBArray_destructor
,
NULL
};
static
HRESULT
alloc_vbarray
(
script_ctx_t
*
ctx
,
jsdisp_t
*
object_prototype
,
VBArrayInstance
**
ret
)
{
VBArrayInstance
*
vbarray
;
HRESULT
hres
;
vbarray
=
heap_alloc_zero
(
sizeof
(
VBArrayInstance
));
if
(
!
vbarray
)
return
E_OUTOFMEMORY
;
if
(
object_prototype
)
hres
=
init_dispex
(
&
vbarray
->
dispex
,
ctx
,
&
VBArray_info
,
object_prototype
);
else
hres
=
init_dispex_from_constr
(
&
vbarray
->
dispex
,
ctx
,
&
VBArray_info
,
ctx
->
vbarray_constr
);
if
(
FAILED
(
hres
))
{
heap_free
(
vbarray
);
return
hres
;
}
*
ret
=
vbarray
;
return
S_OK
;
}
static
HRESULT
VBArrayConstr_value
(
script_ctx_t
*
ctx
,
vdisp_t
*
vthis
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
caller
)
{
FIXME
(
"
\n
"
);
switch
(
flags
)
{
default:
FIXME
(
"unimplemented flags: %x
\n
"
,
flags
);
return
E_NOTIMPL
;
}
return
S_OK
;
}
HRESULT
create_vbarray_constr
(
script_ctx_t
*
ctx
,
jsdisp_t
*
object_prototype
,
jsdisp_t
**
ret
)
{
VBArrayInstance
*
vbarray
;
HRESULT
hres
;
static
const
WCHAR
VBArrayW
[]
=
{
'V'
,
'B'
,
'A'
,
'r'
,
'r'
,
'a'
,
'y'
,
0
};
hres
=
alloc_vbarray
(
ctx
,
object_prototype
,
&
vbarray
);
if
(
FAILED
(
hres
))
return
hres
;
hres
=
create_builtin_function
(
ctx
,
VBArrayConstr_value
,
VBArrayW
,
NULL
,
PROPF_CONSTR
|
1
,
&
vbarray
->
dispex
,
ret
);
jsdisp_release
(
&
vbarray
->
dispex
);
return
hres
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment