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
56827432
Commit
56827432
authored
Sep 29, 2011
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Oct 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscoree: Implement ICorDebug SetManagedHandler.
parent
197f867f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
97 additions
and
27 deletions
+97
-27
cordebug.c
dlls/mscoree/cordebug.c
+80
-20
corruntimehost.c
dlls/mscoree/corruntimehost.c
+3
-4
mscoree_private.h
dlls/mscoree/mscoree_private.h
+13
-2
Makefile.in
dlls/mscoree/tests/Makefile.in
+1
-1
debugging.c
dlls/mscoree/tests/debugging.c
+0
-0
No files found.
dlls/mscoree/cordebug.c
View file @
56827432
...
@@ -40,16 +40,15 @@
...
@@ -40,16 +40,15 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
mscoree
);
WINE_DEFAULT_DEBUG_CHANNEL
(
mscoree
);
static
inline
CorDebug
*
impl_from_ICorDebug
(
ICorDebug
*
iface
)
static
inline
RuntimeHost
*
impl_from_ICorDebug
(
ICorDebug
*
iface
)
{
{
return
CONTAINING_RECORD
(
iface
,
RuntimeHost
,
ICorDebug_iface
);
return
CONTAINING_RECORD
(
iface
,
CorDebug
,
ICorDebug_iface
);
}
}
/*** IUnknown methods ***/
/*** IUnknown methods ***/
static
HRESULT
WINAPI
CorDebug_QueryInterface
(
ICorDebug
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
static
HRESULT
WINAPI
CorDebug_QueryInterface
(
ICorDebug
*
iface
,
REFIID
riid
,
void
**
ppvObject
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
TRACE
(
"%p %s %p
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
TRACE
(
"%p %s %p
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvObject
);
...
@@ -71,41 +70,85 @@ static HRESULT WINAPI CorDebug_QueryInterface(ICorDebug *iface, REFIID riid, voi
...
@@ -71,41 +70,85 @@ static HRESULT WINAPI CorDebug_QueryInterface(ICorDebug *iface, REFIID riid, voi
static
ULONG
WINAPI
CorDebug_AddRef
(
ICorDebug
*
iface
)
static
ULONG
WINAPI
CorDebug_AddRef
(
ICorDebug
*
iface
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
return
ICorRuntimeHost_AddRef
(
&
This
->
ICorRuntimeHost_iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"%p ref=%u
\n
"
,
This
,
ref
);
return
ref
;
}
}
static
ULONG
WINAPI
CorDebug_Release
(
ICorDebug
*
iface
)
static
ULONG
WINAPI
CorDebug_Release
(
ICorDebug
*
iface
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
return
ICorRuntimeHost_Release
(
&
This
->
ICorRuntimeHost_iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"%p ref=%u
\n
"
,
This
,
ref
);
if
(
ref
==
0
)
{
if
(
This
->
runtimehost
)
ICLRRuntimeHost_Release
(
This
->
runtimehost
);
if
(
This
->
pCallback
)
ICorDebugManagedCallback2_Release
(
This
->
pCallback2
);
if
(
This
->
pCallback
)
ICorDebugManagedCallback_Release
(
This
->
pCallback
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
return
ref
;
}
}
/*** ICorDebug methods ***/
/*** ICorDebug methods ***/
static
HRESULT
WINAPI
CorDebug_Initialize
(
ICorDebug
*
iface
)
static
HRESULT
WINAPI
CorDebug_Initialize
(
ICorDebug
*
iface
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
FIXME
(
"stub %p
\n
"
,
This
);
FIXME
(
"stub %p
\n
"
,
This
);
return
S_OK
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
CorDebug_Terminate
(
ICorDebug
*
iface
)
static
HRESULT
WINAPI
CorDebug_Terminate
(
ICorDebug
*
iface
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
FIXME
(
"stub %p
\n
"
,
This
);
FIXME
(
"stub %p
\n
"
,
This
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
CorDebug_SetManagedHandler
(
ICorDebug
*
iface
,
ICorDebugManagedCallback
*
pCallback
)
static
HRESULT
WINAPI
CorDebug_SetManagedHandler
(
ICorDebug
*
iface
,
ICorDebugManagedCallback
*
pCallback
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
FIXME
(
"stub %p %p
\n
"
,
This
,
pCallback
);
HRESULT
hr
;
return
E_NOTIMPL
;
ICorDebugManagedCallback2
*
pCallback2
;
TRACE
(
"%p (%p)
\n
"
,
This
,
pCallback
);
if
(
!
pCallback
)
return
E_INVALIDARG
;
hr
=
ICorDebugManagedCallback_QueryInterface
(
pCallback
,
&
IID_ICorDebugManagedCallback2
,
(
void
**
)
&
pCallback2
);
if
(
hr
==
S_OK
)
{
if
(
This
->
pCallback2
)
ICorDebugManagedCallback2_Release
(
This
->
pCallback2
);
if
(
This
->
pCallback
)
ICorDebugManagedCallback_Release
(
This
->
pCallback
);
This
->
pCallback
=
pCallback
;
This
->
pCallback2
=
pCallback2
;
ICorDebugManagedCallback_AddRef
(
This
->
pCallback
);
}
return
hr
;
}
}
static
HRESULT
WINAPI
CorDebug_SetUnmanagedHandler
(
ICorDebug
*
iface
,
ICorDebugUnmanagedCallback
*
pCallback
)
static
HRESULT
WINAPI
CorDebug_SetUnmanagedHandler
(
ICorDebug
*
iface
,
ICorDebugUnmanagedCallback
*
pCallback
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
FIXME
(
"stub %p %p
\n
"
,
This
,
pCallback
);
FIXME
(
"stub %p %p
\n
"
,
This
,
pCallback
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -117,7 +160,7 @@ static HRESULT WINAPI CorDebug_CreateProcess(ICorDebug *iface, LPCWSTR lpApplica
...
@@ -117,7 +160,7 @@ static HRESULT WINAPI CorDebug_CreateProcess(ICorDebug *iface, LPCWSTR lpApplica
LPSTARTUPINFOW
lpStartupInfo
,
LPPROCESS_INFORMATION
lpProcessInformation
,
LPSTARTUPINFOW
lpStartupInfo
,
LPPROCESS_INFORMATION
lpProcessInformation
,
CorDebugCreateProcessFlags
debuggingFlags
,
ICorDebugProcess
**
ppProcess
)
CorDebugCreateProcessFlags
debuggingFlags
,
ICorDebugProcess
**
ppProcess
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
FIXME
(
"stub %p %s %s %p %p %d %d %p %s %p %p %d %p
\n
"
,
This
,
debugstr_w
(
lpApplicationName
),
FIXME
(
"stub %p %s %s %p %p %d %d %p %s %p %p %d %p
\n
"
,
This
,
debugstr_w
(
lpApplicationName
),
debugstr_w
(
lpCommandLine
),
lpProcessAttributes
,
lpThreadAttributes
,
debugstr_w
(
lpCommandLine
),
lpProcessAttributes
,
lpThreadAttributes
,
bInheritHandles
,
dwCreationFlags
,
lpEnvironment
,
debugstr_w
(
lpCurrentDirectory
),
bInheritHandles
,
dwCreationFlags
,
lpEnvironment
,
debugstr_w
(
lpCurrentDirectory
),
...
@@ -128,21 +171,21 @@ static HRESULT WINAPI CorDebug_CreateProcess(ICorDebug *iface, LPCWSTR lpApplica
...
@@ -128,21 +171,21 @@ static HRESULT WINAPI CorDebug_CreateProcess(ICorDebug *iface, LPCWSTR lpApplica
static
HRESULT
WINAPI
CorDebug_DebugActiveProcess
(
ICorDebug
*
iface
,
DWORD
id
,
BOOL
win32Attach
,
static
HRESULT
WINAPI
CorDebug_DebugActiveProcess
(
ICorDebug
*
iface
,
DWORD
id
,
BOOL
win32Attach
,
ICorDebugProcess
**
ppProcess
)
ICorDebugProcess
**
ppProcess
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
FIXME
(
"stub %p %d %d %p
\n
"
,
This
,
id
,
win32Attach
,
ppProcess
);
FIXME
(
"stub %p %d %d %p
\n
"
,
This
,
id
,
win32Attach
,
ppProcess
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
CorDebug_EnumerateProcesses
(
ICorDebug
*
iface
,
ICorDebugProcessEnum
**
ppProcess
)
static
HRESULT
WINAPI
CorDebug_EnumerateProcesses
(
ICorDebug
*
iface
,
ICorDebugProcessEnum
**
ppProcess
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
FIXME
(
"stub %p %p
\n
"
,
This
,
ppProcess
);
FIXME
(
"stub %p %p
\n
"
,
This
,
ppProcess
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
CorDebug_GetProcess
(
ICorDebug
*
iface
,
DWORD
dwProcessId
,
ICorDebugProcess
**
ppProcess
)
static
HRESULT
WINAPI
CorDebug_GetProcess
(
ICorDebug
*
iface
,
DWORD
dwProcessId
,
ICorDebugProcess
**
ppProcess
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
FIXME
(
"stub %p %d %p
\n
"
,
This
,
dwProcessId
,
ppProcess
);
FIXME
(
"stub %p %d %p
\n
"
,
This
,
dwProcessId
,
ppProcess
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -150,7 +193,7 @@ static HRESULT WINAPI CorDebug_GetProcess(ICorDebug *iface, DWORD dwProcessId, I
...
@@ -150,7 +193,7 @@ static HRESULT WINAPI CorDebug_GetProcess(ICorDebug *iface, DWORD dwProcessId, I
static
HRESULT
WINAPI
CorDebug_CanLaunchOrAttach
(
ICorDebug
*
iface
,
DWORD
dwProcessId
,
static
HRESULT
WINAPI
CorDebug_CanLaunchOrAttach
(
ICorDebug
*
iface
,
DWORD
dwProcessId
,
BOOL
win32DebuggingEnabled
)
BOOL
win32DebuggingEnabled
)
{
{
RuntimeHost
*
This
=
impl_from_ICorDebug
(
iface
);
CorDebug
*
This
=
impl_from_ICorDebug
(
iface
);
FIXME
(
"stub %p %d %d
\n
"
,
This
,
dwProcessId
,
win32DebuggingEnabled
);
FIXME
(
"stub %p %d %d
\n
"
,
This
,
dwProcessId
,
win32DebuggingEnabled
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -171,7 +214,24 @@ static const struct ICorDebugVtbl cordebug_vtbl =
...
@@ -171,7 +214,24 @@ static const struct ICorDebugVtbl cordebug_vtbl =
CorDebug_CanLaunchOrAttach
CorDebug_CanLaunchOrAttach
};
};
void
cordebug_init
(
RuntimeHost
*
This
)
HRESULT
CorDebug_Create
(
ICLRRuntimeHost
*
runtimehost
,
IUnknown
**
ppUnk
)
{
{
CorDebug
*
This
;
This
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
*
This
);
if
(
!
This
)
return
E_OUTOFMEMORY
;
This
->
ICorDebug_iface
.
lpVtbl
=
&
cordebug_vtbl
;
This
->
ICorDebug_iface
.
lpVtbl
=
&
cordebug_vtbl
;
This
->
ref
=
1
;
This
->
pCallback
=
NULL
;
This
->
pCallback2
=
NULL
;
This
->
runtimehost
=
runtimehost
;
if
(
This
->
runtimehost
)
ICLRRuntimeHost_AddRef
(
This
->
runtimehost
);
*
ppUnk
=
(
IUnknown
*
)
This
;
return
S_OK
;
}
}
dlls/mscoree/corruntimehost.c
View file @
56827432
...
@@ -787,8 +787,6 @@ HRESULT RuntimeHost_Construct(const CLRRuntimeInfo *runtime_version,
...
@@ -787,8 +787,6 @@ HRESULT RuntimeHost_Construct(const CLRRuntimeInfo *runtime_version,
This
->
ICorRuntimeHost_iface
.
lpVtbl
=
&
corruntimehost_vtbl
;
This
->
ICorRuntimeHost_iface
.
lpVtbl
=
&
corruntimehost_vtbl
;
This
->
ICLRRuntimeHost_iface
.
lpVtbl
=
&
CLRHostVtbl
;
This
->
ICLRRuntimeHost_iface
.
lpVtbl
=
&
CLRHostVtbl
;
cordebug_init
(
This
);
This
->
ref
=
1
;
This
->
ref
=
1
;
This
->
version
=
runtime_version
;
This
->
version
=
runtime_version
;
This
->
mono
=
loaded_mono
;
This
->
mono
=
loaded_mono
;
...
@@ -826,8 +824,9 @@ HRESULT RuntimeHost_GetInterface(RuntimeHost *This, REFCLSID clsid, REFIID riid,
...
@@ -826,8 +824,9 @@ HRESULT RuntimeHost_GetInterface(RuntimeHost *This, REFCLSID clsid, REFIID riid,
}
}
else
if
(
IsEqualGUID
(
clsid
,
&
CLSID_CLRDebuggingLegacy
))
else
if
(
IsEqualGUID
(
clsid
,
&
CLSID_CLRDebuggingLegacy
))
{
{
unk
=
(
IUnknown
*
)
&
This
->
ICorDebug_iface
;
hr
=
CorDebug_Create
(
&
This
->
ICLRRuntimeHost_iface
,
&
unk
);
IUnknown_AddRef
(
unk
);
if
(
FAILED
(
hr
))
return
hr
;
}
}
else
else
unk
=
NULL
;
unk
=
NULL
;
...
...
dlls/mscoree/mscoree_private.h
View file @
56827432
...
@@ -64,7 +64,6 @@ struct RuntimeHost
...
@@ -64,7 +64,6 @@ struct RuntimeHost
{
{
ICorRuntimeHost
ICorRuntimeHost_iface
;
ICorRuntimeHost
ICorRuntimeHost_iface
;
ICLRRuntimeHost
ICLRRuntimeHost_iface
;
ICLRRuntimeHost
ICLRRuntimeHost_iface
;
ICorDebug
ICorDebug_iface
;
const
CLRRuntimeInfo
*
version
;
const
CLRRuntimeInfo
*
version
;
loaded_mono
*
mono
;
loaded_mono
*
mono
;
struct
list
domains
;
struct
list
domains
;
...
@@ -73,6 +72,18 @@ struct RuntimeHost
...
@@ -73,6 +72,18 @@ struct RuntimeHost
LONG
ref
;
LONG
ref
;
};
};
typedef
struct
CorDebug
{
ICorDebug
ICorDebug_iface
;
LONG
ref
;
ICLRRuntimeHost
*
runtimehost
;
/* ICorDebug Callback */
ICorDebugManagedCallback
*
pCallback
;
ICorDebugManagedCallback2
*
pCallback2
;
}
CorDebug
;
extern
HRESULT
get_runtime_info
(
LPCWSTR
exefile
,
LPCWSTR
version
,
LPCWSTR
config_file
,
extern
HRESULT
get_runtime_info
(
LPCWSTR
exefile
,
LPCWSTR
version
,
LPCWSTR
config_file
,
DWORD
startup_flags
,
DWORD
runtimeinfo_flags
,
BOOL
legacy
,
ICLRRuntimeInfo
**
result
)
DECLSPEC_HIDDEN
;
DWORD
startup_flags
,
DWORD
runtimeinfo_flags
,
BOOL
legacy
,
ICLRRuntimeInfo
**
result
)
DECLSPEC_HIDDEN
;
...
@@ -161,6 +172,6 @@ extern HRESULT RuntimeHost_Destroy(RuntimeHost *This) DECLSPEC_HIDDEN;
...
@@ -161,6 +172,6 @@ extern HRESULT RuntimeHost_Destroy(RuntimeHost *This) DECLSPEC_HIDDEN;
HRESULT
WINAPI
CLRMetaHost_GetRuntime
(
ICLRMetaHost
*
iface
,
LPCWSTR
pwzVersion
,
REFIID
iid
,
LPVOID
*
ppRuntime
)
DECLSPEC_HIDDEN
;
HRESULT
WINAPI
CLRMetaHost_GetRuntime
(
ICLRMetaHost
*
iface
,
LPCWSTR
pwzVersion
,
REFIID
iid
,
LPVOID
*
ppRuntime
)
DECLSPEC_HIDDEN
;
extern
void
cordebug_init
(
RuntimeHost
*
This
)
DECLSPEC_HIDDEN
;
extern
HRESULT
CorDebug_Create
(
ICLRRuntimeHost
*
runtimehost
,
IUnknown
**
ppUnk
)
DECLSPEC_HIDDEN
;
#endif
/* __MSCOREE_PRIVATE__ */
#endif
/* __MSCOREE_PRIVATE__ */
dlls/mscoree/tests/Makefile.in
View file @
56827432
TESTDLL
=
mscoree.dll
TESTDLL
=
mscoree.dll
IMPORTS
=
shlwapi
IMPORTS
=
ole32 shlwapi uuid
C_SRCS
=
\
C_SRCS
=
\
debugging.c
\
debugging.c
\
...
...
dlls/mscoree/tests/debugging.c
View file @
56827432
This diff is collapsed.
Click to expand it.
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