2008-03-28 11:10:55 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright 2008 Alistair Leslie-Hughes
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "winreg.h"
|
|
|
|
#include "ole2.h"
|
|
|
|
|
|
|
|
#include "cor.h"
|
|
|
|
#include "mscoree.h"
|
2010-10-01 21:11:09 +02:00
|
|
|
#include "metahost.h"
|
2010-09-26 22:54:13 +02:00
|
|
|
#include "mscoree_private.h"
|
2008-03-28 11:10:55 +01:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL( mscoree );
|
|
|
|
|
2010-09-26 22:54:13 +02:00
|
|
|
struct RuntimeHost
|
2008-03-28 11:10:55 +01:00
|
|
|
{
|
|
|
|
const struct ICorRuntimeHostVtbl *lpVtbl;
|
2010-09-26 22:54:13 +02:00
|
|
|
const CLRRuntimeInfo *version;
|
|
|
|
const loaded_mono *mono;
|
2008-03-28 11:10:55 +01:00
|
|
|
LONG ref;
|
2010-09-26 22:54:13 +02:00
|
|
|
BOOL legacy; /* if True, this was created by create_corruntimehost, and Release frees it */
|
|
|
|
};
|
2008-03-28 11:10:55 +01:00
|
|
|
|
2010-09-26 22:54:13 +02:00
|
|
|
static inline RuntimeHost *impl_from_ICorRuntimeHost( ICorRuntimeHost *iface )
|
2008-03-28 11:10:55 +01:00
|
|
|
{
|
2010-09-26 22:54:13 +02:00
|
|
|
return (RuntimeHost *)((char*)iface - FIELD_OFFSET(RuntimeHost, lpVtbl));
|
2008-03-28 11:10:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI corruntimehost_QueryInterface(ICorRuntimeHost* iface,
|
|
|
|
REFIID riid,
|
|
|
|
void **ppvObject)
|
|
|
|
{
|
2010-09-26 22:54:13 +02:00
|
|
|
RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
|
2008-03-28 11:10:55 +01:00
|
|
|
TRACE("%p %s %p\n", This, debugstr_guid(riid), ppvObject);
|
|
|
|
|
|
|
|
if ( IsEqualGUID( riid, &IID_ICorRuntimeHost ) ||
|
|
|
|
IsEqualGUID( riid, &IID_IUnknown ) )
|
|
|
|
{
|
|
|
|
*ppvObject = iface;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ICorRuntimeHost_AddRef( iface );
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI corruntimehost_AddRef(ICorRuntimeHost* iface)
|
|
|
|
{
|
2010-09-26 22:54:13 +02:00
|
|
|
RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
|
2008-03-28 11:10:55 +01:00
|
|
|
return InterlockedIncrement( &This->ref );
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI corruntimehost_Release(ICorRuntimeHost* iface)
|
|
|
|
{
|
2010-09-26 22:54:13 +02:00
|
|
|
RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
|
2008-03-28 11:10:55 +01:00
|
|
|
ULONG ref;
|
|
|
|
|
|
|
|
ref = InterlockedDecrement( &This->ref );
|
2010-09-26 22:54:13 +02:00
|
|
|
if ( ref == 0 && This->legacy )
|
2008-03-28 11:10:55 +01:00
|
|
|
{
|
2010-09-26 22:54:13 +02:00
|
|
|
RuntimeHost_Destroy(This);
|
2008-03-28 11:10:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** ICorRuntimeHost methods ***/
|
|
|
|
static HRESULT WINAPI corruntimehost_CreateLogicalThreadState(
|
|
|
|
ICorRuntimeHost* iface)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_DeleteLogicalThreadState(
|
|
|
|
ICorRuntimeHost* iface)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_SwitchInLogicalThreadState(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
DWORD *fiberCookie)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_SwitchOutLogicalThreadState(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
DWORD **fiberCookie)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_LocksHeldByLogicalThread(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
DWORD *pCount)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_MapFile(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
HANDLE hFile,
|
|
|
|
HMODULE *mapAddress)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_GetConfiguration(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
ICorConfiguration **pConfiguration)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_Start(
|
|
|
|
ICorRuntimeHost* iface)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_Stop(
|
|
|
|
ICorRuntimeHost* iface)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_CreateDomain(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
LPCWSTR friendlyName,
|
|
|
|
IUnknown *identityArray,
|
|
|
|
IUnknown **appDomain)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_GetDefaultDomain(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
IUnknown **pAppDomain)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_EnumDomains(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
HDOMAINENUM *hEnum)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_NextDomain(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
HDOMAINENUM hEnum,
|
|
|
|
IUnknown **appDomain)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_CloseEnum(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
HDOMAINENUM hEnum)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_CreateDomainEx(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
LPCWSTR friendlyName,
|
|
|
|
IUnknown *setup,
|
|
|
|
IUnknown *evidence,
|
|
|
|
IUnknown **appDomain)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_CreateDomainSetup(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
IUnknown **appDomainSetup)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_CreateEvidence(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
IUnknown **evidence)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_UnloadDomain(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
IUnknown *appDomain)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI corruntimehost_CurrentDomain(
|
|
|
|
ICorRuntimeHost* iface,
|
|
|
|
IUnknown **appDomain)
|
|
|
|
{
|
|
|
|
FIXME("stub %p\n", iface);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ICorRuntimeHostVtbl corruntimehost_vtbl =
|
|
|
|
{
|
|
|
|
corruntimehost_QueryInterface,
|
|
|
|
corruntimehost_AddRef,
|
|
|
|
corruntimehost_Release,
|
|
|
|
corruntimehost_CreateLogicalThreadState,
|
|
|
|
corruntimehost_DeleteLogicalThreadState,
|
|
|
|
corruntimehost_SwitchInLogicalThreadState,
|
|
|
|
corruntimehost_SwitchOutLogicalThreadState,
|
|
|
|
corruntimehost_LocksHeldByLogicalThread,
|
|
|
|
corruntimehost_MapFile,
|
|
|
|
corruntimehost_GetConfiguration,
|
|
|
|
corruntimehost_Start,
|
|
|
|
corruntimehost_Stop,
|
|
|
|
corruntimehost_CreateDomain,
|
|
|
|
corruntimehost_GetDefaultDomain,
|
|
|
|
corruntimehost_EnumDomains,
|
|
|
|
corruntimehost_NextDomain,
|
|
|
|
corruntimehost_CloseEnum,
|
|
|
|
corruntimehost_CreateDomainEx,
|
|
|
|
corruntimehost_CreateDomainSetup,
|
|
|
|
corruntimehost_CreateEvidence,
|
|
|
|
corruntimehost_UnloadDomain,
|
|
|
|
corruntimehost_CurrentDomain
|
|
|
|
};
|
|
|
|
|
2010-09-26 22:54:13 +02:00
|
|
|
HRESULT RuntimeHost_Construct(const CLRRuntimeInfo *runtime_version,
|
|
|
|
const loaded_mono *loaded_mono, RuntimeHost** result)
|
2008-03-28 11:10:55 +01:00
|
|
|
{
|
2010-09-26 22:54:13 +02:00
|
|
|
RuntimeHost *This;
|
2008-03-28 11:10:55 +01:00
|
|
|
|
|
|
|
This = HeapAlloc( GetProcessHeap(), 0, sizeof *This );
|
|
|
|
if ( !This )
|
2010-09-26 22:54:13 +02:00
|
|
|
return E_OUTOFMEMORY;
|
2008-03-28 11:10:55 +01:00
|
|
|
|
|
|
|
This->lpVtbl = &corruntimehost_vtbl;
|
|
|
|
This->ref = 1;
|
2010-09-26 22:54:13 +02:00
|
|
|
This->version = runtime_version;
|
|
|
|
This->mono = loaded_mono;
|
|
|
|
This->legacy = FALSE;
|
|
|
|
|
2010-09-29 00:53:14 +02:00
|
|
|
*result = This;
|
|
|
|
|
2010-09-26 22:54:13 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT RuntimeHost_GetInterface(RuntimeHost *This, REFCLSID clsid, REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
IUnknown *unk;
|
|
|
|
|
|
|
|
if (IsEqualGUID(clsid, &CLSID_CorRuntimeHost))
|
|
|
|
unk = (IUnknown*)&This->lpVtbl;
|
|
|
|
else
|
|
|
|
unk = NULL;
|
|
|
|
|
|
|
|
if (unk)
|
|
|
|
return IUnknown_QueryInterface(unk, riid, ppv);
|
|
|
|
else
|
|
|
|
FIXME("not implemented for class %s\n", debugstr_guid(clsid));
|
|
|
|
|
|
|
|
return CLASS_E_CLASSNOTAVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT RuntimeHost_Destroy(RuntimeHost *This)
|
|
|
|
{
|
|
|
|
HeapFree( GetProcessHeap(), 0, This );
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
IUnknown* create_corruntimehost(void)
|
|
|
|
{
|
|
|
|
RuntimeHost *This;
|
|
|
|
IUnknown *result;
|
|
|
|
|
|
|
|
if (FAILED(RuntimeHost_Construct(NULL, NULL, &This)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
This->legacy = TRUE;
|
|
|
|
|
|
|
|
if (FAILED(RuntimeHost_GetInterface(This, &CLSID_CorRuntimeHost, &IID_IUnknown, (void**)&result)))
|
|
|
|
{
|
|
|
|
RuntimeHost_Destroy(This);
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-03-28 11:10:55 +01:00
|
|
|
|
2010-09-26 22:54:13 +02:00
|
|
|
FIXME("return iface %p\n", result);
|
2008-03-28 11:10:55 +01:00
|
|
|
|
2010-09-26 22:54:13 +02:00
|
|
|
return result;
|
2008-03-28 11:10:55 +01:00
|
|
|
}
|