-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathComponentStreamEnumerable.cs
65 lines (55 loc) · 1.81 KB
/
ComponentStreamEnumerable.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
namespace Microsoft.ComponentDetection.Common;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using Microsoft.ComponentDetection.Contracts;
using Microsoft.Extensions.Logging;
public class ComponentStreamEnumerable : IEnumerable<IComponentStream>
{
private readonly ILogger logger;
public ComponentStreamEnumerable(IEnumerable<MatchedFile> fileEnumerable, ILogger logger)
{
this.logger = logger;
this.ToEnumerate = fileEnumerable;
}
private IEnumerable<MatchedFile> ToEnumerate { get; }
public IEnumerator<IComponentStream> GetEnumerator()
{
foreach (var filePairing in this.ToEnumerate)
{
if (!filePairing.File.Exists)
{
this.logger.LogWarning("File {FilePairingName} does not exist on disk.", filePairing.File.FullName);
yield break;
}
using var stream = this.SafeOpenFile(filePairing.File);
if (stream == null)
{
yield break;
}
yield return new ComponentStream { Stream = stream, Pattern = filePairing.Pattern, Location = filePairing.File.FullName };
}
}
IEnumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
private Stream SafeOpenFile(FileInfo file)
{
try
{
return file.OpenRead();
}
catch (UnauthorizedAccessException)
{
this.logger.LogWarning("Unauthorized access exception caught when trying to open {FileName}", file.FullName);
return null;
}
catch (Exception e)
{
this.logger.LogWarning(e, "Unhandled exception caught when trying to open {FileName}", file.FullName);
return null;
}
}
}