-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathnotes.go
79 lines (67 loc) · 2.02 KB
/
notes.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
// Copyright 2021 The Mellium Contributors.
// Use of this source code is governed by the BSD 2-clause
// license that can be found in the LICENSE file.
package commands
//go:generate go run -tags=tools golang.org/x/tools/cmd/stringer -type=NoteType -linecomment
import (
"encoding/xml"
"fmt"
"mellium.im/xmlstream"
)
// NoteType indicates the severity of a note.
// It should always be one of the pre-defined constants.
type NoteType int8
// MarshalXMLAttr satisfies xml.MarshalerAttr.
func (n NoteType) MarshalXMLAttr(name xml.Name) (xml.Attr, error) {
var err error
if n < NoteInfo || n > NoteError {
err = fmt.Errorf("invalid note type %s", n)
}
return xml.Attr{Name: name, Value: n.String()}, err
}
// UnmarshalXMLAttr satisfies xml.UnmarshalerAttr.
func (n *NoteType) UnmarshalXMLAttr(attr xml.Attr) error {
switch attr.Value {
case "info":
*n = NoteInfo
case "warn":
*n = NoteWarn
case "error":
*n = NoteError
default:
*n = -1
return fmt.Errorf("invalid note attribute %s", attr.Value)
}
return nil
}
// A list of possible NoteType's.
const (
NoteInfo NoteType = iota // info
NoteWarn // warn
NoteError // error
)
// Note provides information about the status of a command and may be returned
// as part of the response payload.
type Note struct {
XMLName xml.Name `xml:"note"`
Type NoteType `xml:"type,attr"`
Value string `xml:",cdata"`
}
// TokenReader satisfies the xmlstream.Marshaler interface.
func (n Note) TokenReader() xml.TokenReader {
/* #nosec */
attr, _ := n.Type.MarshalXMLAttr(xml.Name{Local: "type"})
return xmlstream.Wrap(xmlstream.Token(xml.CharData(n.Value)), xml.StartElement{
Name: xml.Name{Local: "note"},
Attr: []xml.Attr{attr},
})
}
// WriteXML satisfies the xmlstream.WriterTo interface.
func (n Note) WriteXML(w xmlstream.TokenWriter) (int, error) {
return xmlstream.Copy(w, n.TokenReader())
}
// MarshalXML implements xml.Marshaler.
func (n Note) MarshalXML(e *xml.Encoder, _ xml.StartElement) error {
_, err := n.WriteXML(e)
return err
}