-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileExtensions.cs
295 lines (251 loc) · 11.8 KB
/
FileExtensions.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
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
//
// Licensed to Roland Pihlakas under one or more agreements.
// Roland Pihlakas licenses this file to you under the GNU Lesser General Public License, ver 2.1.
// See the LICENSE and copyrights.txt files for more information.
//
#define ASYNC
using System;
#if NETSTANDARD
using System.Buffers;
#endif
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace AsyncToSyncCodeRoundtripSynchroniserMonitor
{
public static partial class FileExtensions
{
public static long MaxStringSize = 0x3FFFFFDF; //https://stackoverflow.com/questions/140468/what-is-the-maximum-possible-length-of-a-net-string
//adapted from https://github.com/dotnet/runtime/blob/5ddc873d9ea6cd4bc6a935fec3057fe89a6932aa/src/libraries/System.IO.FileSystem/src/System/IO/File.cs
//internal const int DefaultBufferSize = 4096;
internal const int DefaultBufferSize = 1024 * 1024; //roland
private static Encoding s_UTF8NoBOM;
// UTF-8 without BOM and with error detection. Same as the default encoding for StreamWriter.
private static Encoding UTF8NoBOM => s_UTF8NoBOM ?? (s_UTF8NoBOM = new UTF8Encoding(encoderShouldEmitUTF8Identifier: false, throwOnInvalidBytes: true));
// If we use the path-taking constructors we will not have FileOptions.Asynchronous set and
// we will have asynchronous file access faked by the thread pool. We want the real thing.
private static StreamReader AsyncStreamReader(string path, Encoding encoding)
{
FileStream stream = new FileStream(
path, FileMode.Open, FileAccess.Read, FileShare.Read, DefaultBufferSize,
FileOptions.Asynchronous | FileOptions.SequentialScan);
return new StreamReader(stream, encoding, detectEncodingFromByteOrderMarks: true);
}
public static Task<string> ReadAllTextAsync(string path, CancellationToken cancellationToken = default(CancellationToken), long maxFileSize = 0, int retryCount = 0)
=> ReadAllTextAsync(path, UTF8NoBOM, cancellationToken, maxFileSize, retryCount);
public static async Task<string> ReadAllTextAsync(string path, Encoding encoding, CancellationToken cancellationToken = default(CancellationToken), long maxFileSize = 0, int retryCount = 0)
{
if (path == null)
throw new ArgumentNullException(nameof(path));
if (encoding == null)
throw new ArgumentNullException(nameof(encoding));
if (path.Length == 0)
throw new ArgumentException("Argument_EmptyPath: {0}", nameof(path));
retryCount = Math.Max(0, retryCount);
for (int tryIndex = -1; tryIndex < retryCount; tryIndex++) //roland
{
try //roland
{
return cancellationToken.IsCancellationRequested
? await Task.FromCanceled<string>(cancellationToken)
: await InternalReadAllTextAsync(path, encoding, cancellationToken, maxFileSize);
}
catch (Exception ex) when ( //roland
ex is IOException
|| ex is UnauthorizedAccessException //can happen when a folder was just created //TODO: abandon retries after a certain number of attempts in this case
)
{
//retry after delay
if (tryIndex + 1 < retryCount) //do not sleep after last try
{
#if !NOASYNC
await Task.Delay(1000, cancellationToken); //TODO: config file?
#else
cancellationToken.WaitHandle.WaitOne(1000);
#endif
}
}
}
return null;
}
private static async Task<string> InternalReadAllTextAsync(string path, Encoding encoding, CancellationToken cancellationToken, long maxFileSize = 0)
{
Debug.Assert(!string.IsNullOrEmpty(path));
Debug.Assert(encoding != null);
char[] buffer = null;
StreamReader sr = AsyncStreamReader(path, encoding);
try
{
cancellationToken.ThrowIfCancellationRequested();
if (maxFileSize > 0)
{
long len = sr.BaseStream.Length; //NB! the length might change during the code execution, so need to save it into separate variable
maxFileSize = Math.Min(MaxStringSize * sizeof(char), maxFileSize);
if (len > maxFileSize)
{
return null; //TODO: return file size so that error message can report it
}
}
#if NETSTANDARD
buffer = ArrayPool<char>.Shared.Rent(sr.CurrentEncoding.GetMaxCharCount(DefaultBufferSize));
#else
buffer = new char[sr.CurrentEncoding.GetMaxCharCount(DefaultBufferSize)];
#endif
StringBuilder sb = new StringBuilder();
while (true)
{
int read = await sr.ReadAsync(buffer, 0, buffer.Length); //TODO: add cancellationToken here?
if (read == 0)
{
return sb.ToString();
}
sb.Append(buffer, 0, read);
}
}
finally
{
sr.Dispose();
#if NETSTANDARD
if (buffer != null)
{
ArrayPool<char>.Shared.Return(buffer);
}
#endif
}
}
private static StreamWriter AsyncStreamWriter(string path, Encoding encoding, bool append)
{
FileStream stream = new FileStream(
path, append ? FileMode.Append : FileMode.Create, FileAccess.Write, FileShare.Read, DefaultBufferSize,
FileOptions.Asynchronous | FileOptions.SequentialScan);
return new StreamWriter(stream, encoding);
}
public static Task WriteAllTextAsync(string path, string contents, bool createTempFileFirst, CancellationToken cancellationToken = default(CancellationToken))
=> WriteAllTextAsync(path, contents, UTF8NoBOM, createTempFileFirst, cancellationToken);
public static async Task WriteAllTextAsync(string path, string contents, Encoding encoding, bool createTempFileFirst, CancellationToken cancellationToken = default(CancellationToken))
{
if (path == null)
throw new ArgumentNullException(nameof(path));
if (encoding == null)
throw new ArgumentNullException(nameof(encoding));
if (path.Length == 0)
throw new ArgumentException("Argument_EmptyPath: {0}", nameof(path));
var tempPath = path;
if (createTempFileFirst)
tempPath += ".tmp";
while (true) //roland
{
try //roland
{
cancellationToken.ThrowIfCancellationRequested();
//if (cancellationToken.IsCancellationRequested)
//{
// return Task.FromCanceled(cancellationToken);
//}
if (string.IsNullOrEmpty(contents))
{
new FileStream(tempPath, FileMode.Create, FileAccess.Write, FileShare.Read).Dispose();
}
else
{
await InternalWriteAllTextAsync(AsyncStreamWriter(tempPath, encoding, append: false), contents, cancellationToken);
}
if (createTempFileFirst)
{
if (await Extensions.FSOperation(() => File.Exists(path), cancellationToken))
{
#pragma warning disable SEC0116 //Warning SEC0116 Unvalidated file paths are passed to a file delete API, which can allow unauthorized file system operations (e.g. read, write, delete) to be performed on unintended server files.
await Extensions.FSOperation(() => File.Delete(path), cancellationToken);
#pragma warning restore SEC0116
}
await Extensions.FSOperation(() => File.Move(tempPath, path), cancellationToken);
}
return; //exit while loop
}
catch (IOException) //roland
{
//retry after delay
#if !NOASYNC
await Task.Delay(1000, cancellationToken); //TODO: config file?
#else
cancellationToken.WaitHandle.WaitOne(1000);
#endif
}
}
}
private static async Task InternalWriteAllTextAsync(StreamWriter sw, string contents, CancellationToken cancellationToken)
{
char[] buffer = null;
try
{
#if NETSTANDARD
buffer = ArrayPool<char>.Shared.Rent(DefaultBufferSize);
#else
buffer = new char[DefaultBufferSize];
#endif
int count = contents.Length;
int sourceOffset = 0;
while (sourceOffset < count)
{
int batchSize = Math.Min(DefaultBufferSize, count - sourceOffset);
contents.CopyTo(sourceOffset, buffer, 0, batchSize);
await sw.WriteAsync(buffer, 0, batchSize); //TODO: add cancellationToken here?
sourceOffset += batchSize;
}
cancellationToken.ThrowIfCancellationRequested();
await sw.FlushAsync(); //TODO: add cancellationToken here?
}
finally
{
sw.Dispose();
#if NETSTANDARD
if (buffer != null)
{
ArrayPool<char>.Shared.Return(buffer);
}
#endif
}
}
public static Task AppendAllTextAsync(string path, string contents, CancellationToken cancellationToken = default(CancellationToken))
=> AppendAllTextAsync(path, contents, UTF8NoBOM, cancellationToken);
public static async Task AppendAllTextAsync(string path, string contents, Encoding encoding, CancellationToken cancellationToken = default(CancellationToken))
{
if (path == null)
throw new ArgumentNullException(nameof(path));
if (encoding == null)
throw new ArgumentNullException(nameof(encoding));
if (path.Length == 0)
throw new ArgumentException("Argument_EmptyPath", nameof(path));
while (true) //roland
{
try //roland
{
cancellationToken.ThrowIfCancellationRequested();
//if (cancellationToken.IsCancellationRequested)
//{
// return Task.FromCanceled(cancellationToken);
//}
if (string.IsNullOrEmpty(contents))
{
// Just to throw exception if there is a problem opening the file.
new FileStream(path, FileMode.Append, FileAccess.Write, FileShare.Read).Dispose();
return; // Task.CompletedTask;
}
await InternalWriteAllTextAsync(AsyncStreamWriter(path, encoding, append: true), contents, cancellationToken);
return;
}
catch (IOException) //roland
{
//retry after delay
#if !NOASYNC
await Task.Delay(1000, cancellationToken); //TODO: config file?
#else
cancellationToken.WaitHandle.WaitOne(1000);
#endif
}
}
}
}
}