2016-02-24 16:05:55 -08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
2016-04-28 16:30:32 -07:00
|
|
|
|
using Microsoft.DotNet.InternalAbstractions;
|
2016-02-24 16:05:55 -08:00
|
|
|
|
using Microsoft.DotNet.ProjectModel;
|
2016-09-28 14:21:52 -07:00
|
|
|
|
using Microsoft.DotNet.Tools.Common;
|
2016-02-24 16:05:55 -08:00
|
|
|
|
using NuGet.Frameworks;
|
2016-09-23 15:30:53 -07:00
|
|
|
|
using NuGet.ProjectModel;
|
2016-02-24 16:05:55 -08:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Utils
|
|
|
|
|
{
|
|
|
|
|
public class ProjectDependenciesCommandResolver : ICommandResolver
|
|
|
|
|
{
|
2016-04-20 16:05:53 -07:00
|
|
|
|
private static readonly CommandResolutionStrategy s_commandResolutionStrategy =
|
2016-02-24 16:05:55 -08:00
|
|
|
|
CommandResolutionStrategy.ProjectDependenciesPackage;
|
|
|
|
|
|
2016-03-27 22:24:20 -07:00
|
|
|
|
private readonly IEnvironmentProvider _environment;
|
|
|
|
|
private readonly IPackagedCommandSpecFactory _packagedCommandSpecFactory;
|
2016-02-24 16:05:55 -08:00
|
|
|
|
|
|
|
|
|
public ProjectDependenciesCommandResolver(
|
|
|
|
|
IEnvironmentProvider environment,
|
|
|
|
|
IPackagedCommandSpecFactory packagedCommandSpecFactory)
|
|
|
|
|
{
|
|
|
|
|
if (environment == null)
|
|
|
|
|
{
|
2016-03-09 11:36:16 -08:00
|
|
|
|
throw new ArgumentNullException(nameof(environment));
|
2016-02-24 16:05:55 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (packagedCommandSpecFactory == null)
|
|
|
|
|
{
|
2016-03-09 11:36:16 -08:00
|
|
|
|
throw new ArgumentNullException(nameof(packagedCommandSpecFactory));
|
2016-02-24 16:05:55 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_environment = environment;
|
|
|
|
|
_packagedCommandSpecFactory = packagedCommandSpecFactory;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CommandSpec Resolve(CommandResolverArguments commandResolverArguments)
|
|
|
|
|
{
|
2016-03-11 15:30:37 -08:00
|
|
|
|
if (commandResolverArguments.Framework == null
|
2016-02-24 16:05:55 -08:00
|
|
|
|
|| commandResolverArguments.ProjectDirectory == null
|
|
|
|
|
|| commandResolverArguments.Configuration == null
|
|
|
|
|
|| commandResolverArguments.CommandName == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ResolveFromProjectDependencies(
|
|
|
|
|
commandResolverArguments.ProjectDirectory,
|
|
|
|
|
commandResolverArguments.Framework,
|
|
|
|
|
commandResolverArguments.Configuration,
|
|
|
|
|
commandResolverArguments.CommandName,
|
2016-03-07 11:50:52 -08:00
|
|
|
|
commandResolverArguments.CommandArguments.OrEmptyIfNull(),
|
2016-03-11 15:30:37 -08:00
|
|
|
|
commandResolverArguments.OutputPath,
|
|
|
|
|
commandResolverArguments.BuildBasePath);
|
2016-02-24 16:05:55 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private CommandSpec ResolveFromProjectDependencies(
|
|
|
|
|
string projectDirectory,
|
|
|
|
|
NuGetFramework framework,
|
|
|
|
|
string configuration,
|
|
|
|
|
string commandName,
|
2016-03-03 15:31:04 -08:00
|
|
|
|
IEnumerable<string> commandArguments,
|
2016-03-11 15:30:37 -08:00
|
|
|
|
string outputPath,
|
|
|
|
|
string buildBasePath)
|
2016-02-24 16:05:55 -08:00
|
|
|
|
{
|
|
|
|
|
var allowedExtensions = GetAllowedCommandExtensionsFromEnvironment(_environment);
|
|
|
|
|
|
|
|
|
|
var projectContext = GetProjectContextFromDirectory(
|
2016-03-11 15:30:37 -08:00
|
|
|
|
projectDirectory,
|
2016-02-24 16:05:55 -08:00
|
|
|
|
framework);
|
|
|
|
|
|
|
|
|
|
if (projectContext == null)
|
2016-03-11 15:30:37 -08:00
|
|
|
|
{
|
2016-02-24 16:05:55 -08:00
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-11 15:30:37 -08:00
|
|
|
|
var depsFilePath =
|
2016-03-14 17:38:36 -07:00
|
|
|
|
projectContext.GetOutputPaths(configuration, buildBasePath, outputPath).RuntimeFiles.DepsJson;
|
2016-02-24 16:05:55 -08:00
|
|
|
|
|
2016-05-08 14:20:34 -07:00
|
|
|
|
if (! File.Exists(depsFilePath))
|
|
|
|
|
{
|
|
|
|
|
Reporter.Verbose.WriteLine($"projectdependenciescommandresolver: {depsFilePath} does not exist");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-20 16:05:53 -07:00
|
|
|
|
var runtimeConfigPath =
|
2016-04-07 16:20:51 -07:00
|
|
|
|
projectContext.GetOutputPaths(configuration, buildBasePath, outputPath).RuntimeFiles.RuntimeConfigJson;
|
2016-03-11 15:30:37 -08:00
|
|
|
|
|
2016-05-08 14:20:34 -07:00
|
|
|
|
if (! File.Exists(runtimeConfigPath))
|
|
|
|
|
{
|
|
|
|
|
Reporter.Verbose.WriteLine($"projectdependenciescommandresolver: {runtimeConfigPath} does not exist");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-07 16:20:51 -07:00
|
|
|
|
var toolLibrary = GetToolLibraryForContext(projectContext, commandName);
|
2016-09-28 14:21:52 -07:00
|
|
|
|
var nugetPackagesRoot = PathUtility.EnsureNoTrailingDirectorySeparator(projectContext.PackagesDirectory);
|
2016-02-24 16:05:55 -08:00
|
|
|
|
|
2016-03-27 23:54:17 -07:00
|
|
|
|
return _packagedCommandSpecFactory.CreateCommandSpecFromLibrary(
|
2016-03-27 22:24:20 -07:00
|
|
|
|
toolLibrary,
|
2016-02-24 16:05:55 -08:00
|
|
|
|
commandName,
|
|
|
|
|
commandArguments,
|
|
|
|
|
allowedExtensions,
|
2016-09-28 14:21:52 -07:00
|
|
|
|
nugetPackagesRoot,
|
2016-02-24 16:05:55 -08:00
|
|
|
|
s_commandResolutionStrategy,
|
2016-04-07 16:20:51 -07:00
|
|
|
|
depsFilePath,
|
|
|
|
|
runtimeConfigPath);
|
2016-02-24 16:05:55 -08:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-27 22:24:20 -07:00
|
|
|
|
private LockFileTargetLibrary GetToolLibraryForContext(
|
|
|
|
|
ProjectContext projectContext, string commandName)
|
2016-02-24 16:05:55 -08:00
|
|
|
|
{
|
2016-04-20 16:05:53 -07:00
|
|
|
|
var toolLibraries = projectContext.LockFile.Targets
|
2016-03-27 22:24:20 -07:00
|
|
|
|
.FirstOrDefault(t => t.TargetFramework.GetShortFolderName()
|
|
|
|
|
.Equals(projectContext.TargetFramework.GetShortFolderName()))
|
2016-04-20 16:05:53 -07:00
|
|
|
|
?.Libraries.Where(l => l.Name == commandName ||
|
|
|
|
|
l.RuntimeAssemblies.Any(r => Path.GetFileNameWithoutExtension(r.Path) == commandName)).ToList();
|
2016-03-27 22:24:20 -07:00
|
|
|
|
|
2016-04-20 16:05:53 -07:00
|
|
|
|
if (toolLibraries?.Count() > 1)
|
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException($"Ambiguous command name: {commandName}");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return toolLibraries?.FirstOrDefault();
|
2016-02-24 16:05:55 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private ProjectContext GetProjectContextFromDirectory(string directory, NuGetFramework framework)
|
|
|
|
|
{
|
|
|
|
|
if (directory == null || framework == null)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var projectRootPath = directory;
|
|
|
|
|
|
|
|
|
|
if (!File.Exists(Path.Combine(projectRootPath, Project.FileName)))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-07 16:37:51 -05:00
|
|
|
|
return ProjectContext.Create(
|
2016-04-20 16:05:53 -07:00
|
|
|
|
projectRootPath,
|
|
|
|
|
framework,
|
2016-04-28 16:30:32 -07:00
|
|
|
|
RuntimeEnvironmentRidExtensions.GetAllCandidateRuntimeIdentifiers());
|
2016-02-24 16:05:55 -08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IEnumerable<string> GetAllowedCommandExtensionsFromEnvironment(IEnvironmentProvider environment)
|
|
|
|
|
{
|
|
|
|
|
var allowedCommandExtensions = new List<string>();
|
|
|
|
|
allowedCommandExtensions.AddRange(environment.ExecutableExtensions);
|
|
|
|
|
allowedCommandExtensions.Add(FileNameSuffixes.DotNet.DynamicLib);
|
|
|
|
|
|
|
|
|
|
return allowedCommandExtensions;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|