forked from sebastienros/fluid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FluidTemplateExtensions.cs
95 lines (82 loc) · 3.28 KB
/
FluidTemplateExtensions.cs
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
88
89
90
91
92
93
94
95
using Fluid.Utils;
using System.IO;
using System.Runtime.CompilerServices;
using System.Text.Encodings.Web;
using System.Threading.Tasks;
namespace Fluid
{
public static class FluidTemplateExtensions
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static ValueTask<string> RenderAsync(this IFluidTemplate template, TemplateContext context)
{
return template.RenderAsync(context, NullEncoder.Default);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static string Render(this IFluidTemplate template, TemplateContext context, TextEncoder encoder)
{
var task = template.RenderAsync(context, encoder);
return task.IsCompletedSuccessfully ? task.Result : task.AsTask().GetAwaiter().GetResult();
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static void Render(this IFluidTemplate template, TemplateContext context, TextEncoder encoder, TextWriter writer)
{
var task = template.RenderAsync(writer, encoder, context);
if (!task.IsCompletedSuccessfully)
{
task.AsTask().GetAwaiter().GetResult();
}
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static async ValueTask<string> RenderAsync(this IFluidTemplate template, TemplateContext context, TextEncoder encoder, bool isolateContext = true)
{
if (context == null)
{
ExceptionHelper.ThrowArgumentNullException(nameof(context));
}
if (template == null)
{
ExceptionHelper.ThrowArgumentNullException(nameof(template));
}
var sb = StringBuilderPool.GetInstance();
var writer = new StringWriter(sb.Builder);
// A template is evaluated in a child scope such that the provided TemplateContext is immutable
if (isolateContext)
{
context.EnterChildScope();
}
try
{
await template.RenderAsync(writer, encoder, context);
writer.Flush();
return sb.ToString();
}
finally
{
sb.Dispose();
writer.Dispose();
if (isolateContext)
{
context.ReleaseScope();
}
}
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static string Render(this IFluidTemplate template, TemplateContext context)
{
var task = template.RenderAsync(context);
return task.IsCompletedSuccessfully ? task.Result : task.AsTask().GetAwaiter().GetResult();
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static ValueTask<string> RenderAsync(this IFluidTemplate template)
{
return template.RenderAsync(new TemplateContext());
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static string Render(this IFluidTemplate template)
{
var task = template.RenderAsync();
return task.IsCompletedSuccessfully ? task.Result : task.AsTask().GetAwaiter().GetResult();
}
}
}