257 lines
No EOL
9.2 KiB
C#
257 lines
No EOL
9.2 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using Microsoft.Extensions.ProjectModel.Graph;
|
|
using Microsoft.Extensions.ProjectModel.Resolution;
|
|
using Microsoft.Extensions.ProjectModel.Utilities;
|
|
using NuGet.Frameworks;
|
|
|
|
namespace Microsoft.Extensions.ProjectModel.Compilation
|
|
{
|
|
public class LibraryExporter
|
|
{
|
|
private readonly string _configuration;
|
|
private readonly ProjectDescription _rootProject;
|
|
|
|
public LibraryExporter(ProjectDescription rootProject, LibraryManager manager, string configuration)
|
|
{
|
|
if (string.IsNullOrEmpty(configuration))
|
|
{
|
|
throw new ArgumentNullException(nameof(configuration));
|
|
}
|
|
|
|
LibraryManager = manager;
|
|
_configuration = configuration;
|
|
_rootProject = rootProject;
|
|
}
|
|
|
|
public LibraryManager LibraryManager { get; }
|
|
|
|
public IEnumerable<LibraryExport> GetAllExports()
|
|
{
|
|
// Export all but the main project
|
|
return ExportLibraries(_ => true);
|
|
}
|
|
|
|
public IEnumerable<LibraryExport> GetCompilationDependencies()
|
|
{
|
|
// Export all but the main project
|
|
return ExportLibraries(l => !string.Equals(l.Identity.Name, _rootProject.Identity.Name, StringComparison.OrdinalIgnoreCase));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieves a list of <see cref="LibraryExport"/> objects representing the assets
|
|
/// required from other libraries to compile this project.
|
|
/// </summary>
|
|
private IEnumerable<LibraryExport> ExportLibraries(Func<LibraryDescription, bool> condition)
|
|
{
|
|
var seenMetadataReferences = new HashSet<string>();
|
|
var seenRuntimeReferences = new HashSet<string>();
|
|
|
|
// Iterate over libraries in the library manager
|
|
foreach (var library in LibraryManager.GetLibraries())
|
|
{
|
|
if(!condition(library))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
var compilationAssemblies = new List<string>();
|
|
var sourceReferences = new List<string>();
|
|
|
|
var libraryExport = GetExport(library);
|
|
|
|
if (libraryExport != null)
|
|
{
|
|
// We need to filter out source references from non-root libraries,
|
|
// so we rebuild the library export
|
|
foreach (var reference in libraryExport.CompilationAssemblies)
|
|
{
|
|
if (seenMetadataReferences.Add(Path.GetFileNameWithoutExtension(reference)))
|
|
{
|
|
compilationAssemblies.Add(reference);
|
|
}
|
|
}
|
|
|
|
if (library.Parent != null && Equals(library.Parent.Identity, _rootProject.Identity))
|
|
{
|
|
// Only process source references for direct dependencies
|
|
foreach (var sourceReference in libraryExport.SourceReferences)
|
|
{
|
|
sourceReferences.Add(sourceReference);
|
|
}
|
|
}
|
|
|
|
yield return new LibraryExport(library, compilationAssemblies, sourceReferences, libraryExport.RuntimeAssemblies, libraryExport.NativeLibraries);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void QueueDependencies(Queue<Node> queue, Node node)
|
|
{
|
|
// Queue up all the dependencies to be exported
|
|
foreach (var dependency in node.Library.Dependencies)
|
|
{
|
|
var childNode = new Node
|
|
{
|
|
Library = LibraryManager.GetLibrary(dependency.Name),
|
|
Parent = node
|
|
};
|
|
|
|
queue.Enqueue(childNode);
|
|
}
|
|
}
|
|
|
|
private LibraryExport GetExport(LibraryDescription library)
|
|
{
|
|
// Don't even try to export unresolved libraries
|
|
if (!library.Resolved)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
if (Equals(LibraryType.Package, library.Identity.Type))
|
|
{
|
|
return ExportPackage((PackageDescription)library);
|
|
}
|
|
else if (Equals(LibraryType.Project, library.Identity.Type))
|
|
{
|
|
return ExportProject((ProjectDescription)library);
|
|
}
|
|
else
|
|
{
|
|
return ExportFrameworkLibrary(library);
|
|
}
|
|
}
|
|
|
|
private LibraryExport ExportPackage(PackageDescription package)
|
|
{
|
|
var nativeLibraries = new List<string>();
|
|
PopulateAssets(package, package.Target.NativeLibraries, nativeLibraries);
|
|
|
|
var runtimeAssemblies = new List<string>();
|
|
PopulateAssets(package, package.Target.RuntimeAssemblies, runtimeAssemblies);
|
|
|
|
var compileAssemblies = new List<string>();
|
|
PopulateAssets(package, package.Target.CompileTimeAssemblies, compileAssemblies);
|
|
|
|
var sourceReferences = new List<string>();
|
|
foreach (var sharedSource in GetSharedSources(package))
|
|
{
|
|
sourceReferences.Add(sharedSource);
|
|
}
|
|
|
|
return new LibraryExport(package, compileAssemblies, sourceReferences, runtimeAssemblies, nativeLibraries);
|
|
}
|
|
|
|
private LibraryExport ExportProject(ProjectDescription project)
|
|
{
|
|
var compileAssemblies = new List<string>();
|
|
var sourceReferences = new List<string>();
|
|
|
|
if (!string.IsNullOrEmpty(project.TargetFrameworkInfo?.AssemblyPath))
|
|
{
|
|
// Project specifies a pre-compiled binary. We're done!
|
|
var assemblyPath = ResolvePath(project.Project, _configuration, project.TargetFrameworkInfo.AssemblyPath);
|
|
compileAssemblies.Add(assemblyPath);
|
|
}
|
|
else
|
|
{
|
|
// Add the project output to the metadata references, if there is source code
|
|
var outputPath = GetOutputPath(project);
|
|
if (project.Project.Files.SourceFiles.Any())
|
|
{
|
|
compileAssemblies.Add(outputPath);
|
|
}
|
|
|
|
// Add shared sources
|
|
foreach (var sharedFile in project.Project.Files.SharedFiles)
|
|
{
|
|
sourceReferences.Add(sharedFile);
|
|
}
|
|
}
|
|
|
|
// No support for ref or native in projects, so runtimeAssemblies is just the same as compileAssemblies and nativeLibraries are empty
|
|
return new LibraryExport(project, compileAssemblies, sourceReferences, compileAssemblies, Enumerable.Empty<string>());
|
|
}
|
|
|
|
private string GetOutputPath(ProjectDescription project)
|
|
{
|
|
return Path.Combine(
|
|
project.Project.ProjectDirectory,
|
|
"bin",
|
|
_configuration,
|
|
project.Framework.GetTwoDigitShortFolderName(),
|
|
project.Project.Name + ".dll");
|
|
}
|
|
|
|
private static string ResolvePath(Project project, string configuration, string path)
|
|
{
|
|
if (string.IsNullOrEmpty(path))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
path = PathUtility.GetPathWithDirectorySeparator(path);
|
|
|
|
path = path.Replace("{configuration}", configuration);
|
|
|
|
return Path.Combine(project.ProjectDirectory, path);
|
|
}
|
|
|
|
private LibraryExport ExportFrameworkLibrary(LibraryDescription library)
|
|
{
|
|
if (string.IsNullOrEmpty(library.Path))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// We assume the path is to an assembly. Framework libraries only export compile-time stuff
|
|
// since they assume the runtime library is present already
|
|
return new LibraryExport(
|
|
library,
|
|
new[] { library.Path },
|
|
Enumerable.Empty<string>(),
|
|
Enumerable.Empty<string>(),
|
|
Enumerable.Empty<string>());
|
|
}
|
|
|
|
private IEnumerable<string> GetSharedSources(PackageDescription package)
|
|
{
|
|
var directory = Path.Combine(package.Path, "shared");
|
|
|
|
return package
|
|
.Library
|
|
.Files
|
|
.Where(path => path.StartsWith("shared" + Path.DirectorySeparatorChar))
|
|
.Select(path => Path.Combine(package.Path, path));
|
|
}
|
|
|
|
|
|
private void PopulateAssets(PackageDescription package, IEnumerable<LockFileItem> section, IList<string> paths)
|
|
{
|
|
foreach (var assemblyPath in section)
|
|
{
|
|
if (PathUtility.IsPlaceholderFile(assemblyPath))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
var path = Path.Combine(package.Path, assemblyPath);
|
|
paths.Add(path);
|
|
}
|
|
}
|
|
|
|
private class Node
|
|
{
|
|
public LibraryDescription Library { get; set; }
|
|
|
|
public Node Parent { get; set; }
|
|
}
|
|
}
|
|
} |