aboutsummaryrefslogtreecommitdiff
path: root/spool/parse.go
diff options
context:
space:
mode:
authorJulien Dessaux2020-02-22 12:35:05 +0100
committerJulien Dessaux2020-02-22 12:56:29 +0100
commit2661ce9a2bda2b6c1efc0ba1fef873c9dc91bb7c (patch)
tree155f36ee7f62f972fc49e5df0440948a4ba0348c /spool/parse.go
parentAdded tests to the state package, and reworked the code around that (diff)
downloadbareos-zabbix-check-2661ce9a2bda2b6c1efc0ba1fef873c9dc91bb7c.tar.gz
bareos-zabbix-check-2661ce9a2bda2b6c1efc0ba1fef873c9dc91bb7c.tar.bz2
bareos-zabbix-check-2661ce9a2bda2b6c1efc0ba1fef873c9dc91bb7c.zip
Added tests to the spool package, and reworked the code around that.
Diffstat (limited to '')
-rw-r--r--spool/parse.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/spool/parse.go b/spool/parse.go
new file mode 100644
index 0000000..5695890
--- /dev/null
+++ b/spool/parse.go
@@ -0,0 +1,27 @@
+package spool
+
+import (
+ "bareos-zabbix-check/job"
+ "encoding/csv"
+ "io"
+ "strconv"
+
+ "github.com/pkg/errors"
+)
+
+// Parse parses a spool file
+func Parse(handle io.Reader) (jobs []job.Job, err error) {
+ lines, err := csv.NewReader(handle).ReadAll()
+ if err != nil {
+ return nil, errors.Wrap(err, "Corrupted spool file")
+ }
+ for n := 0; n < len(lines); n++ {
+ line := lines[n]
+ i, err := strconv.Atoi(line[1])
+ if err != nil {
+ return nil, errors.Wrapf(err, "Corrupted spool file : couldn't parse timestamp entry : %s", line[1])
+ }
+ jobs = append(jobs, job.Job{Name: line[0], Timestamp: uint64(i), Success: true})
+ }
+ return
+}