-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNewLineNormalizer.cs
More file actions
176 lines (146 loc) · 4.42 KB
/
Copy pathNewLineNormalizer.cs
File metadata and controls
176 lines (146 loc) · 4.42 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
namespace LineEndingNormalizer;
/// <summary>
/// Detects encodings and normalizes line endings while preserving
/// encoding and file metadata.
/// </summary>
internal static class NewLineNormalizer
{
private const int BufferSize = 65536;
#region Public API
/// <summary>
/// Normalizes a file's line endings while preserving encoding and BOM.
/// </summary>
public static NormalizeResult NormalizeFile(
string path,
LineEnding target,
bool whatIf,
bool backup = false,
CancellationToken cancellationToken = default)
{
return NormalizeFile(
path,
target,
whatIf,
backup,
out _,
cancellationToken);
}
/// <summary>
/// Normalizes a file and optionally returns its original detection result.
/// </summary>
/// <param name="detected">
/// Null when encoding detection fails; otherwise the detection result from
/// the same scan used for the normalization decision.
/// </param>
internal static NormalizeResult NormalizeFile(
string path,
LineEnding target,
bool whatIf,
bool backup,
out DetectResult? detected,
CancellationToken cancellationToken = default)
{
ArgumentNullException.ThrowIfNull(path);
if (!File.Exists(path))
{
throw new FileNotFoundException(
"File not found.",
path);
}
// Keep one source stream through scan and conversion: this avoids a
// redundant open and narrows the window for an external change
// between detection and the write that follows it.
using FileStream source =
OpenSourceStream(path);
ScanEngine.ScanResult? scan =
ScanEngine.Scan(
source,
target,
cancellationToken);
detected =
scan?.Detection;
if (scan == null)
{
return NormalizeResult.EncodingNotDetected;
}
if (!scan.RequiresConversion)
{
return NormalizeResult.Unchanged;
}
if (whatIf)
{
return NormalizeResult.Converted;
}
FileMetadata metadata =
CaptureMetadata(path);
// Conversion and replacement safeguards remain in ConvertFile.
LosslessFileWriter.ConvertFile(
source,
path,
scan.Detection.Encoding,
target,
metadata,
backup,
cancellationToken);
return NormalizeResult.Converted;
}
/// <summary>
/// Detects encoding, BOM state, and line-ending style without modifying the file.
/// </summary>
/// <returns>
/// The detection result, or <see langword="null"/> if encoding is unknown.
/// </returns>
/// <exception cref="DecoderFallbackException">
/// The file fails strict decoding.
/// </exception>
public static DetectResult? DetectFile(
string path,
CancellationToken cancellationToken = default)
{
cancellationToken.ThrowIfCancellationRequested();
ArgumentNullException.ThrowIfNull(path);
using FileStream source =
OpenSourceStream(path);
// No target: only detection and classification are needed.
ScanEngine.ScanResult? scan =
ScanEngine.Scan(
source,
target: null,
cancellationToken);
return scan?.Detection;
}
#endregion
#region Source Opening
/// <summary>
/// Opens a source for read-only sequential processing.
/// </summary>
private static FileStream OpenSourceStream(
string path)
{
return new FileStream(
path,
FileMode.Open,
FileAccess.Read,
FileShare.Read,
BufferSize,
FileOptions.SequentialScan);
}
#endregion
#region Metadata Capture
/// <summary>
/// Captures metadata for preservation during replacement.
/// </summary>
private static FileMetadata CaptureMetadata(
string path)
{
var info =
new FileInfo(path);
return new FileMetadata(
info.Attributes,
info.Length,
info.CreationTimeUtc,
info.LastWriteTimeUtc,
info.LastAccessTimeUtc);
}
#endregion
}