// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CoreCLR.h" #if USE_NETCORE #include "Engine/Core/Log.h" #include "Engine/Platform/Platform.h" #include "Engine/Platform/FileSystem.h" #include "Engine/Core/Types/DateTime.h" #include "Engine/Core/Collections/Dictionary.h" #include "Engine/Debug/DebugLog.h" #include "Engine/Engine/Globals.h" #include #include #include #if PLATFORM_WINDOWS #include #undef SetEnvironmentVariable #undef LoadLibrary #endif static Dictionary CachedFunctions; static const char_t* NativeInteropTypeName = FLAX_CORECLR_TEXT("FlaxEngine.NativeInterop, FlaxEngine.CSharp"); hostfxr_initialize_for_runtime_config_fn hostfxr_initialize_for_runtime_config; hostfxr_initialize_for_dotnet_command_line_fn hostfxr_initialize_for_dotnet_command_line; hostfxr_get_runtime_delegate_fn hostfxr_get_runtime_delegate; hostfxr_close_fn hostfxr_close; load_assembly_and_get_function_pointer_fn load_assembly_and_get_function_pointer; get_function_pointer_fn get_function_pointer; hostfxr_set_error_writer_fn hostfxr_set_error_writer; hostfxr_get_dotnet_environment_info_result_fn hostfxr_get_dotnet_environment_info_result; hostfxr_run_app_fn hostfxr_run_app; bool CoreCLR::InitHostfxr(const String& configPath, const String& libraryPath) { const FLAX_CORECLR_STRING& library_path = FLAX_CORECLR_STRING(libraryPath); // Get path to hostfxr library get_hostfxr_parameters get_hostfxr_params; get_hostfxr_params.size = sizeof(hostfxr_initialize_parameters); get_hostfxr_params.assembly_path = library_path.Get(); FLAX_CORECLR_STRING dotnetRoot; // TODO: implement proper lookup for dotnet instalation folder and handle standalone build of FlaxGame #if PLATFORM_MAC get_hostfxr_params.dotnet_root = "/usr/local/share/dotnet"; #else get_hostfxr_params.dotnet_root = nullptr; #endif #if !USE_EDITOR const String& bundledDotnetPath = Globals::ProjectFolder / TEXT("Dotnet"); if (FileSystem::DirectoryExists(bundledDotnetPath)) { dotnetRoot = FLAX_CORECLR_STRING(bundledDotnetPath); #if PLATFORM_WINDOWS_FAMILY dotnetRoot.Replace('/', '\\'); #endif get_hostfxr_params.dotnet_root = dotnetRoot.Get(); } #endif char_t hostfxrPath[1024]; size_t hostfxrPathSize = sizeof(hostfxrPath) / sizeof(char_t); int rc = get_hostfxr_path(hostfxrPath, &hostfxrPathSize, &get_hostfxr_params); if (rc != 0) { LOG(Error, "Failed to find hostfxr: {0:x} ({1})", (unsigned int)rc, String(get_hostfxr_params.dotnet_root)); // Warn user about missing .Net #if PLATFORM_DESKTOP Platform::OpenUrl(TEXT("https://dotnet.microsoft.com/en-us/download/dotnet/7.0")); #endif #if USE_EDITOR LOG(Fatal, "Missing .NET 7 SDK installation requried to run Flax Editor."); #else LOG(Fatal, "Missing .NET 7 Runtime installation requried to run this application."); #endif return true; } String path(hostfxrPath); LOG(Info, "Found hostfxr in {0}", path); // Get API from hostfxr library void* hostfxr = Platform::LoadLibrary(path.Get()); if (hostfxr == nullptr) { LOG(Fatal, "Failed to load hostfxr library ({0})", path); return true; } hostfxr_initialize_for_runtime_config = (hostfxr_initialize_for_runtime_config_fn)Platform::GetProcAddress(hostfxr, "hostfxr_initialize_for_runtime_config"); hostfxr_initialize_for_dotnet_command_line = (hostfxr_initialize_for_dotnet_command_line_fn)Platform::GetProcAddress(hostfxr, "hostfxr_initialize_for_dotnet_command_line"); hostfxr_get_runtime_delegate = (hostfxr_get_runtime_delegate_fn)Platform::GetProcAddress(hostfxr, "hostfxr_get_runtime_delegate"); hostfxr_close = (hostfxr_close_fn)Platform::GetProcAddress(hostfxr, "hostfxr_close"); hostfxr_set_error_writer = (hostfxr_set_error_writer_fn)Platform::GetProcAddress(hostfxr, "hostfxr_set_error_writer"); hostfxr_get_dotnet_environment_info_result = (hostfxr_get_dotnet_environment_info_result_fn)Platform::GetProcAddress(hostfxr, "hostfxr_get_dotnet_environment_info_result"); hostfxr_run_app = (hostfxr_run_app_fn)Platform::GetProcAddress(hostfxr, "hostfxr_run_app"); if (!hostfxr_get_runtime_delegate || !hostfxr_run_app) { LOG(Fatal, "Failed to setup hostfxr API ({0})", path); return true; } // Initialize hosting component const char_t* argv[1] = { library_path.Get() }; hostfxr_initialize_parameters init_params; init_params.size = sizeof(hostfxr_initialize_parameters); init_params.host_path = library_path.Get(); path = String(StringUtils::GetDirectoryName(path)) / TEXT("/../../../"); StringUtils::PathRemoveRelativeParts(path); dotnetRoot = FLAX_CORECLR_STRING(path); init_params.dotnet_root = dotnetRoot.Get(); hostfxr_handle handle = nullptr; rc = hostfxr_initialize_for_dotnet_command_line(ARRAY_COUNT(argv), argv, &init_params, &handle); if (rc != 0 || handle == nullptr) { hostfxr_close(handle); LOG(Fatal, "Failed to initialize hostfxr: {0:x} ({1})", (unsigned int)rc, String(init_params.dotnet_root)); return true; } void* pget_function_pointer = nullptr; rc = hostfxr_get_runtime_delegate(handle, hdt_get_function_pointer, &pget_function_pointer); if (rc != 0 || pget_function_pointer == nullptr) { hostfxr_close(handle); LOG(Fatal, "Failed to get runtime delegate hdt_get_function_pointer: 0x{0:x}", (unsigned int)rc); return true; } hostfxr_close(handle); get_function_pointer = (get_function_pointer_fn)pget_function_pointer; return false; } void* CoreCLR::GetStaticMethodPointer(const String& methodName) { void* fun; if (CachedFunctions.TryGet(methodName, fun)) return fun; int rc = get_function_pointer(NativeInteropTypeName, FLAX_CORECLR_STRING(methodName).Get(), UNMANAGEDCALLERSONLY_METHOD, nullptr, nullptr, &fun); if (rc != 0) LOG(Fatal, "Failed to get unmanaged function pointer for method {0}: 0x{1:x}", methodName.Get(), (unsigned int)rc); CachedFunctions.Add(methodName, fun); return fun; } void CoreCLR::RegisterNativeLibrary(const char* moduleName, const char* modulePath) { static void* RegisterNativeLibraryPtr = CoreCLR::GetStaticMethodPointer(TEXT("RegisterNativeLibrary")); CoreCLR::CallStaticMethod(RegisterNativeLibraryPtr, moduleName, modulePath); } void* CoreCLR::Allocate(int32 size) { static void* AllocMemoryPtr = CoreCLR::GetStaticMethodPointer(TEXT("AllocMemory")); return CoreCLR::CallStaticMethod(AllocMemoryPtr, size); } void CoreCLR::Free(void* ptr) { if (!ptr) return; static void* FreeMemoryPtr = CoreCLR::GetStaticMethodPointer(TEXT("FreeMemory")); CoreCLR::CallStaticMethod(FreeMemoryPtr, ptr); } #endif