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
37 #include "wine/list.h"
38 #include "mscoree_private.h"
40 #include "wine/debug.h"
41 #include "wine/unicode.h"
43 WINE_DEFAULT_DEBUG_CHANNEL( mscoree );
47 DEFINE_GUID(IID__AppDomain, 0x05f696dc,0x2b29,0x3663,0xad,0x8b,0xc4,0x38,0x9c,0xf2,0xa7,0x13);
55 static HRESULT RuntimeHost_AddDomain(RuntimeHost *This, MonoDomain **result)
57 struct DomainEntry *entry;
61 EnterCriticalSection(&This->lock);
63 entry = HeapAlloc(GetProcessHeap(), 0, sizeof(*entry));
70 mscorlib_path = WtoA(This->version->mscorlib_path);
73 HeapFree(GetProcessHeap(), 0, entry);
78 entry->domain = This->mono->mono_jit_init(mscorlib_path);
80 HeapFree(GetProcessHeap(), 0, mscorlib_path);
84 HeapFree(GetProcessHeap(), 0, entry);
89 This->mono->is_started = TRUE;
91 list_add_tail(&This->domains, &entry->entry);
93 *result = entry->domain;
96 LeaveCriticalSection(&This->lock);
101 static HRESULT RuntimeHost_GetDefaultDomain(RuntimeHost *This, MonoDomain **result)
105 EnterCriticalSection(&This->lock);
107 if (This->default_domain) goto end;
109 res = RuntimeHost_AddDomain(This, &This->default_domain);
112 *result = This->default_domain;
114 LeaveCriticalSection(&This->lock);
119 static void RuntimeHost_DeleteDomain(RuntimeHost *This, MonoDomain *domain)
121 struct DomainEntry *entry;
123 EnterCriticalSection(&This->lock);
125 LIST_FOR_EACH_ENTRY(entry, &This->domains, struct DomainEntry, entry)
127 if (entry->domain == domain)
129 list_remove(&entry->entry);
130 if (This->default_domain == domain)
131 This->default_domain = NULL;
132 HeapFree(GetProcessHeap(), 0, entry);
137 LeaveCriticalSection(&This->lock);
140 static HRESULT RuntimeHost_GetIUnknownForDomain(RuntimeHost *This, MonoDomain *domain, IUnknown **punk)
144 MonoAssembly *assembly;
148 MonoObject *appdomain_object;
151 assembly = This->mono->mono_domain_assembly_open(domain, "mscorlib");
154 ERR("Cannot load mscorlib\n");
158 image = This->mono->mono_assembly_get_image(assembly);
161 ERR("Couldn't get assembly image\n");
165 klass = This->mono->mono_class_from_name(image, "System", "AppDomain");
168 ERR("Couldn't get class from image\n");
172 method = This->mono->mono_class_get_method_from_name(klass, "get_CurrentDomain", 0);
175 ERR("Couldn't get method from class\n");
180 appdomain_object = This->mono->mono_runtime_invoke(method, NULL, args, NULL);
181 if (!appdomain_object)
183 ERR("Couldn't get result pointer\n");
187 hr = RuntimeHost_GetIUnknownForObject(This, appdomain_object, &unk);
191 hr = IUnknown_QueryInterface(unk, &IID__AppDomain, (void**)punk);
193 IUnknown_Release(unk);
199 static inline RuntimeHost *impl_from_ICLRRuntimeHost( ICLRRuntimeHost *iface )
201 return CONTAINING_RECORD(iface, RuntimeHost, ICLRRuntimeHost_iface);
204 static inline RuntimeHost *impl_from_ICorRuntimeHost( ICorRuntimeHost *iface )
206 return CONTAINING_RECORD(iface, RuntimeHost, ICorRuntimeHost_iface);
209 /*** IUnknown methods ***/
210 static HRESULT WINAPI corruntimehost_QueryInterface(ICorRuntimeHost* iface,
214 RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
215 TRACE("%p %s %p\n", This, debugstr_guid(riid), ppvObject);
217 if ( IsEqualGUID( riid, &IID_ICorRuntimeHost ) ||
218 IsEqualGUID( riid, &IID_IUnknown ) )
224 FIXME("Unsupported interface %s\n", debugstr_guid(riid));
225 return E_NOINTERFACE;
228 ICorRuntimeHost_AddRef( iface );
233 static ULONG WINAPI corruntimehost_AddRef(ICorRuntimeHost* iface)
235 RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
237 return InterlockedIncrement( &This->ref );
240 static ULONG WINAPI corruntimehost_Release(ICorRuntimeHost* iface)
242 RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
245 ref = InterlockedDecrement( &This->ref );
250 /*** ICorRuntimeHost methods ***/
251 static HRESULT WINAPI corruntimehost_CreateLogicalThreadState(
252 ICorRuntimeHost* iface)
254 FIXME("stub %p\n", iface);
258 static HRESULT WINAPI corruntimehost_DeleteLogicalThreadState(
259 ICorRuntimeHost* iface)
261 FIXME("stub %p\n", iface);
265 static HRESULT WINAPI corruntimehost_SwitchInLogicalThreadState(
266 ICorRuntimeHost* iface,
269 FIXME("stub %p\n", iface);
273 static HRESULT WINAPI corruntimehost_SwitchOutLogicalThreadState(
274 ICorRuntimeHost* iface,
277 FIXME("stub %p\n", iface);
281 static HRESULT WINAPI corruntimehost_LocksHeldByLogicalThread(
282 ICorRuntimeHost* iface,
285 FIXME("stub %p\n", iface);
289 static HRESULT WINAPI corruntimehost_MapFile(
290 ICorRuntimeHost* iface,
294 FIXME("stub %p\n", iface);
298 static HRESULT WINAPI corruntimehost_GetConfiguration(
299 ICorRuntimeHost* iface,
300 ICorConfiguration **pConfiguration)
302 FIXME("stub %p\n", iface);
306 static HRESULT WINAPI corruntimehost_Start(
307 ICorRuntimeHost* iface)
309 FIXME("stub %p\n", iface);
313 static HRESULT WINAPI corruntimehost_Stop(
314 ICorRuntimeHost* iface)
316 FIXME("stub %p\n", iface);
320 static HRESULT WINAPI corruntimehost_CreateDomain(
321 ICorRuntimeHost* iface,
322 LPCWSTR friendlyName,
323 IUnknown *identityArray,
324 IUnknown **appDomain)
326 FIXME("stub %p\n", iface);
330 static HRESULT WINAPI corruntimehost_GetDefaultDomain(
331 ICorRuntimeHost* iface,
332 IUnknown **pAppDomain)
334 RuntimeHost *This = impl_from_ICorRuntimeHost( iface );
338 TRACE("(%p)\n", iface);
340 hr = RuntimeHost_GetDefaultDomain(This, &domain);
344 hr = RuntimeHost_GetIUnknownForDomain(This, domain, pAppDomain);
350 static HRESULT WINAPI corruntimehost_EnumDomains(
351 ICorRuntimeHost* iface,
354 FIXME("stub %p\n", iface);
358 static HRESULT WINAPI corruntimehost_NextDomain(
359 ICorRuntimeHost* iface,
361 IUnknown **appDomain)
363 FIXME("stub %p\n", iface);
367 static HRESULT WINAPI corruntimehost_CloseEnum(
368 ICorRuntimeHost* iface,
371 FIXME("stub %p\n", iface);
375 static HRESULT WINAPI corruntimehost_CreateDomainEx(
376 ICorRuntimeHost* iface,
377 LPCWSTR friendlyName,
380 IUnknown **appDomain)
382 FIXME("stub %p\n", iface);
386 static HRESULT WINAPI corruntimehost_CreateDomainSetup(
387 ICorRuntimeHost* iface,
388 IUnknown **appDomainSetup)
390 FIXME("stub %p\n", iface);
394 static HRESULT WINAPI corruntimehost_CreateEvidence(
395 ICorRuntimeHost* iface,
398 FIXME("stub %p\n", iface);
402 static HRESULT WINAPI corruntimehost_UnloadDomain(
403 ICorRuntimeHost* iface,
406 FIXME("stub %p\n", iface);
410 static HRESULT WINAPI corruntimehost_CurrentDomain(
411 ICorRuntimeHost* iface,
412 IUnknown **appDomain)
414 FIXME("stub %p\n", iface);
418 static const struct ICorRuntimeHostVtbl corruntimehost_vtbl =
420 corruntimehost_QueryInterface,
421 corruntimehost_AddRef,
422 corruntimehost_Release,
423 corruntimehost_CreateLogicalThreadState,
424 corruntimehost_DeleteLogicalThreadState,
425 corruntimehost_SwitchInLogicalThreadState,
426 corruntimehost_SwitchOutLogicalThreadState,
427 corruntimehost_LocksHeldByLogicalThread,
428 corruntimehost_MapFile,
429 corruntimehost_GetConfiguration,
430 corruntimehost_Start,
432 corruntimehost_CreateDomain,
433 corruntimehost_GetDefaultDomain,
434 corruntimehost_EnumDomains,
435 corruntimehost_NextDomain,
436 corruntimehost_CloseEnum,
437 corruntimehost_CreateDomainEx,
438 corruntimehost_CreateDomainSetup,
439 corruntimehost_CreateEvidence,
440 corruntimehost_UnloadDomain,
441 corruntimehost_CurrentDomain
444 static HRESULT WINAPI CLRRuntimeHost_QueryInterface(ICLRRuntimeHost* iface,
448 RuntimeHost *This = impl_from_ICLRRuntimeHost( iface );
449 TRACE("%p %s %p\n", This, debugstr_guid(riid), ppvObject);
451 if ( IsEqualGUID( riid, &IID_ICLRRuntimeHost ) ||
452 IsEqualGUID( riid, &IID_IUnknown ) )
458 FIXME("Unsupported interface %s\n", debugstr_guid(riid));
459 return E_NOINTERFACE;
462 ICLRRuntimeHost_AddRef( iface );
467 static ULONG WINAPI CLRRuntimeHost_AddRef(ICLRRuntimeHost* iface)
469 RuntimeHost *This = impl_from_ICLRRuntimeHost( iface );
470 return ICorRuntimeHost_AddRef(&This->ICorRuntimeHost_iface);
473 static ULONG WINAPI CLRRuntimeHost_Release(ICLRRuntimeHost* iface)
475 RuntimeHost *This = impl_from_ICLRRuntimeHost( iface );
476 return ICorRuntimeHost_Release(&This->ICorRuntimeHost_iface);
479 static HRESULT WINAPI CLRRuntimeHost_Start(ICLRRuntimeHost* iface)
481 FIXME("(%p)\n", iface);
485 static HRESULT WINAPI CLRRuntimeHost_Stop(ICLRRuntimeHost* iface)
487 FIXME("(%p)\n", iface);
491 static HRESULT WINAPI CLRRuntimeHost_SetHostControl(ICLRRuntimeHost* iface,
492 IHostControl *pHostControl)
494 FIXME("(%p,%p)\n", iface, pHostControl);
498 static HRESULT WINAPI CLRRuntimeHost_GetCLRControl(ICLRRuntimeHost* iface,
499 ICLRControl **pCLRControl)
501 FIXME("(%p,%p)\n", iface, pCLRControl);
505 static HRESULT WINAPI CLRRuntimeHost_UnloadAppDomain(ICLRRuntimeHost* iface,
506 DWORD dwAppDomainId, BOOL fWaitUntilDone)
508 FIXME("(%p,%u,%i)\n", iface, dwAppDomainId, fWaitUntilDone);
512 static HRESULT WINAPI CLRRuntimeHost_ExecuteInAppDomain(ICLRRuntimeHost* iface,
513 DWORD dwAppDomainId, FExecuteInAppDomainCallback pCallback, void *cookie)
515 FIXME("(%p,%u,%p,%p)\n", iface, dwAppDomainId, pCallback, cookie);
519 static HRESULT WINAPI CLRRuntimeHost_GetCurrentAppDomainId(ICLRRuntimeHost* iface,
520 DWORD *pdwAppDomainId)
522 FIXME("(%p,%p)\n", iface, pdwAppDomainId);
526 static HRESULT WINAPI CLRRuntimeHost_ExecuteApplication(ICLRRuntimeHost* iface,
527 LPCWSTR pwzAppFullName, DWORD dwManifestPaths, LPCWSTR *ppwzManifestPaths,
528 DWORD dwActivationData, LPCWSTR *ppwzActivationData, int *pReturnValue)
530 FIXME("(%p,%s,%u,%u)\n", iface, debugstr_w(pwzAppFullName), dwManifestPaths, dwActivationData);
534 static HRESULT WINAPI CLRRuntimeHost_ExecuteInDefaultAppDomain(ICLRRuntimeHost* iface,
535 LPCWSTR pwzAssemblyPath, LPCWSTR pwzTypeName, LPCWSTR pwzMethodName,
536 LPCWSTR pwzArgument, DWORD *pReturnValue)
538 RuntimeHost *This = impl_from_ICLRRuntimeHost( iface );
541 MonoAssembly *assembly;
548 char *filenameA = NULL, *classA = NULL, *methodA = NULL;
549 char *argsA = NULL, *ns;
551 TRACE("(%p,%s,%s,%s,%s)\n", iface, debugstr_w(pwzAssemblyPath),
552 debugstr_w(pwzTypeName), debugstr_w(pwzMethodName), debugstr_w(pwzArgument));
554 hr = RuntimeHost_GetDefaultDomain(This, &domain);
557 ERR("Couldn't get Default Domain\n");
563 filenameA = WtoA(pwzAssemblyPath);
564 assembly = This->mono->mono_domain_assembly_open(domain, filenameA);
567 ERR("Cannot open assembly %s\n", filenameA);
571 image = This->mono->mono_assembly_get_image(assembly);
574 ERR("Couldn't get assembly image\n");
578 classA = WtoA(pwzTypeName);
579 ns = strrchr(classA, '.');
581 klass = This->mono->mono_class_from_name(image, classA, ns+1);
584 ERR("Couldn't get class from image\n");
588 methodA = WtoA(pwzMethodName);
589 method = This->mono->mono_class_get_method_from_name(klass, methodA, 1);
592 ERR("Couldn't get method from class\n");
596 /* The .NET function we are calling has the following declaration
597 * public static int functionName(String param)
599 argsA = WtoA(pwzArgument);
600 str = This->mono->mono_string_new(domain, argsA);
603 result = This->mono->mono_runtime_invoke(method, NULL, args, NULL);
605 ERR("Couldn't get result pointer\n");
608 *pReturnValue = *(DWORD*)This->mono->mono_object_unbox(result);
613 HeapFree(GetProcessHeap(), 0, filenameA);
614 HeapFree(GetProcessHeap(), 0, classA);
615 HeapFree(GetProcessHeap(), 0, argsA);
616 HeapFree(GetProcessHeap(), 0, methodA);
621 static const struct ICLRRuntimeHostVtbl CLRHostVtbl =
623 CLRRuntimeHost_QueryInterface,
624 CLRRuntimeHost_AddRef,
625 CLRRuntimeHost_Release,
626 CLRRuntimeHost_Start,
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)
650 hr = RuntimeHost_GetDefaultDomain(This, &domain);
661 type = This->mono->mono_reflection_type_from_name(nameA, NULL);
664 ERR("Cannot find type %s\n", debugstr_w(name));
671 klass = This->mono->mono_class_from_mono_type(type);
674 ERR("Cannot convert type %s to a class\n", debugstr_w(name));
681 obj = This->mono->mono_object_new(domain, klass);
684 ERR("Cannot allocate object of type %s\n", debugstr_w(name));
691 /* FIXME: Detect exceptions from the constructor? */
692 This->mono->mono_runtime_object_init(obj);
696 HeapFree(GetProcessHeap(), 0, nameA);
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,
713 MonoAssembly *assembly;
720 domain = This->mono->mono_object_get_domain(obj);
722 assembly = This->mono->mono_domain_assembly_open(domain, "mscorlib");
725 ERR("Cannot load mscorlib\n");
729 image = This->mono->mono_assembly_get_image(assembly);
732 ERR("Couldn't get assembly image\n");
736 klass = This->mono->mono_class_from_name(image, "System.Runtime.InteropServices", "Marshal");
739 ERR("Couldn't get class from image\n");
743 method = This->mono->mono_class_get_method_from_name(klass, "GetIUnknownForObject", 1);
746 ERR("Couldn't get method from class\n");
752 result = This->mono->mono_runtime_invoke(method, NULL, args, NULL);
755 ERR("Couldn't get result pointer\n");
759 *ppUnk = *(IUnknown**)This->mono->mono_object_unbox(result);
762 ERR("GetIUnknownForObject returned 0\n");
769 static void get_utf8_args(int *argc, char ***argv)
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)
804 MonoAssembly *assembly;
805 WCHAR filename[MAX_PATH];
807 ICLRRuntimeInfo *info;
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]));
821 filenameA = WtoA(filename);
825 hr = get_runtime_info(filename, NULL, NULL, 0, 0, FALSE, &info);
829 hr = ICLRRuntimeInfo_GetRuntimeHost(info, &host);
832 hr = RuntimeHost_GetDefaultDomain(host, &domain);
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);
845 ICLRRuntimeInfo_Release(info);
850 HeapFree(GetProcessHeap(), 0, argv);
852 unload_all_runtimes();
857 HRESULT RuntimeHost_Construct(const CLRRuntimeInfo *runtime_version,
858 loaded_mono *loaded_mono, RuntimeHost** result)
862 This = HeapAlloc( GetProcessHeap(), 0, sizeof *This );
864 return E_OUTOFMEMORY;
866 This->ICorRuntimeHost_iface.lpVtbl = &corruntimehost_vtbl;
867 This->ICLRRuntimeHost_iface.lpVtbl = &CLRHostVtbl;
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");
882 HRESULT RuntimeHost_GetInterface(RuntimeHost *This, REFCLSID clsid, REFIID riid, void **ppv)
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);
904 else if (IsEqualGUID(clsid, &CLSID_CLRDebuggingLegacy))
906 hr = CorDebug_Create(&This->ICLRRuntimeHost_iface, &unk);
915 hr = IUnknown_QueryInterface(unk, riid, ppv);
917 IUnknown_Release(unk);
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 );
944 #define CHARS_IN_GUID 39
945 #define ARRAYSIZE(array) (sizeof(array)/sizeof((array)[0]))
947 HRESULT create_monodata(REFIID riid, LPVOID *ppObj )
949 static const WCHAR wszCodebase[] = {'C','o','d','e','B','a','s','e',0};
950 static const WCHAR wszClass[] = {'C','l','a','s','s',0};
951 static const WCHAR wszFileSlash[] = {'f','i','l','e',':','/','/','/',0};
952 static const WCHAR wszCLSIDSlash[] = {'C','L','S','I','D','\\',0};
953 static const WCHAR wszInprocServer32[] = {'\\','I','n','p','r','o','c','S','e','r','v','e','r','3','2',0};
954 WCHAR path[CHARS_IN_GUID + ARRAYSIZE(wszCLSIDSlash) + ARRAYSIZE(wszInprocServer32) - 1];
956 MonoAssembly *assembly;
957 ICLRRuntimeInfo *info;
963 WCHAR codebase[MAX_PATH + 8];
964 WCHAR classname[350];
965 WCHAR filename[MAX_PATH];
967 DWORD dwBufLen = 350;
969 lstrcpyW(path, wszCLSIDSlash);
970 StringFromGUID2(riid, path + lstrlenW(wszCLSIDSlash), CHARS_IN_GUID);
971 lstrcatW(path, wszInprocServer32);
973 TRACE("Registry key: %s\n", debugstr_w(path));
975 res = RegOpenKeyExW(HKEY_CLASSES_ROOT, path, 0, KEY_READ, &key);
976 if (res == ERROR_FILE_NOT_FOUND)
977 return CLASS_E_CLASSNOTAVAILABLE;
979 res = RegGetValueW( key, NULL, wszClass, RRF_RT_REG_SZ, NULL, classname, &dwBufLen);
980 if(res != ERROR_SUCCESS)
982 WARN("Class value cannot be found.\n");
983 hr = CLASS_E_CLASSNOTAVAILABLE;
987 TRACE("classname (%s)\n", debugstr_w(classname));
989 dwBufLen = MAX_PATH + 8;
990 res = RegGetValueW( key, NULL, wszCodebase, RRF_RT_REG_SZ, NULL, codebase, &dwBufLen);
991 if(res != ERROR_SUCCESS)
993 WARN("CodeBase value cannot be found.\n");
994 hr = CLASS_E_CLASSNOTAVAILABLE;
999 if(strncmpW(codebase, wszFileSlash, strlenW(wszFileSlash)) == 0)
1000 offset = strlenW(wszFileSlash);
1002 strcpyW(filename, codebase + offset);
1004 TRACE("codebase (%s)\n", debugstr_w(filename));
1009 hr = get_runtime_info(filename, NULL, NULL, 0, 0, FALSE, &info);
1012 hr = ICLRRuntimeInfo_GetRuntimeHost(info, &host);
1015 hr = RuntimeHost_GetDefaultDomain(host, &domain);
1022 IUnknown *unk = NULL;
1023 char *filenameA, *ns;
1026 hr = CLASS_E_CLASSNOTAVAILABLE;
1028 filenameA = WtoA(filename);
1029 assembly = host->mono->mono_domain_assembly_open(domain, filenameA);
1030 HeapFree(GetProcessHeap(), 0, filenameA);
1033 ERR("Cannot open assembly %s\n", filenameA);
1037 image = host->mono->mono_assembly_get_image(assembly);
1040 ERR("Couldn't get assembly image\n");
1044 classA = WtoA(classname);
1045 ns = strrchr(classA, '.');
1048 klass = host->mono->mono_class_from_name(image, classA, ns+1);
1049 HeapFree(GetProcessHeap(), 0, classA);
1052 ERR("Couldn't get class from image\n");
1057 * Use the default constructor for the .NET class.
1059 result = host->mono->mono_object_new(domain, klass);
1060 host->mono->mono_runtime_object_init(result);
1062 hr = RuntimeHost_GetIUnknownForObject(host, result, &unk);
1065 hr = IUnknown_QueryInterface(unk, &IID_IUnknown, ppObj);
1067 IUnknown_Release(unk);
1070 hr = CLASS_E_CLASSNOTAVAILABLE;
1073 hr = CLASS_E_CLASSNOTAVAILABLE;
1076 hr = CLASS_E_CLASSNOTAVAILABLE;
1080 ICLRRuntimeInfo_Release(info);