-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIHost.cs
234 lines (215 loc) · 6.62 KB
/
IHost.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// ReSharper disable UnusedMember.Global
// ReSharper disable UnusedMemberInSuper.Global
namespace HostApi;
using System.Diagnostics.Contracts;
/// <summary>
/// An abstraction for API host.
/// <example>
/// <code>
/// var host = GetService<IHost>();
/// host.WriteLine("Hello!");
/// </code>
/// </example>
/// </summary>
public interface IHost
{
/// <summary>
/// List of command line arguments.
/// <example>
/// <code>
/// Info("First argument: " + (Args.Count > 0 ? Args[0] : "empty"));
/// </code>
/// </example>
/// </summary>
IReadOnlyList<string> Args { get; }
/// <summary>
/// Set of properties.
/// <example>
/// <code>
/// Info("Version: " + Props.Get("version", "1.0.0"));
/// Props["version"] = "1.0.1";
/// </code>
/// </example>
/// </summary>
/// <seealso cref="IProperties"/>
/// <seealso cref="IProperties.TryGetValue"/>
/// <seealso cref="IProperties.this"/>
IProperties Props { get; }
/// <summary>
/// Writes an empty line to stdOut.
/// <example>
/// <code>
/// WriteLine("Hello");
/// </code>
/// </example>
/// </summary>
void WriteLine();
/// <summary>
/// Writes a line to stdOut.
/// <example>
/// <code>
/// WriteLine("Hello !");
/// WriteLine("Hello !!!", Color.Highlighted);
/// </code>
/// </example>
/// </summary>
/// <param name="line">Any value that will be converted to a line.</param>
/// <param name="color">Line color, optional.</param>
/// <typeparam name="T">The type of the value to be converted to a line.</typeparam>
void WriteLine<T>(T line, Color color = Color.Default);
/// <summary>
/// Writes a line to stdOut.
/// <example>
/// <code>
/// WriteLine("Hello !".WithColor(Color.Highlighted));
/// </code>
/// </example>
/// </summary>
/// <param name="line">Any value that will be converted to a line.</param>
void WriteLine(params Text[] line);
/// <summary>
/// Writes an error to stdErr. This error will affect the summary run statistics.
/// <example>
/// <code>
/// Error("Error details");
/// Error("Error details", "ERR327");
/// </code>
/// </example>
/// </summary>
/// <param name="error">Error message.</param>
/// <param name="errorId">Unique error identifier, optional.</param>
void Error(string? error, string? errorId = null);
/// <summary>
/// Writes an error to stdErr. This error will affect the summary run statistics.
/// <example>
/// <code>
/// Error(new Text("Some "), new Text("error", Color.Error));
/// </code>
/// </example>
/// </summary>
/// <param name="error">Error message.</param>
void Error(params Text[] error);
/// <summary>
/// Writes an error to stdErr. This error will affect the summary run statistics.
/// <example>
/// <code>
/// Error("ERR327", new Text("Some "), new Text("error", Color.Error));
/// </code>
/// </example>
/// </summary>
/// <param name="errorId">Unique error identifier, optional.</param>
/// <param name="error">Error message.</param>
void Error(string errorId, params Text[] error);
/// <summary>
/// Writes a warning to stdOut. This warning will affect the summary run statistics.
/// <example>
/// <code>
/// Warning("Warning");
/// </code>
/// </example>
/// </summary>
/// <param name="warning">Warning message.</param>
void Warning(string? warning);
/// <summary>
/// Writes a warning to stdOut. This warning will affect the summary run statistics.
/// <example>
/// <code>
/// Warning(new Text("Some "), new Text("warning", Color.Warning));
/// </code>
/// </example>
/// </summary>
/// <param name="warning">Warning message.</param>
void Warning(params Text[] warning);
/// <summary>
/// Writes a summary message to stdOut.
/// <example>
/// <code>
/// Info("Some summary");
/// </code>
/// </example>
/// </summary>
/// <param name="summary">Summary message.</param>
void Summary(string? summary);
/// <summary>
/// Writes a summary message to stdOut.
/// <example>
/// <code>
/// Summary(new Text("Some "), new Text("summary", Color.Highlighted));
/// </code>
/// </example>
/// </summary>
/// <param name="summary">Summary message.</param>
void Summary(params Text[] summary);
/// <summary>
/// Writes an information message to stdOut.
/// <example>
/// <code>
/// Info("Some info");
/// </code>
/// </example>
/// </summary>
/// <param name="text">Information message.</param>
void Info(string? text);
/// <summary>
/// Writes an information message to stdOut.
/// <example>
/// <code>
/// Ingo(new Text("Some "), new Text("info", Color.Highlighted));
/// </code>
/// </example>
/// </summary>
/// <param name="text">Information message.</param>
void Info(params Text[] text);
/// <summary>
/// Writes a trace message to stdOut for the appropriate logging level.
/// <example>
/// <code>
/// Trace("Trace message");
/// </code>
/// </example>
/// <example>
/// When run as a script:
/// <code>
/// #l Diagnostic
/// Trace("Tracing details.");
/// </code>
/// </example>
/// </summary>
/// <param name="trace">Trace message.</param>
/// <param name="origin">Source of the trace message, optional.</param>
void Trace(string? trace, string? origin = null);
/// <summary>
/// Writes a trace message to stdOut for the appropriate logging level.
/// <example>
/// <code>
/// Trace(new Text("Trace message", Color.Details));
/// </code>
/// </example>
/// <example>
/// When run as a script:
/// <code>
/// #l Diagnostic
/// Trace("Tracing ", "details".WithColor(Color.Details));
/// </code>
/// </example>
/// </summary>
/// <param name="trace">Trace message.</param>
void Trace(params Text[] trace);
/// <summary>
/// Provides an instance of a service by its type.
/// <example>
/// <code>
/// var nuget = GetService<INuGet>();
/// </code>
/// </example>
/// </summary>
/// <typeparam name="T">Type of service.</typeparam>
/// <returns>Service instance.</returns>
/// <seealso cref="IHost"/>
/// <seealso cref="ICommandLineRunner"/>
/// <seealso cref="IBuildRunner"/>
/// <seealso cref="INuGet"/>
/// <seealso cref="IServiceProvider"/>
[Pure]
T GetService<T>();
}