-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathConsoleIn.cs
More file actions
267 lines (243 loc) · 10.4 KB
/
ConsoleIn.cs
File metadata and controls
267 lines (243 loc) · 10.4 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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
using System;
using System.Threading.Tasks;
using Waher.Runtime.Console.Worker;
namespace Waher.Runtime.Console
{
/// <summary>
/// Serializes input from <see cref="System.Console.In"/>, and assures modules are not dead-locked in case the Console gets locked by
/// the user.
/// </summary>
public static class ConsoleIn
{
/// <summary>
/// Reads the next character without changing the state of the reader or the character
/// source. Returns the next available character without actually reading it from
/// the reader.
/// </summary>
/// <returns>An integer representing the next character to be read, or -1 if no more characters
/// are available or the reader does not support seeking.</returns>
public static int Peek()
{
return PeekAsync().Result;
}
/// <summary>
/// Reads the next character without changing the state of the reader or the character
/// source. Returns the next available character without actually reading it from
/// the reader.
/// </summary>
/// <returns>An integer representing the next character to be read, or -1 if no more characters
/// are available or the reader does not support seeking.</returns>
public static async Task<int> PeekAsync()
{
TaskCompletionSource<int> Result = new TaskCompletionSource<int>();
if (await ConsoleWorker.Forward(new ConsoleInPeekCharacter(Result)))
return await Result.Task;
else
return -1;
}
/// <summary>
/// Reads the next character from the text reader and advances the character position by one character.
/// </summary>
/// <returns>The next character from the text reader, or -1 if no more characters are available.
/// The default implementation returns -1.</returns>
public static int Read()
{
return ReadAsync().Result;
}
/// <summary>
/// Reads the next character from the text reader and advances the character position by one character.
/// </summary>
/// <returns>The next character from the text reader, or -1 if no more characters are available.
/// The default implementation returns -1.</returns>
public static async Task<int> ReadAsync()
{
TaskCompletionSource<int> Result = new TaskCompletionSource<int>();
if (await ConsoleWorker.Forward(new ConsoleInReadCharacter(Result)))
return await Result.Task;
else
return -1;
}
/// <summary>
/// Reads a specified maximum number of characters from the current reader and writes
/// the data to a buffer, beginning at the specified index.
/// </summary>
/// <param name="buffer">When this method returns, contains the specified character array with the values
/// between index and (index + count - 1) replaced by the characters read from the
/// current source.</param>
/// <param name="index">The position in buffer at which to begin writing.</param>
/// <param name="count">The maximum number of characters to read. If the end of the reader is reached
/// before the specified number of characters is read into the buffer, the method
/// returns.</param>
/// <returns>The number of characters that have been read. The number will be less than or
/// equal to count, depending on whether the data is available within the reader.
/// This method returns 0 (zero) if it is called when no more characters are left
/// to read.</returns>
public static int Read(char[] buffer, int index, int count)
{
return ReadAsync(buffer, index, count).Result;
}
/// <summary>
/// Reads a specified maximum number of characters from the current text reader asynchronously
/// and writes the data to a buffer, beginning at the specified index.
/// </summary>
/// <param name="buffer">When this method returns, contains the specified character array with the values
/// between index and (index + count - 1) replaced by the characters read from the
/// current source.</param>
/// <param name="index">The position in buffer at which to begin writing.</param>
/// <param name="count">The maximum number of characters to read. If the end of the text is reached before
/// the specified number of characters is read into the buffer, the current method
/// returns.</param>
/// <returns>A task that represents the asynchronous read operation. The value of the TResult
/// parameter contains the total number of bytes read into the buffer. The result
/// value can be less than the number of bytes requested if the number of bytes currently
/// available is less than the requested number, or it can be 0 (zero) if the end
/// of the text has been reached.</returns>
public static async Task<int> ReadAsync(char[] buffer, int index, int count)
{
CheckArguments(buffer, index, count);
TaskCompletionSource<int> Result = new TaskCompletionSource<int>();
if (await ConsoleWorker.Forward(new ConsoleInRead(buffer, index, count, Result)))
return await Result.Task;
else
return 0;
}
private static void CheckArguments(Array buffer, int index, int count)
{
if (buffer is null)
throw new ArgumentNullException(nameof(buffer));
if (index < 0)
throw new ArgumentOutOfRangeException(nameof(index));
if (count < 0)
throw new ArgumentOutOfRangeException(nameof(count));
if (index > buffer.Length)
throw new ArgumentException(nameof(index));
if (index + count > buffer.Length)
throw new ArgumentException(nameof(count));
}
/// <summary>
/// Reads a specified maximum number of characters from the current text reader and
/// writes the data to a buffer, beginning at the specified index.
/// </summary>
/// <param name="buffer">When this method returns, this parameter contains the specified character array
/// with the values between index and (index + count -1) replaced by the characters
/// read from the current source.</param>
/// <param name="index">The position in buffer at which to begin writing.</param>
/// <param name="count">The maximum number of characters to read.</param>
/// <returns>The number of characters that have been read. The number will be less than or
/// equal to count, depending on whether all input characters have been read.</returns>
public static int ReadBlock(char[] buffer, int index, int count)
{
return ReadBlockAsync(buffer, index, count).Result;
}
/// <summary>
/// Reads a specified maximum number of characters from the current text reader asynchronously
/// and writes the data to a buffer, beginning at the specified index.
/// </summary>
/// <param name="buffer">
/// When this method returns, contains the specified character array with the values
/// between index and (index + count - 1) replaced by the characters read from the
/// current source.
/// </param>
/// <param name="index">The position in buffer at which to begin writing.</param>
/// <param name="count">The maximum number of characters to read. If the end of the text is reached before
/// the specified number of characters is read into the buffer, the current method
/// returns.</param>
/// <returns>A task that represents the asynchronous read operation. The value of the TResult
/// parameter contains the total number of bytes read into the buffer. The result
/// value can be less than the number of bytes requested if the number of bytes currently
/// available is less than the requested number, or it can be 0 (zero) if the end
/// of the text has been reached.</returns>
public static async Task<int> ReadBlockAsync(char[] buffer, int index, int count)
{
CheckArguments(buffer, index, count);
TaskCompletionSource<int> Result = new TaskCompletionSource<int>();
if (await ConsoleWorker.Forward(new ConsoleInReadBlock(buffer, index, count, Result)))
return await Result.Task;
else
return 0;
}
/// <summary>
/// Reads a line of characters from the text reader and returns the data as a string.
/// </summary>
/// <returns>The next line from the reader, or null if all characters have been read.</returns>
public static string ReadLine()
{
return ReadLineAsync().Result;
}
/// <summary>
/// Reads a line of characters asynchronously and returns the data as a string.
/// </summary>
/// <returns>A task that represents the asynchronous read operation. The value of the TResult
/// parameter contains the next line from the text reader, or is null if all of the
/// characters have been read.</returns>
public static async Task<string> ReadLineAsync()
{
TaskCompletionSource<string> Result = new TaskCompletionSource<string>();
if (await ConsoleWorker.Forward(new ConsoleInReadLine(Result)))
return await Result.Task;
else
return null;
}
/// <summary>
/// Reads all characters from the current position to the end of the text reader
/// and returns them as one string.
/// </summary>
/// <returns>A string that contains all characters from the current position to the end of
/// the text reader.</returns>
public static string ReadToEnd()
{
return ReadToEndAsync().Result;
}
/// <summary>
/// Reads all characters from the current position to the end of the text reader
/// asynchronously and returns them as one string.
/// </summary>
/// <returns>A task that represents the asynchronous read operation. The value of the TResult
/// parameter contains a string with the characters from the current position to
/// the end of the text reader.</returns>
public static async Task<string> ReadToEndAsync()
{
TaskCompletionSource<string> Result = new TaskCompletionSource<string>();
if (await ConsoleWorker.Forward(new ConsoleInReadToEnd(Result)))
return await Result.Task;
else
return string.Empty;
}
/// <summary>
/// Reads a key press
/// </summary>
/// <returns>Key information</returns>
public static ConsoleKeyInfo ReadKey()
{
return ReadKeyAsync().Result;
}
/// <summary>
/// Reads a key press
/// </summary>
/// <returns>Key information</returns>
public static ConsoleKeyInfo ReadKey(bool intercept)
{
return ReadKeyAsync(intercept).Result;
}
/// <summary>
/// Reads a key press
/// </summary>
/// <returns>Key information</returns>
public static Task<ConsoleKeyInfo> ReadKeyAsync()
{
return ReadKeyAsync(false);
}
/// <summary>
/// Reads a key press
/// </summary>
/// <returns>Key information</returns>
public static async Task<ConsoleKeyInfo> ReadKeyAsync(bool intercept)
{
TaskCompletionSource<ConsoleKeyInfo> Result = new TaskCompletionSource<ConsoleKeyInfo>();
if (await ConsoleWorker.Forward(new ConsoleInReadKey(intercept, Result)))
return await Result.Task;
else
return new ConsoleKeyInfo();
}
}
}