mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
63 lines
2.0 KiB
C#
63 lines
2.0 KiB
C#
using Microsoft.Iris.Data;
|
|
using Microsoft.Iris.Library;
|
|
using Microsoft.Iris.Markup;
|
|
using Microsoft.Iris.Session;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Microsoft.Iris.OS
|
|
{
|
|
internal class ClrDllResources : IResourceProvider
|
|
{
|
|
public const string Scheme = "clr-res";
|
|
|
|
private static ClrDllResources s_instance = new ClrDllResources();
|
|
private Dictionary<string, Assembly> _shortNameToAssembly;
|
|
|
|
private ClrDllResources() => _shortNameToAssembly = new Dictionary<string, Assembly>(InvariantString.OrdinalIgnoreCaseComparer);
|
|
|
|
public static ClrDllResources Instance => s_instance;
|
|
|
|
public Resource GetResource(string hierarchicalPart, string uri, bool forceSynchronous)
|
|
{
|
|
Resource resource = null;
|
|
DllResources.ParseResource(hierarchicalPart, out string host, out string identifier);
|
|
if (host != null)
|
|
{
|
|
Assembly assembly = GetAssembly(host);
|
|
if (assembly != null)
|
|
resource = new ClrDllResource(uri, assembly, identifier);
|
|
}
|
|
if (resource == null)
|
|
ErrorManager.ReportError($"Invalid resource uri: '{uri}'");
|
|
return resource;
|
|
}
|
|
|
|
public Assembly GetAssembly(string moduleName)
|
|
{
|
|
if (!_shortNameToAssembly.TryGetValue(moduleName, out Assembly a))
|
|
{
|
|
AssemblyName name = null;
|
|
try
|
|
{
|
|
name = new AssemblyName(moduleName);
|
|
}
|
|
catch (COMException)
|
|
{
|
|
}
|
|
catch (IOException)
|
|
{
|
|
}
|
|
|
|
if (name != null)
|
|
a = AssemblyLoadResult.FindAssembly(name, out _);
|
|
_shortNameToAssembly[moduleName] = a;
|
|
}
|
|
return a;
|
|
}
|
|
}
|
|
}
|