-
Notifications
You must be signed in to change notification settings - Fork 20
/
FileSearch.cs
428 lines (372 loc) · 14.2 KB
/
FileSearch.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
namespace RoliSoft.TVShowTracker
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Security;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using RoliSoft.TVShowTracker.Dependencies.USNJournal;
using RoliSoft.TVShowTracker.Parsers.Guides;
/// <summary>
/// Provides file search for finding the episodes on the disk.
/// </summary>
public class FileSearch
{
/// <summary>
/// Occurs when a file search is done.
/// </summary>
public event EventHandler<EventArgs<List<string>>> FileSearchDone;
/// <summary>
/// Occurs when the progress of the file search has changed.
/// </summary>
public event EventHandler<EventArgs<string>> FileSearchProgressChanged;
/// <summary>
/// Gets or sets the found files.
/// </summary>
/// <value>The found files.</value>
public List<string> Result
{
get { return _files; }
set { _files = value; }
}
/// <summary>
/// Gets or sets the file checking function.
/// </summary>
/// <value>The file checking function.</value>
public Func<string, bool> CheckFile
{
get { return _checkFile; }
set { _checkFile = value; }
}
/// <summary>
/// Gets the search task.
/// </summary>
/// <value>The search task.</value>
public Task SearchTask
{
get { return _task; }
}
/// <summary>
/// Gets the cancellation token.
/// </summary>
/// <value>The cancellation token.</value>
public CancellationTokenSource Cancellation
{
get { return _cts; }
}
private Task _task;
private CancellationTokenSource _cts;
private Dictionary<string, List<string>> _paths;
private List<string> _files;
private Regex[] _titleRegex, _episodeRegex;
private Func<string, bool> _checkFile;
/// <summary>
/// Initializes a new instance of the <see cref="FileSearch"/> class.
/// </summary>
/// <param name="paths">The paths where to start the search.</param>
/// <param name="episode">The episode to search for.</param>
public FileSearch(IEnumerable<string> paths, Episode episode)
{
_checkFile = StandardCheckFile;
_titleRegex = new[] { episode.Show.GenerateRegex() };
_episodeRegex = new[] { episode.GenerateRegex() };
InitStartPaths(paths);
}
/// <summary>
/// Initializes a new instance of the <see cref="FileSearch"/> class.
/// </summary>
/// <param name="paths">The paths where to start the search.</param>
/// <param name="episodes">The episodes to search for.</param>
public FileSearch(IEnumerable<string> paths, IList<Episode> episodes)
{
_checkFile = StandardCheckFile;
_titleRegex = new Regex[episodes.Count];
_episodeRegex = new Regex[episodes.Count];
for (var i = 0; i < episodes.Count; i++)
{
_titleRegex[i] = episodes[i].Show.GenerateRegex();
_episodeRegex[i] = episodes[i].GenerateRegex();
}
InitStartPaths(paths);
}
/// <summary>
/// Initializes a new instance of the <see cref="FileSearch"/> class.
/// </summary>
/// <param name="paths">The paths where to start the search.</param>
/// <param name="show">The show to search for.</param>
public FileSearch(IEnumerable<string> paths, TVShow show)
{
_checkFile = StandardCheckFile;
_titleRegex = new[] { show.GenerateRegex() };
_episodeRegex = new[] { default(Regex) };
InitStartPaths(paths);
}
/// <summary>
/// Initializes a new instance of the <see cref="FileSearch"/> class.
/// </summary>
/// <param name="paths">The paths where to start the search.</param>
/// <param name="shows">The shows to search for.</param>
public FileSearch(IEnumerable<string> paths, IList<TVShow> shows)
{
_checkFile = StandardCheckFile;
_titleRegex = new Regex[shows.Count];
_episodeRegex = new Regex[shows.Count];
for (var i = 0; i < shows.Count; i++)
{
_titleRegex[i] = shows[i].GenerateRegex();
}
InitStartPaths(paths);
}
/// <summary>
/// Initializes a new instance of the <see cref="FileSearch" /> class.
/// </summary>
/// <param name="paths">The paths where to start the search.</param>
/// <param name="checkFile">The file checking function.</param>
public FileSearch(IEnumerable<string> paths, Func<string, bool> checkFile)
{
_checkFile = checkFile;
InitStartPaths(paths);
}
/// <summary>
/// Groups the start paths into <see cref="_paths"/>.
/// </summary>
/// <param name="paths">The paths where to start the search.</param>
private void InitStartPaths(IEnumerable<string> paths)
{
_paths = new Dictionary<string, List<string>>();
foreach (var path in paths)
{
var match = Regex.Match(path, @"^([A-Za-z]{1,2}):\\");
var drive = match.Success ? match.Groups[1].Value : string.Empty;
if (!_paths.ContainsKey(drive))
{
_paths[drive] = new List<string>();
}
_paths[drive].Add(path);
}
}
/// <summary>
/// Begins the search asynchronously.
/// </summary>
public void BeginSearch()
{
_cts = new CancellationTokenSource();
_task = Task.Factory.StartNew(Search, _cts.Token, TaskCreationOptions.LongRunning, TaskScheduler.Current);
}
/// <summary>
/// Cancels the asynchronous search.
/// </summary>
public void CancelSearch()
{
_cts.Cancel();
try
{
if (!_task.Wait(500))
{
Log.Warn("Unable to cancel FileSearch._task after 500ms. Killing it.");
_task.Dispose();
}
}
catch (AggregateException ex)
{
Log.Warn("Aggregate exceptions upon FileSearch._task completion.", ex);
}
catch (Exception ex)
{
Log.Warn("Error while canceling FileSearch._task.", ex);
}
}
/// <summary>
/// Starts the search.
/// </summary>
private void Search()
{
_files = new List<string>();
foreach (var paths in _paths)
{
_cts.Token.ThrowIfCancellationRequested();
DriveInfo drive = null;
if (paths.Key != string.Empty)
{
try
{
drive = new DriveInfo(paths.Key);
var s = drive.AvailableFreeSpace; // make sure disk is ready
}
catch (DriveNotFoundException) { continue; }
catch (IOException) { continue; }
catch (Exception ex)
{
MainWindow.HandleUnexpectedException(ex);
}
}
if (drive != null && drive.DriveFormat == "NTFS" && Settings.Get<bool>("Search NTFS MFT records") && Utils.IsAdmin)
{
try
{
ScanNtfsMftForFile(drive, paths.Value.Count == 1 && paths.Value[0].Length == 3 ? null : paths.Value);
}
catch (OperationCanceledException)
{
throw;
}
catch (Exception ex)
{
MainWindow.HandleUnexpectedException(ex);
}
}
else
{
foreach (var path in paths.Value)
{
FileSearchProgressChanged.Fire(this, "Searching recursively for matching files in " + path + "...");
ScanDirectoryForFile(path);
}
}
}
FileSearchDone.Fire(this, _files);
}
/// <summary>
/// Scans the directory recursively for a matching file.
/// </summary>
/// <param name="path">The path to start the search from.</param>
private void ScanDirectoryForFile(string path)
{
_cts.Token.ThrowIfCancellationRequested();
// search for matching files
try
{
foreach (var file in Directory.EnumerateFiles(path))
{
_cts.Token.ThrowIfCancellationRequested();
try
{
if (_checkFile(file))
{
_files.Add(file);
}
}
catch (PathTooLongException) { }
catch (SecurityException) { }
catch (UnauthorizedAccessException) { }
catch (DirectoryNotFoundException) { }
catch (Exception ex)
{
Log.Error("Error while checking file.", ex);
}
}
}
catch (IOException) { }
catch (SecurityException) { }
catch (UnauthorizedAccessException) { }
catch (OperationCanceledException)
{
throw;
}
catch (Exception ex)
{
Log.Error("Error while enumerating files.", ex);
}
_cts.Token.ThrowIfCancellationRequested();
// WE MUST GO DEEPER!
try
{
foreach (var dir in Directory.EnumerateDirectories(path))
{
_cts.Token.ThrowIfCancellationRequested();
if (string.IsNullOrWhiteSpace(dir))
{
continue;
}
ScanDirectoryForFile(dir);
}
}
catch (IOException) { }
catch (SecurityException) { }
catch (UnauthorizedAccessException) { }
catch (OperationCanceledException)
{
throw;
}
catch (Exception ex)
{
Log.Error("Error while enumerating directories.", ex);
}
}
/// <summary>
/// Scans the NTFS Master File Table entries for a matching file.
/// </summary>
/// <param name="drive">The partition to scan.</param>
/// <param name="paths">The paths to which the search should be limited.</param>
private void ScanNtfsMftForFile(DriveInfo drive, IEnumerable<string> paths = null)
{
FileSearchProgressChanged.Fire(this, "Reading the MFT records of the " + drive.Name[0] + " partition...");
IEnumerable<string> list;
Log.Debug("Reading the MFT records of the " + drive.Name[0] + " partition...");
try
{
_cts.Token.ThrowIfCancellationRequested();
var usn = new NtfsUsnJournal(drive);
_cts.Token.ThrowIfCancellationRequested();
list = usn.GetParsedPaths(ShowNames.Regexes.KnownVideo, paths);
_cts.Token.ThrowIfCancellationRequested();
}
catch (OperationCanceledException)
{
throw;
}
catch (Exception ex)
{
Log.Error("Error while reading the MFT records of the " + drive.Name[0] + " partition.", ex);
return;
}
FileSearchProgressChanged.Fire(this, "Searching for matching files in the " + drive.Name[0] + " partition...");
foreach (var file in list)
{
_cts.Token.ThrowIfCancellationRequested();
try
{
if (_checkFile(file))
{
_files.Add(file);
}
}
catch (PathTooLongException) { }
catch (SecurityException) { }
catch (UnauthorizedAccessException) { }
catch (DirectoryNotFoundException) { }
catch (Exception ex)
{
Log.Error("Error while checking file.", ex);
}
}
}
/// <summary>
/// Determines whether the specified file is a match and inserts it into <see cref="_files" /> if it is.
/// </summary>
/// <param name="file">The file.</param>
/// <returns>
/// <c>true</c> if matched; otherwise <c>false</c>.
/// </returns>
private bool StandardCheckFile(string file)
{
var name = Path.GetFileName(file);
var dirs = Path.GetDirectoryName(file) ?? string.Empty;
for (var i = 0; i < _titleRegex.Length; i++)
{
if (ShowNames.Parser.IsMatch(dirs + @"\" + name, _titleRegex[i], _episodeRegex[i]))
{
var pf = FileNames.Parser.ParseFile(name, dirs.Split(new[] { Path.DirectorySeparatorChar }, StringSplitOptions.RemoveEmptyEntries), false);
if (pf.Success)
{
if (Log.IsTraceEnabled) Log.Trace("Identified file " + name + " as " + pf + ".");
return true;
}
}
}
return false;
}
}
}