forked from dotnet/docfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileGlob.cs
102 lines (90 loc) · 4.07 KB
/
FileGlob.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
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.DocAsCode.Glob
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
public class FileGlob
{
public static IEnumerable<string> GetFiles(string cwd, IEnumerable<string> patterns, IEnumerable<string> excludePatterns, GlobMatcherOptions options = GlobMatcher.DefaultOptions)
{
// If there is no pattern, nothing will be included
if (patterns == null) return Enumerable.Empty<string>();
if (string.IsNullOrEmpty(cwd)) cwd = Directory.GetCurrentDirectory();
IEnumerable<GlobMatcher> globList = patterns.Select(s => new GlobMatcher(s, options));
IEnumerable<GlobMatcher> excludeGlobList = Enumerable.Empty<GlobMatcher>();
if (excludePatterns != null)
excludeGlobList = excludePatterns.Select(s => new GlobMatcher(s, options));
return GetFilesCore(cwd, globList, excludeGlobList);
}
private static IEnumerable<string> GetFilesCore(string cwd, IEnumerable<GlobMatcher> globs, IEnumerable<GlobMatcher> excludeGlobs)
{
if (!Directory.Exists(cwd)) yield break;
foreach (var file in GetFilesFromSubfolder(cwd, cwd, globs, excludeGlobs))
{
yield return NormalizeToFullPath(file);
}
}
private static IEnumerable<string> GetFilesFromSubfolder(string baseDirectory, string cwd, IEnumerable<GlobMatcher> globs, IEnumerable<GlobMatcher> excludeGlobs)
{
foreach (var file in Directory.GetFiles(baseDirectory, "*", SearchOption.TopDirectoryOnly))
{
var relativePath = GetRelativeFilePath(cwd, file);
if (IsFileMatch(relativePath, globs, excludeGlobs))
{
yield return file;
}
}
foreach (var dir in Directory.GetDirectories(baseDirectory, "*", SearchOption.TopDirectoryOnly))
{
var relativePath = GetRelativeDirectoryPath(cwd, dir);
if (IsDirectoryMatch(relativePath, globs, excludeGlobs))
{
foreach (var file in GetFilesFromSubfolder(dir, cwd, globs, excludeGlobs))
{
yield return file;
}
}
}
}
private static string GetRelativeFilePath(string directory, string file)
{
var subpath = file.Substring(directory.Length);
// directory could be
// 1. root folder, e.g. E:\ or /
// 2. sub folder, e.g. a or a/ or a\
return subpath.TrimStart('\\', '/');
}
private static string GetRelativeDirectoryPath(string parentDirectory, string directory)
{
var relativeDirectory = GetRelativeFilePath(parentDirectory, directory);
return relativeDirectory.TrimEnd('\\', '/') + "/";
}
private static string NormalizeToFullPath(string path)
{
return Path.GetFullPath(path).Replace('\\', '/');
}
private static bool IsFileMatch(string path, IEnumerable<GlobMatcher> globs, IEnumerable<GlobMatcher> excludeGlobs)
{
return IsMatch(path, globs, excludeGlobs, false);
}
private static bool IsDirectoryMatch(string path, IEnumerable<GlobMatcher> globs, IEnumerable<GlobMatcher> excludeGlobs)
{
return IsMatch(path, globs, excludeGlobs, true);
}
private static bool IsMatch(string path, IEnumerable<GlobMatcher> globs, IEnumerable<GlobMatcher> excludeGlobs, bool partial)
{
foreach (var exclude in excludeGlobs)
{
if (exclude.Match(path, false)) return false;
}
foreach (var glob in globs)
{
if (glob.Match(path, partial)) return true;
}
return false;
}
}
}