aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/gitignore/matcher.go
diff options
context:
space:
mode:
authorOleg Sklyar <osklyar@gmx.com>2017-06-19 00:26:14 +0200
committerOleg Sklyar <osklyar@gmx.com>2017-06-19 00:26:14 +0200
commit2f4ac21bad4c14b860a7d5c9d761857cb8d4f89c (patch)
tree869b08e65c35bf80dfd15f665d100e5ca3539917 /plumbing/format/gitignore/matcher.go
parent2a00316b65585be2bf68e1ea9c0e42c6af4f5679 (diff)
downloadgo-git-2f4ac21bad4c14b860a7d5c9d761857cb8d4f89c.tar.gz
Adds gitignore support
Diffstat (limited to 'plumbing/format/gitignore/matcher.go')
-rw-r--r--plumbing/format/gitignore/matcher.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/plumbing/format/gitignore/matcher.go b/plumbing/format/gitignore/matcher.go
new file mode 100644
index 0000000..bd1e9e2
--- /dev/null
+++ b/plumbing/format/gitignore/matcher.go
@@ -0,0 +1,30 @@
+package gitignore
+
+// Matcher defines a global multi-pattern matcher for gitignore patterns
+type Matcher interface {
+ // Match matches patterns in the order of priorities. As soon as an inclusion or
+ // exclusion is found, not further matching is performed.
+ Match(path []string, isDir bool) bool
+}
+
+// NewMatcher constructs a new global matcher. Patterns must be given in the order of
+// increasing priority. That is most generic settings files first, then the content of
+// the repo .gitignore, then content of .gitignore down the path or the repo and then
+// the content command line arguments.
+func NewMatcher(ps []Pattern) Matcher {
+ return &matcher{ps}
+}
+
+type matcher struct {
+ patterns []Pattern
+}
+
+func (m *matcher) Match(path []string, isDir bool) bool {
+ n := len(m.patterns)
+ for i := n - 1; i >= 0; i-- {
+ if match := m.patterns[i].Match(path, isDir); match > NoMatch {
+ return match == Exclude
+ }
+ }
+ return false
+}