This repository was archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathoutput.go
executable file
·101 lines (81 loc) · 2 KB
/
output.go
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package main
import (
"encoding/json"
"encoding/xml"
"errors"
"os"
"strings"
)
// WriterFormat to emulate an emum to make my constants nicer
type WriterFormat int32
// OutputStructure is the structure of that data that will be output
type OutputStructure struct {
Content string `json:"content" xml:"content"`
Offset uint64 `json:"offset" xml:"offset"`
}
// OutWriter is the context that the output module utilises
type OutWriter struct {
fd *os.File
format WriterFormat
}
// Types of formatting that may be used
const (
JSON WriterFormat = iota
XML
plain
end
)
// NewOutWriter creates a new instance of OutWriter
// with the desired format
func NewOutWriter(path string, format WriterFormat) (*OutWriter, error) {
var writer OutWriter
var err error
if !ValidType(format) {
return nil, errors.New("this output type does not exist")
}
writer.format = format
writer.fd, err = os.OpenFile(path, os.O_RDWR|os.O_APPEND|os.O_CREATE, 0777)
if err != nil {
return nil, err
}
return &writer, nil
}
// WriteResult appends to the currently opened file
// using the specified format, with the result.
func (o *OutWriter) WriteResult(str string, offset uint64) bool {
output := &OutputStructure{
Content: str,
Offset: offset,
}
buf := str
if o.format == JSON {
j, err := json.Marshal(output)
if err != nil {
return false
}
buf = string(j)
} else if o.format == XML {
x, err := xml.Marshal(output)
if err != nil {
return false
}
buf = string(x)
}
o.fd.WriteString(buf + "\n")
return true
}
// OutParseTypeStr converts from a string to a constant type
// default is plaintext output
func OutParseTypeStr(typ string) WriterFormat {
outType := strings.ToUpper(typ)
if outType == "JSON" {
return JSON
} else if outType == "XML" {
return XML
}
return plain
}
// ValidType makes sure that the passed type exists
func ValidType(val WriterFormat) bool {
return val < end
}