115 lines
3.8 KiB
C#
115 lines
3.8 KiB
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Microsoft.Extensions.DependencyModel
|
|
{
|
|
public class DependencyContext
|
|
{
|
|
private const string DepsJsonExtension = ".deps.json";
|
|
private const string DepsFileExtension = ".deps";
|
|
|
|
private static readonly Lazy<DependencyContext> _defaultContext = new Lazy<DependencyContext>(LoadDefault);
|
|
|
|
public DependencyContext(string targetFramework,
|
|
string runtime,
|
|
bool isPortable,
|
|
CompilationOptions compilationOptions,
|
|
IEnumerable<CompilationLibrary> compileLibraries,
|
|
IEnumerable<RuntimeLibrary> runtimeLibraries,
|
|
IEnumerable<KeyValuePair<string, string[]>> runtimeGraph)
|
|
{
|
|
if (targetFramework == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(targetFramework));
|
|
}
|
|
if (runtime == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(runtime));
|
|
}
|
|
if (compileLibraries == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(compileLibraries));
|
|
}
|
|
if (runtimeLibraries == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(runtimeLibraries));
|
|
}
|
|
if (runtimeGraph == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(runtimeGraph));
|
|
}
|
|
|
|
TargetFramework = targetFramework;
|
|
Runtime = runtime;
|
|
IsPortable = isPortable;
|
|
CompilationOptions = compilationOptions;
|
|
CompileLibraries = compileLibraries.ToArray();
|
|
RuntimeLibraries = runtimeLibraries.ToArray();
|
|
RuntimeGraph = runtimeGraph.ToArray();
|
|
}
|
|
|
|
public static DependencyContext Default => _defaultContext.Value;
|
|
|
|
public string TargetFramework { get; }
|
|
|
|
public string Runtime { get; }
|
|
|
|
public bool IsPortable { get; }
|
|
|
|
public CompilationOptions CompilationOptions { get; }
|
|
|
|
public IReadOnlyList<CompilationLibrary> CompileLibraries { get; }
|
|
|
|
public IReadOnlyList<RuntimeLibrary> RuntimeLibraries { get; }
|
|
|
|
public IReadOnlyList<KeyValuePair<string, string[]>> RuntimeGraph { get; }
|
|
|
|
private static DependencyContext LoadDefault()
|
|
{
|
|
var entryAssembly = Assembly.GetEntryAssembly();
|
|
return Load(entryAssembly);
|
|
}
|
|
|
|
public static DependencyContext Load(Assembly assembly)
|
|
{
|
|
if (assembly == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(assembly));
|
|
}
|
|
|
|
using (var stream = assembly.GetManifestResourceStream(assembly.GetName().Name + DepsJsonExtension))
|
|
{
|
|
if (stream != null)
|
|
{
|
|
return new DependencyContextJsonReader().Read(stream);
|
|
}
|
|
}
|
|
|
|
var depsJsonFile = Path.ChangeExtension(assembly.Location, DepsJsonExtension);
|
|
if (File.Exists(depsJsonFile))
|
|
{
|
|
using (var stream = File.OpenRead(depsJsonFile))
|
|
{
|
|
return new DependencyContextJsonReader().Read(stream);
|
|
}
|
|
}
|
|
|
|
var depsFile = Path.ChangeExtension(assembly.Location, DepsFileExtension);
|
|
if (File.Exists(depsFile))
|
|
{
|
|
using (var stream = File.OpenRead(depsFile))
|
|
{
|
|
return new DependencyContextCsvReader().Read(stream);
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|