summaryrefslogtreecommitdiff
path: root/vendor/github.com/ryanuber
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2018-03-03 08:14:11 -0500
committerDave Henderson <dhenderson@gmail.com>2018-03-03 08:31:15 -0500
commit034dfcd90fe7dc353fe0a4d8588d5ed4f40aae85 (patch)
tree3863e5fc9fb3e8ec9b7bd1755954b115f9f03359 /vendor/github.com/ryanuber
parent387a5a45b4c3876ae59d6f9426529b1e7c31bba5 (diff)
Updating vendored dependencies
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'vendor/github.com/ryanuber')
-rw-r--r--vendor/github.com/ryanuber/go-glob/LICENSE21
-rw-r--r--vendor/github.com/ryanuber/go-glob/glob.go51
2 files changed, 72 insertions, 0 deletions
diff --git a/vendor/github.com/ryanuber/go-glob/LICENSE b/vendor/github.com/ryanuber/go-glob/LICENSE
new file mode 100644
index 00000000..bdfbd951
--- /dev/null
+++ b/vendor/github.com/ryanuber/go-glob/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Ryan Uber
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/vendor/github.com/ryanuber/go-glob/glob.go b/vendor/github.com/ryanuber/go-glob/glob.go
new file mode 100644
index 00000000..d9d46379
--- /dev/null
+++ b/vendor/github.com/ryanuber/go-glob/glob.go
@@ -0,0 +1,51 @@
+package glob
+
+import "strings"
+
+// The character which is treated like a glob
+const GLOB = "*"
+
+// Glob will test a string pattern, potentially containing globs, against a
+// subject string. The result is a simple true/false, determining whether or
+// not the glob pattern matched the subject text.
+func Glob(pattern, subj string) bool {
+ // Empty pattern can only match empty subject
+ if pattern == "" {
+ return subj == pattern
+ }
+
+ // If the pattern _is_ a glob, it matches everything
+ if pattern == GLOB {
+ return true
+ }
+
+ parts := strings.Split(pattern, GLOB)
+
+ if len(parts) == 1 {
+ // No globs in pattern, so test for equality
+ return subj == pattern
+ }
+
+ leadingGlob := strings.HasPrefix(pattern, GLOB)
+ trailingGlob := strings.HasSuffix(pattern, GLOB)
+ end := len(parts) - 1
+
+ // Check the first section. Requires special handling.
+ if !leadingGlob && !strings.HasPrefix(subj, parts[0]) {
+ return false
+ }
+
+ // Go over the middle parts and ensure they match.
+ for i := 1; i < end; i++ {
+ if !strings.Contains(subj, parts[i]) {
+ return false
+ }
+
+ // Trim evaluated text from subj as we loop over the pattern.
+ idx := strings.Index(subj, parts[i]) + len(parts[i])
+ subj = subj[idx:]
+ }
+
+ // Reached the last section. Requires special handling.
+ return trailingGlob || strings.HasSuffix(subj, parts[end])
+}