aboutsummaryrefslogtreecommitdiff
path: root/spool/parse.go
diff options
context:
space:
mode:
authorJulien Dessaux2021-04-23 16:51:22 +0200
committerJulien Dessaux2021-04-23 16:51:22 +0200
commit38d9c881b3b5ece91f428c87f0b7bb9efb3e88a8 (patch)
treed3f7167fae6388f4db35a63e660d1816c9c2943e /spool/parse.go
parentFixed wrongfully hardcoded path in tests. (diff)
downloadbareos-zabbix-check-1.2.tar.gz
bareos-zabbix-check-1.2.tar.bz2
bareos-zabbix-check-1.2.zip
Updated for go 1.16 modules1.2
Diffstat (limited to 'spool/parse.go')
-rw-r--r--spool/parse.go27
1 files changed, 0 insertions, 27 deletions
diff --git a/spool/parse.go b/spool/parse.go
deleted file mode 100644
index 5695890..0000000
--- a/spool/parse.go
+++ /dev/null
@@ -1,27 +0,0 @@
-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
-}