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
c23ea508
Commit
c23ea508
authored
Sep 08, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Store more data in DispatchEx object.
parent
f3346a78
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
136 additions
and
7 deletions
+136
-7
dispex.c
dlls/jscript/dispex.c
+96
-3
jscript.c
dlls/jscript/jscript.c
+1
-1
jscript.h
dlls/jscript/jscript.h
+39
-3
No files found.
dlls/jscript/dispex.c
View file @
c23ea508
...
@@ -23,6 +23,25 @@
...
@@ -23,6 +23,25 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
jscript
);
WINE_DEFAULT_DEBUG_CHANNEL
(
jscript
);
typedef
enum
{
PROP_VARIANT
,
PROP_BUILTIN
,
PROP_PROTREF
,
PROP_DELETED
}
prop_type_t
;
struct
_dispex_prop_t
{
WCHAR
*
name
;
prop_type_t
type
;
DWORD
flags
;
union
{
VARIANT
var
;
const
builtin_prop_t
*
p
;
DWORD
ref
;
}
u
;
};
#define DISPATCHEX_THIS(iface) DEFINE_THIS(DispatchEx, IDispatchEx, iface)
#define DISPATCHEX_THIS(iface) DEFINE_THIS(DispatchEx, IDispatchEx, iface)
static
HRESULT
WINAPI
DispatchEx_QueryInterface
(
IDispatchEx
*
iface
,
REFIID
riid
,
void
**
ppv
)
static
HRESULT
WINAPI
DispatchEx_QueryInterface
(
IDispatchEx
*
iface
,
REFIID
riid
,
void
**
ppv
)
...
@@ -66,7 +85,19 @@ static ULONG WINAPI DispatchEx_Release(IDispatchEx *iface)
...
@@ -66,7 +85,19 @@ static ULONG WINAPI DispatchEx_Release(IDispatchEx *iface)
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ref=%d
\n
"
,
This
,
ref
);
if
(
!
ref
)
{
if
(
!
ref
)
{
dispex_prop_t
*
prop
;
for
(
prop
=
This
->
props
;
prop
<
This
->
props
+
This
->
prop_cnt
;
prop
++
)
{
if
(
prop
->
type
==
PROP_VARIANT
)
VariantClear
(
&
prop
->
u
.
var
);
heap_free
(
prop
->
name
);
}
heap_free
(
This
->
props
);
script_release
(
This
->
ctx
);
script_release
(
This
->
ctx
);
if
(
This
->
builtin_info
->
destructor
)
This
->
builtin_info
->
destructor
(
This
);
else
heap_free
(
This
);
heap_free
(
This
);
}
}
...
@@ -201,10 +232,64 @@ static IDispatchExVtbl DispatchExVtbl = {
...
@@ -201,10 +232,64 @@ static IDispatchExVtbl DispatchExVtbl = {
DispatchEx_GetNameSpaceParent
DispatchEx_GetNameSpaceParent
};
};
static
HRESULT
init_dispex
(
DispatchEx
*
dispex
,
script_ctx_t
*
ctx
)
static
HRESULT
jsdisp_set_prot_prop
(
DispatchEx
*
dispex
,
DispatchEx
*
prototype
)
{
VARIANT
*
var
;
if
(
!
dispex
->
props
[
1
].
name
)
return
E_OUTOFMEMORY
;
dispex
->
props
[
1
].
type
=
PROP_VARIANT
;
dispex
->
props
[
1
].
flags
=
0
;
var
=
&
dispex
->
props
[
1
].
u
.
var
;
V_VT
(
var
)
=
VT_DISPATCH
;
V_DISPATCH
(
var
)
=
(
IDispatch
*
)
_IDispatchEx_
(
prototype
);
return
S_OK
;
}
static
HRESULT
init_dispex
(
DispatchEx
*
dispex
,
script_ctx_t
*
ctx
,
const
builtin_info_t
*
builtin_info
,
DispatchEx
*
prototype
)
{
{
static
const
WCHAR
prototypeW
[]
=
{
'p'
,
'r'
,
'o'
,
't'
,
'o'
,
't'
,
'y'
,
'p'
,
'e'
,
0
};
TRACE
(
"%p (%p)
\n
"
,
dispex
,
prototype
);
dispex
->
lpIDispatchExVtbl
=
&
DispatchExVtbl
;
dispex
->
lpIDispatchExVtbl
=
&
DispatchExVtbl
;
dispex
->
ref
=
1
;
dispex
->
ref
=
1
;
dispex
->
builtin_info
=
builtin_info
;
dispex
->
props
=
heap_alloc
((
dispex
->
buf_size
=
4
)
*
sizeof
(
dispex_prop_t
));
if
(
!
dispex
->
props
)
return
E_OUTOFMEMORY
;
dispex
->
prototype
=
prototype
;
if
(
prototype
)
IDispatchEx_AddRef
(
_IDispatchEx_
(
prototype
));
dispex
->
prop_cnt
=
2
;
dispex
->
props
[
0
].
name
=
NULL
;
dispex
->
props
[
0
].
flags
=
0
;
if
(
builtin_info
->
value_prop
.
invoke
)
{
dispex
->
props
[
0
].
type
=
PROP_BUILTIN
;
dispex
->
props
[
0
].
u
.
p
=
&
builtin_info
->
value_prop
;
}
else
{
dispex
->
props
[
0
].
type
=
PROP_DELETED
;
}
dispex
->
props
[
1
].
type
=
PROP_DELETED
;
dispex
->
props
[
1
].
name
=
SysAllocString
(
prototypeW
);
dispex
->
props
[
1
].
flags
=
0
;
if
(
prototype
)
{
HRESULT
hres
;
hres
=
jsdisp_set_prot_prop
(
dispex
,
prototype
);
if
(
FAILED
(
hres
))
{
IDispatchEx_Release
(
_IDispatchEx_
(
dispex
));
return
hres
;
}
}
script_addref
(
ctx
);
script_addref
(
ctx
);
dispex
->
ctx
=
ctx
;
dispex
->
ctx
=
ctx
;
...
@@ -212,7 +297,15 @@ static HRESULT init_dispex(DispatchEx *dispex, script_ctx_t *ctx)
...
@@ -212,7 +297,15 @@ static HRESULT init_dispex(DispatchEx *dispex, script_ctx_t *ctx)
return
S_OK
;
return
S_OK
;
}
}
HRESULT
create_dispex
(
script_ctx_t
*
ctx
,
DispatchEx
**
dispex
)
static
const
builtin_info_t
dispex_info
=
{
JSCLASS_NONE
,
{
NULL
,
NULL
,
0
},
0
,
NULL
,
NULL
,
NULL
};
HRESULT
create_dispex
(
script_ctx_t
*
ctx
,
const
builtin_info_t
*
builtin_info
,
DispatchEx
*
prototype
,
DispatchEx
**
dispex
)
{
{
DispatchEx
*
ret
;
DispatchEx
*
ret
;
HRESULT
hres
;
HRESULT
hres
;
...
@@ -221,7 +314,7 @@ HRESULT create_dispex(script_ctx_t *ctx, DispatchEx **dispex)
...
@@ -221,7 +314,7 @@ HRESULT create_dispex(script_ctx_t *ctx, DispatchEx **dispex)
if
(
!
ret
)
if
(
!
ret
)
return
E_OUTOFMEMORY
;
return
E_OUTOFMEMORY
;
hres
=
init_dispex
(
ret
,
ctx
);
hres
=
init_dispex
(
ret
,
ctx
,
builtin_info
?
builtin_info
:
&
dispex_info
,
prototype
);
if
(
FAILED
(
hres
))
if
(
FAILED
(
hres
))
return
hres
;
return
hres
;
...
...
dlls/jscript/jscript.c
View file @
c23ea508
...
@@ -216,7 +216,7 @@ static HRESULT WINAPI JScript_SetScriptSite(IActiveScript *iface,
...
@@ -216,7 +216,7 @@ static HRESULT WINAPI JScript_SetScriptSite(IActiveScript *iface,
return
hres
;
return
hres
;
}
}
hres
=
create_dispex
(
This
->
ctx
,
&
This
->
ctx
->
script_disp
);
hres
=
create_dispex
(
This
->
ctx
,
NULL
,
NULL
,
&
This
->
ctx
->
script_disp
);
if
(
FAILED
(
hres
))
if
(
FAILED
(
hres
))
return
hres
;
return
hres
;
...
...
dlls/jscript/jscript.h
View file @
c23ea508
...
@@ -33,23 +33,59 @@
...
@@ -33,23 +33,59 @@
typedef
struct
_script_ctx_t
script_ctx_t
;
typedef
struct
_script_ctx_t
script_ctx_t
;
typedef
struct
_exec_ctx_t
exec_ctx_t
;
typedef
struct
_exec_ctx_t
exec_ctx_t
;
typedef
struct
_dispex_prop_t
dispex_prop_t
;
typedef
struct
{
typedef
struct
{
EXCEPINFO
ei
;
EXCEPINFO
ei
;
VARIANT
var
;
VARIANT
var
;
}
jsexcept_t
;
}
jsexcept_t
;
typedef
struct
DispatchEx
{
typedef
struct
DispatchEx
DispatchEx
;
#define PROPF_ARGMASK 0x00ff
#define PROPF_METHOD 0x0100
#define PROPF_ENUM 0x0200
#define PROPF_CONSTR 0x0400
typedef
enum
{
JSCLASS_NONE
}
jsclass_t
;
typedef
HRESULT
(
*
builtin_invoke_t
)(
DispatchEx
*
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
jsexcept_t
*
,
IServiceProvider
*
);
typedef
struct
{
const
WCHAR
*
name
;
builtin_invoke_t
invoke
;
DWORD
flags
;
}
builtin_prop_t
;
typedef
struct
{
jsclass_t
class
;
builtin_prop_t
value_prop
;
DWORD
props_cnt
;
const
builtin_prop_t
*
props
;
void
(
*
destructor
)(
DispatchEx
*
);
void
(
*
on_put
)(
DispatchEx
*
,
const
WCHAR
*
);
}
builtin_info_t
;
struct
DispatchEx
{
const
IDispatchExVtbl
*
lpIDispatchExVtbl
;
const
IDispatchExVtbl
*
lpIDispatchExVtbl
;
LONG
ref
;
LONG
ref
;
DWORD
buf_size
;
DWORD
prop_cnt
;
dispex_prop_t
*
props
;
script_ctx_t
*
ctx
;
script_ctx_t
*
ctx
;
}
DispatchEx
;
DispatchEx
*
prototype
;
const
builtin_info_t
*
builtin_info
;
};
#define _IDispatchEx_(x) ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
#define _IDispatchEx_(x) ((IDispatchEx*) &(x)->lpIDispatchExVtbl)
HRESULT
create_dispex
(
script_ctx_t
*
,
DispatchEx
**
);
HRESULT
create_dispex
(
script_ctx_t
*
,
const
builtin_info_t
*
,
DispatchEx
*
,
DispatchEx
**
);
struct
_script_ctx_t
{
struct
_script_ctx_t
{
LONG
ref
;
LONG
ref
;
...
...
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