mscoree: Implement CLRRuntimeHost_ExecuteInDefaultAppDomain.
[wine/multimedia.git] / dlls / mscoree / corruntimehost.c
blob04482be61fc245af15b934b984029e4762f30330
1 /*
3 * Copyright 2008 Alistair Leslie-Hughes
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #define COBJMACROS
22 #include <stdarg.h>
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winuser.h"
27 #include "winnls.h"
28 #include "winreg.h"
29 #include "ole2.h"
30 #include "shellapi.h"
32 #include "cor.h"
33 #include "mscoree.h"
34 #include "metahost.h"
35 #include "corhdr.h"
36 #include "cordebug.h"
37 #include "wine/list.h"
38 #include "mscoree_private.h"
40 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL( mscoree );
44 #include "initguid.h"
46 DEFINE_GUID(IID__AppDomain, 0x05f696dc,0x2b29,0x3663,0xad,0x8b,0xc4,0x38,0x9c,0xf2,0xa7,0x13);
48 struct DomainEntry
50 struct list entry;
51 MonoDomain *domain;
54 static HRESULT RuntimeHost_AddDomain(RuntimeHost *This, MonoDomain **result)
56 struct DomainEntry *entry;
57 char *mscorlib_path;
58 HRESULT res=S_OK;
60 EnterCriticalSection(&This->lock);
62 entry = HeapAlloc(GetProcessHeap(), 0, sizeof(*entry));
63 if (!entry)
65 res = E_OUTOFMEMORY;
66 goto end;
69 mscorlib_path = WtoA(This->version->mscorlib_path);
70 if (!mscorlib_path)
72 HeapFree(GetProcessHeap(), 0, entry);
73 res = E_OUTOFMEMORY;
74 goto end;
77 entry->domain = This->mono->mono_jit_init(mscorlib_path);
79 HeapFree(GetProcessHeap(), 0, mscorlib_path);
81 if (!entry->domain)
83 HeapFree(GetProcessHeap(), 0, entry);
84 res = E_FAIL;
85 goto end;
88 This->mono->is_started = TRUE;
90 list_add_tail(&This->domains, &entry->entry);
92 *result = entry->domain;
94 end:
95 LeaveCriticalSection(&This->lock);
97 return res;
100 static HRESULT RuntimeHost_GetDefaultDomain(RuntimeHost *This, MonoDomain **result)
102 HRESULT res=S_OK;
104 EnterCriticalSection(&This->lock);
106 if (This->default_domain) goto end;
108 res = RuntimeHost_AddDomain(This, &This->default_domain);
110 end:
111 *result = This->default_domain;
113 LeaveCriticalSection(&This->lock);
115 return res;
118 static void RuntimeHost_DeleteDomain(RuntimeHost *This, MonoDomain *domain)
120 struct DomainEntry *entry;
122 EnterCriticalSection(&This->lock);
124 LIST_FOR_EACH_ENTRY(entry, &This->domains, struct DomainEntry, entry)
126 if (entry->domain == domain)
128 list_remove(&entry->entry);
129 if (This->default_domain == domain)
130 This->default_domain = NULL;
131 HeapFree(GetProcessHeap(), 0, entry);
132 break;
136 LeaveCriticalSection(&This->lock);
139 static HRESULT RuntimeHost_GetIUnknownForDomain(RuntimeHost *This, MonoDomain *domain, IUnknown **punk)
141 HRESULT hr;
142 void *args[1];
143 MonoAssembly *assembly;
144 MonoImage *image;
145 MonoClass *klass;
146 MonoMethod *method;
147 MonoObject *appdomain_object;
148 IUnknown *unk;
150 assembly = This->mono->mono_domain_assembly_open(domain, "mscorlib");
151 if (!assembly)
153 ERR("Cannot load mscorlib\n");
154 return E_FAIL;
157 image = This->mono->mono_assembly_get_image(assembly);
158 if (!image)
160 ERR("Couldn't get assembly image\n");
161 return E_FAIL;
164 klass = This->mono->mono_class_from_name(image, "System", "AppDomain");
165 if (!klass)
167 ERR("Couldn't get class from image\n");
168 return E_FAIL;
171 method = This->mono->mono_class_get_method_from_name(klass, "get_CurrentDomain", 0);
172 if (!method)
174 ERR("Couldn't get method from class\n");
175 return E_FAIL;
178 args[0] = NULL;
179 appdomain_object = This->mono->mono_runtime_invoke(method, NULL, args, NULL);
180 if (!appdomain_object)
182 ERR("Couldn't get result pointer\n");
183 return E_FAIL;
186 hr = RuntimeHost_GetIUnknownForObject(This, appdomain_object, &unk);
188 if (SUCCEEDED(hr))
190 hr = IUnknown_QueryInterface(unk, &IID__AppDomain, (void**)punk);
192 IUnknown_Release(unk);
195 return hr;
198 static inline RuntimeHost *impl_from_ICLRRuntimeHost( ICLRRuntimeHost *iface )
200 return CONTAINING_RECORD(iface, RuntimeHost, ICLRRuntimeHost_iface);
203 static inline RuntimeHost *impl_from_ICorRuntimeHost( ICorRuntimeHost *iface )
205 return CONTAINING_RECORD(iface, RuntimeHost, ICorRuntimeHost_iface);
208 /*** IUnknown methods ***/
209 static HRESULT WINAPI corruntimehost_QueryInterface(ICorRuntimeHost* iface,
210 REFIID riid,
211 void **ppvObject)
213 RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
214 TRACE("%p %s %p\n", This, debugstr_guid(riid), ppvObject);
216 if ( IsEqualGUID( riid, &IID_ICorRuntimeHost ) ||
217 IsEqualGUID( riid, &IID_IUnknown ) )
219 *ppvObject = iface;
221 else
223 FIXME("Unsupported interface %s\n", debugstr_guid(riid));
224 return E_NOINTERFACE;
227 ICorRuntimeHost_AddRef( iface );
229 return S_OK;
232 static ULONG WINAPI corruntimehost_AddRef(ICorRuntimeHost* iface)
234 RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
236 return InterlockedIncrement( &This->ref );
239 static ULONG WINAPI corruntimehost_Release(ICorRuntimeHost* iface)
241 RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
242 ULONG ref;
244 ref = InterlockedDecrement( &This->ref );
246 return ref;
249 /*** ICorRuntimeHost methods ***/
250 static HRESULT WINAPI corruntimehost_CreateLogicalThreadState(
251 ICorRuntimeHost* iface)
253 FIXME("stub %p\n", iface);
254 return E_NOTIMPL;
257 static HRESULT WINAPI corruntimehost_DeleteLogicalThreadState(
258 ICorRuntimeHost* iface)
260 FIXME("stub %p\n", iface);
261 return E_NOTIMPL;
264 static HRESULT WINAPI corruntimehost_SwitchInLogicalThreadState(
265 ICorRuntimeHost* iface,
266 DWORD *fiberCookie)
268 FIXME("stub %p\n", iface);
269 return E_NOTIMPL;
272 static HRESULT WINAPI corruntimehost_SwitchOutLogicalThreadState(
273 ICorRuntimeHost* iface,
274 DWORD **fiberCookie)
276 FIXME("stub %p\n", iface);
277 return E_NOTIMPL;
280 static HRESULT WINAPI corruntimehost_LocksHeldByLogicalThread(
281 ICorRuntimeHost* iface,
282 DWORD *pCount)
284 FIXME("stub %p\n", iface);
285 return E_NOTIMPL;
288 static HRESULT WINAPI corruntimehost_MapFile(
289 ICorRuntimeHost* iface,
290 HANDLE hFile,
291 HMODULE *mapAddress)
293 FIXME("stub %p\n", iface);
294 return E_NOTIMPL;
297 static HRESULT WINAPI corruntimehost_GetConfiguration(
298 ICorRuntimeHost* iface,
299 ICorConfiguration **pConfiguration)
301 FIXME("stub %p\n", iface);
302 return E_NOTIMPL;
305 static HRESULT WINAPI corruntimehost_Start(
306 ICorRuntimeHost* iface)
308 FIXME("stub %p\n", iface);
309 return S_OK;
312 static HRESULT WINAPI corruntimehost_Stop(
313 ICorRuntimeHost* iface)
315 FIXME("stub %p\n", iface);
316 return E_NOTIMPL;
319 static HRESULT WINAPI corruntimehost_CreateDomain(
320 ICorRuntimeHost* iface,
321 LPCWSTR friendlyName,
322 IUnknown *identityArray,
323 IUnknown **appDomain)
325 FIXME("stub %p\n", iface);
326 return E_NOTIMPL;
329 static HRESULT WINAPI corruntimehost_GetDefaultDomain(
330 ICorRuntimeHost* iface,
331 IUnknown **pAppDomain)
333 RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
334 HRESULT hr;
335 MonoDomain *domain;
337 TRACE("(%p)\n", iface);
339 hr = RuntimeHost_GetDefaultDomain(This, &domain);
341 if (SUCCEEDED(hr))
343 hr = RuntimeHost_GetIUnknownForDomain(This, domain, pAppDomain);
346 return hr;
349 static HRESULT WINAPI corruntimehost_EnumDomains(
350 ICorRuntimeHost* iface,
351 HDOMAINENUM *hEnum)
353 FIXME("stub %p\n", iface);
354 return E_NOTIMPL;
357 static HRESULT WINAPI corruntimehost_NextDomain(
358 ICorRuntimeHost* iface,
359 HDOMAINENUM hEnum,
360 IUnknown **appDomain)
362 FIXME("stub %p\n", iface);
363 return E_NOTIMPL;
366 static HRESULT WINAPI corruntimehost_CloseEnum(
367 ICorRuntimeHost* iface,
368 HDOMAINENUM hEnum)
370 FIXME("stub %p\n", iface);
371 return E_NOTIMPL;
374 static HRESULT WINAPI corruntimehost_CreateDomainEx(
375 ICorRuntimeHost* iface,
376 LPCWSTR friendlyName,
377 IUnknown *setup,
378 IUnknown *evidence,
379 IUnknown **appDomain)
381 FIXME("stub %p\n", iface);
382 return E_NOTIMPL;
385 static HRESULT WINAPI corruntimehost_CreateDomainSetup(
386 ICorRuntimeHost* iface,
387 IUnknown **appDomainSetup)
389 FIXME("stub %p\n", iface);
390 return E_NOTIMPL;
393 static HRESULT WINAPI corruntimehost_CreateEvidence(
394 ICorRuntimeHost* iface,
395 IUnknown **evidence)
397 FIXME("stub %p\n", iface);
398 return E_NOTIMPL;
401 static HRESULT WINAPI corruntimehost_UnloadDomain(
402 ICorRuntimeHost* iface,
403 IUnknown *appDomain)
405 FIXME("stub %p\n", iface);
406 return E_NOTIMPL;
409 static HRESULT WINAPI corruntimehost_CurrentDomain(
410 ICorRuntimeHost* iface,
411 IUnknown **appDomain)
413 FIXME("stub %p\n", iface);
414 return E_NOTIMPL;
417 static const struct ICorRuntimeHostVtbl corruntimehost_vtbl =
419 corruntimehost_QueryInterface,
420 corruntimehost_AddRef,
421 corruntimehost_Release,
422 corruntimehost_CreateLogicalThreadState,
423 corruntimehost_DeleteLogicalThreadState,
424 corruntimehost_SwitchInLogicalThreadState,
425 corruntimehost_SwitchOutLogicalThreadState,
426 corruntimehost_LocksHeldByLogicalThread,
427 corruntimehost_MapFile,
428 corruntimehost_GetConfiguration,
429 corruntimehost_Start,
430 corruntimehost_Stop,
431 corruntimehost_CreateDomain,
432 corruntimehost_GetDefaultDomain,
433 corruntimehost_EnumDomains,
434 corruntimehost_NextDomain,
435 corruntimehost_CloseEnum,
436 corruntimehost_CreateDomainEx,
437 corruntimehost_CreateDomainSetup,
438 corruntimehost_CreateEvidence,
439 corruntimehost_UnloadDomain,
440 corruntimehost_CurrentDomain
443 static HRESULT WINAPI CLRRuntimeHost_QueryInterface(ICLRRuntimeHost* iface,
444 REFIID riid,
445 void **ppvObject)
447 RuntimeHost *This = impl_from_ICLRRuntimeHost( iface );
448 TRACE("%p %s %p\n", This, debugstr_guid(riid), ppvObject);
450 if ( IsEqualGUID( riid, &IID_ICLRRuntimeHost ) ||
451 IsEqualGUID( riid, &IID_IUnknown ) )
453 *ppvObject = iface;
455 else
457 FIXME("Unsupported interface %s\n", debugstr_guid(riid));
458 return E_NOINTERFACE;
461 ICLRRuntimeHost_AddRef( iface );
463 return S_OK;
466 static ULONG WINAPI CLRRuntimeHost_AddRef(ICLRRuntimeHost* iface)
468 RuntimeHost *This = impl_from_ICLRRuntimeHost( iface );
469 return ICorRuntimeHost_AddRef(&This->ICorRuntimeHost_iface);
472 static ULONG WINAPI CLRRuntimeHost_Release(ICLRRuntimeHost* iface)
474 RuntimeHost *This = impl_from_ICLRRuntimeHost( iface );
475 return ICorRuntimeHost_Release(&This->ICorRuntimeHost_iface);
478 static HRESULT WINAPI CLRRuntimeHost_Start(ICLRRuntimeHost* iface)
480 FIXME("(%p)\n", iface);
481 return E_NOTIMPL;
484 static HRESULT WINAPI CLRRuntimeHost_Stop(ICLRRuntimeHost* iface)
486 FIXME("(%p)\n", iface);
487 return E_NOTIMPL;
490 static HRESULT WINAPI CLRRuntimeHost_SetHostControl(ICLRRuntimeHost* iface,
491 IHostControl *pHostControl)
493 FIXME("(%p,%p)\n", iface, pHostControl);
494 return E_NOTIMPL;
497 static HRESULT WINAPI CLRRuntimeHost_GetCLRControl(ICLRRuntimeHost* iface,
498 ICLRControl **pCLRControl)
500 FIXME("(%p,%p)\n", iface, pCLRControl);
501 return E_NOTIMPL;
504 static HRESULT WINAPI CLRRuntimeHost_UnloadAppDomain(ICLRRuntimeHost* iface,
505 DWORD dwAppDomainId, BOOL fWaitUntilDone)
507 FIXME("(%p,%u,%i)\n", iface, dwAppDomainId, fWaitUntilDone);
508 return E_NOTIMPL;
511 static HRESULT WINAPI CLRRuntimeHost_ExecuteInAppDomain(ICLRRuntimeHost* iface,
512 DWORD dwAppDomainId, FExecuteInAppDomainCallback pCallback, void *cookie)
514 FIXME("(%p,%u,%p,%p)\n", iface, dwAppDomainId, pCallback, cookie);
515 return E_NOTIMPL;
518 static HRESULT WINAPI CLRRuntimeHost_GetCurrentAppDomainId(ICLRRuntimeHost* iface,
519 DWORD *pdwAppDomainId)
521 FIXME("(%p,%p)\n", iface, pdwAppDomainId);
522 return E_NOTIMPL;
525 static HRESULT WINAPI CLRRuntimeHost_ExecuteApplication(ICLRRuntimeHost* iface,
526 LPCWSTR pwzAppFullName, DWORD dwManifestPaths, LPCWSTR *ppwzManifestPaths,
527 DWORD dwActivationData, LPCWSTR *ppwzActivationData, int *pReturnValue)
529 FIXME("(%p,%s,%u,%u)\n", iface, debugstr_w(pwzAppFullName), dwManifestPaths, dwActivationData);
530 return E_NOTIMPL;
533 static HRESULT WINAPI CLRRuntimeHost_ExecuteInDefaultAppDomain(ICLRRuntimeHost* iface,
534 LPCWSTR pwzAssemblyPath, LPCWSTR pwzTypeName, LPCWSTR pwzMethodName,
535 LPCWSTR pwzArgument, DWORD *pReturnValue)
537 RuntimeHost *This = impl_from_ICLRRuntimeHost( iface );
538 HRESULT hr;
539 MonoDomain *domain;
540 MonoAssembly *assembly;
541 MonoImage *image;
542 MonoClass *klass;
543 MonoMethod *method;
544 MonoObject *result;
545 MonoString *str;
546 void *args[2];
547 char *filenameA = NULL, *classA = NULL, *methodA = NULL;
548 char *argsA = NULL, *ns;
550 TRACE("(%p,%s,%s,%s,%s)\n", iface, debugstr_w(pwzAssemblyPath),
551 debugstr_w(pwzTypeName), debugstr_w(pwzMethodName), debugstr_w(pwzArgument));
553 hr = RuntimeHost_GetDefaultDomain(This, &domain);
554 if(hr != S_OK)
556 ERR("Couldn't get Default Domain\n");
557 return hr;
560 hr = E_FAIL;
562 filenameA = WtoA(pwzAssemblyPath);
563 assembly = This->mono->mono_domain_assembly_open(domain, filenameA);
564 if (!assembly)
566 ERR("Cannot open assembly %s\n", filenameA);
567 goto cleanup;
570 image = This->mono->mono_assembly_get_image(assembly);
571 if (!image)
573 ERR("Couldn't get assembly image\n");
574 goto cleanup;
577 classA = WtoA(pwzTypeName);
578 ns = strrchr(classA, '.');
579 *ns = '\0';
580 klass = This->mono->mono_class_from_name(image, classA, ns+1);
581 if (!klass)
583 ERR("Couldn't get class from image\n");
584 goto cleanup;
587 methodA = WtoA(pwzMethodName);
588 method = This->mono->mono_class_get_method_from_name(klass, methodA, 1);
589 if (!method)
591 ERR("Couldn't get method from class\n");
592 goto cleanup;
595 argsA = WtoA(pwzArgument);
596 str = This->mono->mono_string_new(domain, argsA);
597 args[0] = &str;
598 args[1] = NULL;
599 result = This->mono->mono_runtime_invoke(method, NULL, args, NULL);
600 if (!result)
601 ERR("Couldn't get result pointer\n");
602 else
604 *pReturnValue = *(DWORD*)This->mono->mono_object_unbox(result);
605 hr = S_OK;
608 cleanup:
609 if(filenameA)
610 HeapFree(GetProcessHeap(), 0, filenameA);
611 if(classA)
612 HeapFree(GetProcessHeap(), 0, classA);
613 if(argsA)
614 HeapFree(GetProcessHeap(), 0, argsA);
615 if(methodA)
616 HeapFree(GetProcessHeap(), 0, methodA);
618 return hr;
621 static const struct ICLRRuntimeHostVtbl CLRHostVtbl =
623 CLRRuntimeHost_QueryInterface,
624 CLRRuntimeHost_AddRef,
625 CLRRuntimeHost_Release,
626 CLRRuntimeHost_Start,
627 CLRRuntimeHost_Stop,
628 CLRRuntimeHost_SetHostControl,
629 CLRRuntimeHost_GetCLRControl,
630 CLRRuntimeHost_UnloadAppDomain,
631 CLRRuntimeHost_ExecuteInAppDomain,
632 CLRRuntimeHost_GetCurrentAppDomainId,
633 CLRRuntimeHost_ExecuteApplication,
634 CLRRuntimeHost_ExecuteInDefaultAppDomain
637 /* Create an instance of a type given its name, by calling its constructor with
638 * no arguments. Note that result MUST be in the stack, or the garbage
639 * collector may free it prematurely. */
640 HRESULT RuntimeHost_CreateManagedInstance(RuntimeHost *This, LPCWSTR name,
641 MonoDomain *domain, MonoObject **result)
643 HRESULT hr=S_OK;
644 char *nameA=NULL;
645 MonoType *type;
646 MonoClass *klass;
647 MonoObject *obj;
649 if (!domain)
650 hr = RuntimeHost_GetDefaultDomain(This, &domain);
652 if (SUCCEEDED(hr))
654 nameA = WtoA(name);
655 if (!nameA)
656 hr = E_OUTOFMEMORY;
659 if (SUCCEEDED(hr))
661 type = This->mono->mono_reflection_type_from_name(nameA, NULL);
662 if (!type)
664 ERR("Cannot find type %s\n", debugstr_w(name));
665 hr = E_FAIL;
669 if (SUCCEEDED(hr))
671 klass = This->mono->mono_class_from_mono_type(type);
672 if (!klass)
674 ERR("Cannot convert type %s to a class\n", debugstr_w(name));
675 hr = E_FAIL;
679 if (SUCCEEDED(hr))
681 obj = This->mono->mono_object_new(domain, klass);
682 if (!obj)
684 ERR("Cannot allocate object of type %s\n", debugstr_w(name));
685 hr = E_FAIL;
689 if (SUCCEEDED(hr))
691 /* FIXME: Detect exceptions from the constructor? */
692 This->mono->mono_runtime_object_init(obj);
693 *result = obj;
696 HeapFree(GetProcessHeap(), 0, nameA);
698 return hr;
701 /* Get an IUnknown pointer for a Mono object.
703 * This is just a "light" wrapper around
704 * System.Runtime.InteropServices.Marshal:GetIUnknownForObject
706 * NOTE: The IUnknown* is created with a reference to the object.
707 * Until they have a reference, objects must be in the stack to prevent the
708 * garbage collector from freeing them. */
709 HRESULT RuntimeHost_GetIUnknownForObject(RuntimeHost *This, MonoObject *obj,
710 IUnknown **ppUnk)
712 MonoDomain *domain;
713 MonoAssembly *assembly;
714 MonoImage *image;
715 MonoClass *klass;
716 MonoMethod *method;
717 MonoObject *result;
718 void *args[2];
720 domain = This->mono->mono_object_get_domain(obj);
722 assembly = This->mono->mono_domain_assembly_open(domain, "mscorlib");
723 if (!assembly)
725 ERR("Cannot load mscorlib\n");
726 return E_FAIL;
729 image = This->mono->mono_assembly_get_image(assembly);
730 if (!image)
732 ERR("Couldn't get assembly image\n");
733 return E_FAIL;
736 klass = This->mono->mono_class_from_name(image, "System.Runtime.InteropServices", "Marshal");
737 if (!klass)
739 ERR("Couldn't get class from image\n");
740 return E_FAIL;
743 method = This->mono->mono_class_get_method_from_name(klass, "GetIUnknownForObject", 1);
744 if (!method)
746 ERR("Couldn't get method from class\n");
747 return E_FAIL;
750 args[0] = obj;
751 args[1] = NULL;
752 result = This->mono->mono_runtime_invoke(method, NULL, args, NULL);
753 if (!result)
755 ERR("Couldn't get result pointer\n");
756 return E_FAIL;
759 *ppUnk = *(IUnknown**)This->mono->mono_object_unbox(result);
760 if (!*ppUnk)
762 ERR("GetIUnknownForObject returned 0\n");
763 return E_FAIL;
766 return S_OK;
769 static void get_utf8_args(int *argc, char ***argv)
771 WCHAR **argvw;
772 int size=0, i;
773 char *current_arg;
775 argvw = CommandLineToArgvW(GetCommandLineW(), argc);
777 for (i=0; i<*argc; i++)
779 size += sizeof(char*);
780 size += WideCharToMultiByte(CP_UTF8, 0, argvw[i], -1, NULL, 0, NULL, NULL);
782 size += sizeof(char*);
784 *argv = HeapAlloc(GetProcessHeap(), 0, size);
785 current_arg = (char*)(*argv + *argc + 1);
787 for (i=0; i<*argc; i++)
789 (*argv)[i] = current_arg;
790 current_arg += WideCharToMultiByte(CP_UTF8, 0, argvw[i], -1, current_arg, size, NULL, NULL);
793 (*argv)[*argc] = NULL;
795 HeapFree(GetProcessHeap(), 0, argvw);
798 __int32 WINAPI _CorExeMain(void)
800 int exit_code;
801 int argc;
802 char **argv;
803 MonoDomain *domain;
804 MonoAssembly *assembly;
805 WCHAR filename[MAX_PATH];
806 char *filenameA;
807 ICLRRuntimeInfo *info;
808 RuntimeHost *host;
809 HRESULT hr;
810 int i;
812 get_utf8_args(&argc, &argv);
814 GetModuleFileNameW(NULL, filename, MAX_PATH);
816 TRACE("%s", debugstr_w(filename));
817 for (i=0; i<argc; i++)
818 TRACE(" %s", debugstr_a(argv[i]));
819 TRACE("\n");
821 filenameA = WtoA(filename);
822 if (!filenameA)
823 return -1;
825 hr = get_runtime_info(filename, NULL, NULL, 0, 0, FALSE, &info);
827 if (SUCCEEDED(hr))
829 hr = ICLRRuntimeInfo_GetRuntimeHost(info, &host);
831 if (SUCCEEDED(hr))
832 hr = RuntimeHost_GetDefaultDomain(host, &domain);
834 if (SUCCEEDED(hr))
836 assembly = host->mono->mono_domain_assembly_open(domain, filenameA);
838 exit_code = host->mono->mono_jit_exec(domain, assembly, argc, argv);
840 RuntimeHost_DeleteDomain(host, domain);
842 else
843 exit_code = -1;
845 ICLRRuntimeInfo_Release(info);
847 else
848 exit_code = -1;
850 HeapFree(GetProcessHeap(), 0, argv);
852 unload_all_runtimes();
854 return exit_code;
857 HRESULT RuntimeHost_Construct(const CLRRuntimeInfo *runtime_version,
858 loaded_mono *loaded_mono, RuntimeHost** result)
860 RuntimeHost *This;
862 This = HeapAlloc( GetProcessHeap(), 0, sizeof *This );
863 if ( !This )
864 return E_OUTOFMEMORY;
866 This->ICorRuntimeHost_iface.lpVtbl = &corruntimehost_vtbl;
867 This->ICLRRuntimeHost_iface.lpVtbl = &CLRHostVtbl;
869 This->ref = 1;
870 This->version = runtime_version;
871 This->mono = loaded_mono;
872 list_init(&This->domains);
873 This->default_domain = NULL;
874 InitializeCriticalSection(&This->lock);
875 This->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": RuntimeHost.lock");
877 *result = This;
879 return S_OK;
882 HRESULT RuntimeHost_GetInterface(RuntimeHost *This, REFCLSID clsid, REFIID riid, void **ppv)
884 IUnknown *unk;
885 HRESULT hr;
887 if (IsEqualGUID(clsid, &CLSID_CorRuntimeHost))
889 unk = (IUnknown*)&This->ICorRuntimeHost_iface;
890 IUnknown_AddRef(unk);
892 else if (IsEqualGUID(clsid, &CLSID_CLRRuntimeHost))
894 unk = (IUnknown*)&This->ICLRRuntimeHost_iface;
895 IUnknown_AddRef(unk);
897 else if (IsEqualGUID(clsid, &CLSID_CorMetaDataDispenser) ||
898 IsEqualGUID(clsid, &CLSID_CorMetaDataDispenserRuntime))
900 hr = MetaDataDispenser_CreateInstance(&unk);
901 if (FAILED(hr))
902 return hr;
904 else if (IsEqualGUID(clsid, &CLSID_CLRDebuggingLegacy))
906 hr = CorDebug_Create(&This->ICLRRuntimeHost_iface, &unk);
907 if (FAILED(hr))
908 return hr;
910 else
911 unk = NULL;
913 if (unk)
915 hr = IUnknown_QueryInterface(unk, riid, ppv);
917 IUnknown_Release(unk);
919 return hr;
921 else
922 FIXME("not implemented for class %s\n", debugstr_guid(clsid));
924 return CLASS_E_CLASSNOTAVAILABLE;
927 HRESULT RuntimeHost_Destroy(RuntimeHost *This)
929 struct DomainEntry *cursor, *cursor2;
931 This->lock.DebugInfo->Spare[0] = 0;
932 DeleteCriticalSection(&This->lock);
934 LIST_FOR_EACH_ENTRY_SAFE(cursor, cursor2, &This->domains, struct DomainEntry, entry)
936 list_remove(&cursor->entry);
937 HeapFree(GetProcessHeap(), 0, cursor);
940 HeapFree( GetProcessHeap(), 0, This );
941 return S_OK;