summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/filecheck/collect.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/filecheck/collect.go40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/collect.go b/src/go/collectors/go.d.plugin/modules/filecheck/collect.go
new file mode 100644
index 000000000..921846a75
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/filecheck/collect.go
@@ -0,0 +1,40 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package filecheck
+
+import (
+ "regexp"
+ "runtime"
+ "strings"
+)
+
+func (fc *Filecheck) collect() (map[string]int64, error) {
+ ms := make(map[string]int64)
+
+ fc.collectFiles(ms)
+ fc.collectDirs(ms)
+
+ return ms, nil
+}
+
+func hasMeta(path string) bool {
+ magicChars := `*?[`
+ if runtime.GOOS != "windows" {
+ magicChars = `*?[\`
+ }
+ return strings.ContainsAny(path, magicChars)
+}
+
+func removeDuplicates(s []string) []string {
+ set := make(map[string]bool, len(s))
+ uniq := s[:0]
+ for _, v := range s {
+ if !set[v] {
+ set[v] = true
+ uniq = append(uniq, v)
+ }
+ }
+ return uniq
+}
+
+var reSpace = regexp.MustCompile(`\s`)