blob: fc378f3eb55c35e1d9a7b3545a7eaab1eef29bfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package spool
import (
"encoding/csv"
"io"
"strconv"
"git.adyxax.org/adyxax/bareos-zabbix-check/pkg/job"
"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
}
|