forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSharpRazorBuildProvider.cs
More file actions
87 lines (73 loc) · 3.17 KB
/
Copy pathCSharpRazorBuildProvider.cs
File metadata and controls
87 lines (73 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//Orignally from: https://github.com/NancyFx/Nancy/blob/master/src/Nancy.ViewEngines.Razor.BuildProviders/NancyCSharpRazorBuildProvider.cs
using System;
using System.CodeDom;
using System.CodeDom.Compiler;
using System.Globalization;
using System.Web.Compilation;
using System.Web.Razor;
namespace ServiceStack.Razor
{
[BuildProviderAppliesTo(BuildProviderAppliesTo.Code | BuildProviderAppliesTo.Web)]
public class CSharpRazorBuildProvider : BuildProvider
{
private readonly RazorEngineHost host;
private readonly CompilerType compilerType;
private CodeCompileUnit generatedCode;
/// <summary>
/// Initializes a new instance of the <see cref="CSharpRazorBuildProvider"/> class.
/// </summary>
public CSharpRazorBuildProvider()
{
this.compilerType = this.GetDefaultCompilerTypeForLanguage("C#");
this.host = new RazorEngineHost(new CSharpRazorCodeLanguage()) {
DefaultBaseClass = typeof(ViewPageRef).FullName,
DefaultNamespace = "RazorOutput",
DefaultClassName = "ViewPage"
};
}
/// <summary>
/// Represents the compiler type used by a build provider to generate source code for a custom file type.
/// </summary>
/// <returns>A read-only <see cref="T:System.Web.Compilation.CompilerType"/> representing the code generator, code compiler, and compiler settings used to build source code for the virtual path. The base class returns null.</returns>
public override CompilerType CodeCompilerType
{
get { return this.compilerType; }
}
/// <summary>
/// Generates source code for the virtual path of the build provider, and adds the source code to a specified assembly builder.
/// </summary>
/// <param name="assemblyBuilder">The assembly builder that references the source code generated by the build provider.</param>
public override void GenerateCode(AssemblyBuilder assemblyBuilder)
{
assemblyBuilder.AddCodeCompileUnit(this, this.GetGeneratedCode());
assemblyBuilder.GenerateTypeFactory(string.Format(CultureInfo.InvariantCulture, "{0}.{1}", new object[] { this.host.DefaultNamespace, this.host.DefaultClassName }));
}
/// <summary>
/// Returns a type generated by the build provider from the virtual path.
/// </summary>
/// <returns>The type that is generated by the build provider for the virtual path. The base class returns null.</returns>
/// <param name="results">The compilation results for the build provider's virtual path.</param>
public override Type GetGeneratedType(CompilerResults results)
{
return results.CompiledAssembly.GetType(string.Format(CultureInfo.CurrentCulture, "{0}.{1}", new object[] { this.host.DefaultNamespace, this.host.DefaultClassName }));
}
private CodeCompileUnit GetGeneratedCode()
{
if (this.generatedCode == null)
{
var engine = new RazorTemplateEngine(this.host);
GeneratorResults results;
using (var reader = this.OpenReader())
{
results = engine.GenerateCode(reader);
}
if (!results.Success)
{
throw new InvalidOperationException(results.ToString());
}
this.generatedCode = results.GeneratedCode;
}
return this.generatedCode;
}
}
}