291 lines
12 KiB
C#
291 lines
12 KiB
C#
// Copyright (c) Microsoft Open Technologies, Inc. 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.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Reflection.PortableExecutable;
|
|
using Microsoft.AspNet.FileProviders;
|
|
using Microsoft.AspNet.Mvc.Razor.Internal;
|
|
using Microsoft.CodeAnalysis;
|
|
using Microsoft.CodeAnalysis.CSharp;
|
|
using Microsoft.CodeAnalysis.Emit;
|
|
using Microsoft.Framework.Internal;
|
|
using Microsoft.Framework.OptionsModel;
|
|
using Microsoft.Framework.Runtime;
|
|
using Microsoft.Framework.Runtime.Compilation;
|
|
using Microsoft.Framework.Runtime.Roslyn;
|
|
|
|
namespace Microsoft.AspNet.Mvc.Razor.Compilation
|
|
{
|
|
/// <summary>
|
|
/// A type that uses Roslyn to compile C# content.
|
|
/// </summary>
|
|
public class RoslynCompilationService : ICompilationService
|
|
{
|
|
private readonly Lazy<bool> _supportsPdbGeneration = new Lazy<bool>(SymbolsUtility.SupportsSymbolsGeneration);
|
|
private readonly ConcurrentDictionary<string, AssemblyMetadata> _metadataFileCache =
|
|
new ConcurrentDictionary<string, AssemblyMetadata>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
|
private readonly IApplicationEnvironment _environment;
|
|
private readonly IAssemblyLoadContext _loader;
|
|
private readonly ICompilerOptionsProvider _compilerOptionsProvider;
|
|
private readonly IFileProvider _fileProvider;
|
|
private readonly Lazy<List<MetadataReference>> _applicationReferences;
|
|
private readonly string _classPrefix;
|
|
|
|
/// <summary>
|
|
/// Initalizes a new instance of the <see cref="RoslynCompilationService"/> class.
|
|
/// </summary>
|
|
/// <param name="environment">The environment for the executing application.</param>
|
|
/// <param name="loaderEngine">The loader used to load compiled assemblies.</param>
|
|
/// <param name="libraryManager">The library manager that provides export and reference information.</param>
|
|
/// <param name="host">The <see cref="IMvcRazorHost"/> that was used to generate the code.</param>
|
|
public RoslynCompilationService(IApplicationEnvironment environment,
|
|
IAssemblyLoadContextAccessor loaderAccessor,
|
|
ILibraryManager libraryManager,
|
|
ICompilerOptionsProvider compilerOptionsProvider,
|
|
IMvcRazorHost host,
|
|
IOptions<RazorViewEngineOptions> optionsAccessor)
|
|
{
|
|
_environment = environment;
|
|
_loader = loaderAccessor.GetLoadContext(typeof(RoslynCompilationService).GetTypeInfo().Assembly);
|
|
_libraryManager = libraryManager;
|
|
_applicationReferences = new Lazy<List<MetadataReference>>(GetApplicationReferences);
|
|
_compilerOptionsProvider = compilerOptionsProvider;
|
|
_fileProvider = optionsAccessor.Options.FileProvider;
|
|
_classPrefix = host.MainClassNamePrefix;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public CompilationResult Compile([NotNull] RelativeFileInfo fileInfo, [NotNull] string compilationContent)
|
|
{
|
|
var assemblyName = Path.GetRandomFileName();
|
|
var compilationSettings = _compilerOptionsProvider.GetCompilationSettings(_environment);
|
|
var syntaxTree = SyntaxTreeGenerator.Generate(compilationContent,
|
|
assemblyName,
|
|
compilationSettings);
|
|
var references = _applicationReferences.Value;
|
|
|
|
var compilationOptions = compilationSettings.CompilationOptions
|
|
.WithOutputKind(OutputKind.DynamicallyLinkedLibrary);
|
|
|
|
var compilation = CSharpCompilation.Create(assemblyName,
|
|
options: compilationOptions,
|
|
syntaxTrees: new[] { syntaxTree },
|
|
references: references);
|
|
|
|
using (var ms = new MemoryStream())
|
|
{
|
|
using (var pdb = new MemoryStream())
|
|
{
|
|
EmitResult result;
|
|
|
|
if (_supportsPdbGeneration.Value)
|
|
{
|
|
result = compilation.Emit(ms, pdbStream: pdb);
|
|
}
|
|
else
|
|
{
|
|
result = compilation.Emit(ms);
|
|
}
|
|
|
|
if (!result.Success)
|
|
{
|
|
return GetCompilationFailedResult(
|
|
fileInfo.RelativePath,
|
|
compilationContent,
|
|
assemblyName,
|
|
result.Diagnostics);
|
|
}
|
|
|
|
Assembly assembly;
|
|
ms.Seek(0, SeekOrigin.Begin);
|
|
|
|
if (_supportsPdbGeneration.Value)
|
|
{
|
|
pdb.Seek(0, SeekOrigin.Begin);
|
|
assembly = _loader.LoadStream(ms, pdb);
|
|
}
|
|
else
|
|
{
|
|
assembly = _loader.LoadStream(ms, assemblySymbols: null);
|
|
}
|
|
|
|
var type = assembly.GetExportedTypes()
|
|
.First(t => t.Name.StartsWith(_classPrefix, StringComparison.Ordinal));
|
|
|
|
return UncachedCompilationResult.Successful(type, compilationContent);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Internal for unit testing
|
|
internal CompilationResult GetCompilationFailedResult(
|
|
string relativePath,
|
|
string compilationContent,
|
|
string assemblyName,
|
|
IEnumerable<Diagnostic> diagnostics)
|
|
{
|
|
var diagnosticGroups = diagnostics
|
|
.Where(IsError)
|
|
.GroupBy(diagnostic => GetFilePath(relativePath, diagnostic), StringComparer.Ordinal);
|
|
|
|
var failures = new List<ICompilationFailure>();
|
|
foreach (var group in diagnosticGroups)
|
|
{
|
|
var sourceFilePath = group.Key;
|
|
string sourceFileContent;
|
|
if (string.Equals(assemblyName, sourceFilePath, StringComparison.Ordinal))
|
|
{
|
|
// The error is in the generated code and does not have a mapping line pragma
|
|
sourceFileContent = compilationContent;
|
|
sourceFilePath = Resources.GeneratedCodeFileName;
|
|
}
|
|
else
|
|
{
|
|
sourceFileContent = ReadFileContentsSafely(_fileProvider, sourceFilePath);
|
|
}
|
|
|
|
var compilationFailure = new RoslynCompilationFailure(group)
|
|
{
|
|
CompiledContent = compilationContent,
|
|
SourceFileContent = sourceFileContent,
|
|
SourceFilePath = sourceFilePath
|
|
};
|
|
|
|
failures.Add(compilationFailure);
|
|
}
|
|
|
|
return CompilationResult.Failed(failures);
|
|
}
|
|
|
|
private static string GetFilePath(string relativePath, Diagnostic diagnostic)
|
|
{
|
|
if (diagnostic.Location == Location.None)
|
|
{
|
|
return relativePath;
|
|
}
|
|
|
|
return diagnostic.Location.GetMappedLineSpan().Path;
|
|
}
|
|
|
|
private List<MetadataReference> GetApplicationReferences()
|
|
{
|
|
var references = new List<MetadataReference>();
|
|
|
|
// Get the MetadataReference for the executing application. If it's a Roslyn reference,
|
|
// we can copy the references created when compiling the application to the Razor page being compiled.
|
|
// This avoids performing expensive calls to MetadataReference.CreateFromImage.
|
|
var libraryExport = _libraryManager.GetLibraryExport(_environment.ApplicationName);
|
|
if (libraryExport?.MetadataReferences != null && libraryExport.MetadataReferences.Count > 0)
|
|
{
|
|
Debug.Assert(libraryExport.MetadataReferences.Count == 1,
|
|
"Expected 1 MetadataReferences, found " + libraryExport.MetadataReferences.Count);
|
|
var roslynReference = libraryExport.MetadataReferences[0] as IRoslynMetadataReference;
|
|
var compilationReference = roslynReference?.MetadataReference as CompilationReference;
|
|
if (compilationReference != null)
|
|
{
|
|
references.AddRange(compilationReference.Compilation.References);
|
|
references.Add(roslynReference.MetadataReference);
|
|
return references;
|
|
}
|
|
}
|
|
|
|
var export = _libraryManager.GetAllExports(_environment.ApplicationName);
|
|
foreach (var metadataReference in export.MetadataReferences)
|
|
{
|
|
// Taken from https://github.com/aspnet/KRuntime/blob/757ba9bfdf80bd6277e715d6375969a7f44370ee/src/...
|
|
// Microsoft.Framework.Runtime.Roslyn/RoslynCompiler.cs#L164
|
|
// We don't want to take a dependency on the Roslyn bit directly since it pulls in more dependencies
|
|
// than the view engine needs (Microsoft.Framework.Runtime) for example
|
|
references.Add(ConvertMetadataReference(metadataReference));
|
|
}
|
|
|
|
return references;
|
|
}
|
|
|
|
private MetadataReference ConvertMetadataReference(IMetadataReference metadataReference)
|
|
{
|
|
var roslynReference = metadataReference as IRoslynMetadataReference;
|
|
|
|
if (roslynReference != null)
|
|
{
|
|
return roslynReference.MetadataReference;
|
|
}
|
|
|
|
var embeddedReference = metadataReference as IMetadataEmbeddedReference;
|
|
|
|
if (embeddedReference != null)
|
|
{
|
|
return MetadataReference.CreateFromImage(embeddedReference.Contents);
|
|
}
|
|
|
|
var fileMetadataReference = metadataReference as IMetadataFileReference;
|
|
|
|
if (fileMetadataReference != null)
|
|
{
|
|
return CreateMetadataFileReference(fileMetadataReference.Path);
|
|
}
|
|
|
|
var projectReference = metadataReference as IMetadataProjectReference;
|
|
if (projectReference != null)
|
|
{
|
|
using (var ms = new MemoryStream())
|
|
{
|
|
projectReference.EmitReferenceAssembly(ms);
|
|
|
|
return MetadataReference.CreateFromImage(ms.ToArray());
|
|
}
|
|
}
|
|
|
|
throw new NotSupportedException();
|
|
}
|
|
|
|
private MetadataReference CreateMetadataFileReference(string path)
|
|
{
|
|
var metadata = _metadataFileCache.GetOrAdd(path, _ =>
|
|
{
|
|
using (var stream = File.OpenRead(path))
|
|
{
|
|
var moduleMetadata = ModuleMetadata.CreateFromStream(stream, PEStreamOptions.PrefetchMetadata);
|
|
return AssemblyMetadata.Create(moduleMetadata);
|
|
}
|
|
});
|
|
|
|
return metadata.GetReference();
|
|
}
|
|
|
|
private static bool IsError(Diagnostic diagnostic)
|
|
{
|
|
return diagnostic.IsWarningAsError || diagnostic.Severity == DiagnosticSeverity.Error;
|
|
}
|
|
|
|
private static string ReadFileContentsSafely(IFileProvider fileProvider, string filePath)
|
|
{
|
|
var fileInfo = fileProvider.GetFileInfo(filePath);
|
|
if (fileInfo.Exists)
|
|
{
|
|
try
|
|
{
|
|
using (var reader = new StreamReader(fileInfo.CreateReadStream()))
|
|
{
|
|
return reader.ReadToEnd();
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
// Ignore any failures
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|