-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathReport.Async.cs
117 lines (102 loc) · 3.38 KB
/
Report.Async.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
using FastReport.Code;
using FastReport.Engine;
using FastReport.Utils;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;
namespace FastReport
{
public partial class Report
{
#region Script related
internal async Task CompileAsync(CancellationToken token)
{
FillDataSourceCache();
#if REFLECTION_EMIT_COMPILER
if (Config.CompilerSettings.ReflectionEmitCompiler)
{
SetIsCompileNeeded();
if (!IsCompileNeeded)
return;
}
#endif
if (needCompile)
{
AssemblyDescriptor descriptor = new AssemblyDescriptor(this, ScriptText);
assemblies.Clear();
assemblies.Add(descriptor);
descriptor.AddObjects();
descriptor.AddExpressions();
descriptor.AddFunctions();
await descriptor.CompileAsync(token);
}
else
{
InternalInit();
}
}
/// <summary>
/// Prepares the report asynchronously.
/// </summary>
/// <param name="token">Cancellation token</param>
/// <returns><b>true</b> if report was prepared successfully.</returns>
public Task<bool> PrepareAsync(CancellationToken token = default)
{
return PrepareAsync(false, token);
}
public Task<bool> PrepareAsync(bool append, CancellationToken token = default)
{
return PrepareAsync(append, true, token);
}
public async Task<bool> PrepareAsync(bool append, bool resetDataState, CancellationToken token = default)
{
SetRunning(true);
try
{
if (PreparedPages == null || !append)
{
ClearPreparedPages();
SetPreparedPages(new Preview.PreparedPages(this));
}
engine = new ReportEngine(this);
if (!Config.WebMode)
StartPerformanceCounter();
try
{
await CompileAsync(token).ConfigureAwait(false);
isParameterChanged = false;
return await Engine.RunAsync(true, append, resetDataState, token);
}
finally
{
if (!Config.WebMode)
StopPerformanceCounter();
}
}
finally
{
SetRunning(false);
}
}
/// <summary>
/// For internal use only.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public async Task PreparePhase1Async(CancellationToken cancellationToken)
{
bool webDialog = false;
SetRunning(true);
if (preparedPages != null)
{
// if prepared pages are set before => it's call method again => it's web dialog
webDialog = true;
preparedPages.Clear();
}
SetPreparedPages(new Preview.PreparedPages(this));
engine = new ReportEngine(this);
await CompileAsync(cancellationToken);
Engine.RunPhase1(true, webDialog);
}
#endregion Public Methods
}
}