aboutsummaryrefslogtreecommitdiff
path: root/spool/serialize.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/serialize.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 'spool/serialize.go')
-rw-r--r--spool/serialize.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/spool/serialize.go b/spool/serialize.go
new file mode 100644
index 0000000..04af8da
--- /dev/null
+++ b/spool/serialize.go
@@ -0,0 +1,20 @@
+package spool
+
+import (
+ "bareos-zabbix-check/job"
+ "encoding/csv"
+ "fmt"
+ "io"
+)
+
+// Serialize writes a spool on the disk
+func Serialize(handle io.Writer, jobs []job.Job) error {
+ lines := make([][]string, len(jobs))
+ for i := 0; i < len(jobs); i++ {
+ job := jobs[i]
+ lines[i] = make([]string, 2)
+ lines[i][0] = job.Name
+ lines[i][1] = fmt.Sprintf("%d", job.Timestamp)
+ }
+ return csv.NewWriter(handle).WriteAll(lines)
+}