1. ホーム
  2. .net

[解決済み] 現在ロードされているアセンブリをループで処理する方法は?

2022-08-05 16:48:56

質問

私の ASP.NET アプリケーションに、データベース接続の検証、現在の appSettings と ConnectionStrings の表示などを行う "diagnostics" ページがあります。 このページのセクションでは、全体を通して使用される重要な型のアセンブリ バージョンが表示されますが、ロードされたすべてのアセンブリのバージョンを効果的に表示する方法が分かりませんでした。


をすべて把握するための最も効果的な方法は何でしょうか。 を把握する最も効果的な方法は何ですか? アセンブリを把握する最も効果的な方法は何ですか?

注意: 私は、特定のディレクトリ内の *.dll を反復するような、ファイルベースのメソッドには興味がありません。 私は、アプリケーションが実際にどのようなものであるかに興味があります。 を使用しているのかに興味があります。 を使用しているものに興味があります。

どのように解決するのですか?

この拡張メソッドは、ネストされたアセンブリを含め、再帰的に、参照されているすべてのアセンブリを取得します。

このメソッドでは ReflectionOnlyLoad を使用しているため、別の AppDomain でアセンブリをロードし、JIT プロセスを妨げないという利点があります。

また MyGetMissingAssembliesRecursive . これは、参照はされているが何らかの理由でカレントディレクトリに存在しないアセンブリを検出するために使用することができます。これは MEF . 返されるリストには、見つからないアセンブリと、それを所有している人 (親) の両方が表示されます。

/// <summary>
///     Intent: Get referenced assemblies, either recursively or flat. Not thread safe, if running in a multi
///     threaded environment must use locks.
/// </summary>
public static class GetReferencedAssemblies
{
    static void Demo()
    {
        var referencedAssemblies = Assembly.GetEntryAssembly().MyGetReferencedAssembliesRecursive();
        var missingAssemblies = Assembly.GetEntryAssembly().MyGetMissingAssembliesRecursive();
        // Can use this within a class.
        //var referencedAssemblies = this.MyGetReferencedAssembliesRecursive();
    }

    public class MissingAssembly
    {
        public MissingAssembly(string missingAssemblyName, string missingAssemblyNameParent)
        {
            MissingAssemblyName = missingAssemblyName;
            MissingAssemblyNameParent = missingAssemblyNameParent;
        }

        public string MissingAssemblyName { get; set; }
        public string MissingAssemblyNameParent { get; set; }
    }

    private static Dictionary<string, Assembly> _dependentAssemblyList;
    private static List<MissingAssembly> _missingAssemblyList;

    /// <summary>
    ///     Intent: Get assemblies referenced by entry assembly. Not recursive.
    /// </summary>
    public static List<string> MyGetReferencedAssembliesFlat(this Type type)
    {
        var results = type.Assembly.GetReferencedAssemblies();
        return results.Select(o => o.FullName).OrderBy(o => o).ToList();
    }

    /// <summary>
    ///     Intent: Get assemblies currently dependent on entry assembly. Recursive.
    /// </summary>
    public static Dictionary<string, Assembly> MyGetReferencedAssembliesRecursive(this Assembly assembly)
    {
        _dependentAssemblyList = new Dictionary<string, Assembly>();
        _missingAssemblyList = new List<MissingAssembly>();

        InternalGetDependentAssembliesRecursive(assembly);

        // Only include assemblies that we wrote ourselves (ignore ones from GAC).
        var keysToRemove = _dependentAssemblyList.Values.Where(
            o => o.GlobalAssemblyCache == true).ToList();

        foreach (var k in keysToRemove)
        {
            _dependentAssemblyList.Remove(k.FullName.MyToName());
        }

        return _dependentAssemblyList;
    }

    /// <summary>
    ///     Intent: Get missing assemblies.
    /// </summary>
    public static List<MissingAssembly> MyGetMissingAssembliesRecursive(this Assembly assembly)
    {
        _dependentAssemblyList = new Dictionary<string, Assembly>();
        _missingAssemblyList = new List<MissingAssembly>();
        InternalGetDependentAssembliesRecursive(assembly);

        return _missingAssemblyList;
    }

    /// <summary>
    ///     Intent: Internal recursive class to get all dependent assemblies, and all dependent assemblies of
    ///     dependent assemblies, etc.
    /// </summary>
    private static void InternalGetDependentAssembliesRecursive(Assembly assembly)
    {
        // Load assemblies with newest versions first. Omitting the ordering results in false positives on
        // _missingAssemblyList.
        var referencedAssemblies = assembly.GetReferencedAssemblies()
            .OrderByDescending(o => o.Version);

        foreach (var r in referencedAssemblies)
        {
            if (String.IsNullOrEmpty(assembly.FullName))
            {
                continue;
            }

            if (_dependentAssemblyList.ContainsKey(r.FullName.MyToName()) == false)
            {
                try
                {
                    var a = Assembly.ReflectionOnlyLoad(r.FullName);
                    _dependentAssemblyList[a.FullName.MyToName()] = a;
                    InternalGetDependentAssembliesRecursive(a);
                }
                catch (Exception ex)
                {
                    _missingAssemblyList.Add(new MissingAssembly(r.FullName.Split(',')[0], assembly.FullName.MyToName()));
                }
            }
        }
    }

    private static string MyToName(this string fullName)
    {
        return fullName.Split(',')[0];
    }
}

更新情報

このコードをスレッドセーフにするために lock を付けてください。このコードは共有の静的グローバル変数を参照して魔法をかけるので、現在デフォルトではスレッドセーフではありません。