-
Notifications
You must be signed in to change notification settings - Fork 0
/
role_codec.go
executable file
·73 lines (62 loc) · 1.71 KB
/
role_codec.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
package campid
import (
"io"
"github.com/influx6/npkg/nerror"
)
// MsgPackRoleCodec implements the RoleCodec interface for using
// the MsgPack Codec.
type MsgPackRoleCodec struct {
Codec MsgPackCodec
}
// Encode encodes giving session using the internal MsgPack format.
// Returning provided data.
func (gb *MsgPackRoleCodec) Encode(w io.Writer, s Role) error {
return gb.Codec.Encode(w, s)
}
// Decode decodes giving data into provided session instance.
func (gb *MsgPackRoleCodec) Decode(r io.Reader) (Role, error) {
var s Role
var err = gb.Codec.Decode(r, &s)
if err != nil {
return s, nerror.WrapOnly(err)
}
return s, nil
}
// JsonRoleCodec implements the RoleCodec interface for using
// the Json Codec.
type JsonRoleCodec struct {
Codec JsonCodec
}
// Encode encodes giving session using the internal Json format.
// Returning provided data.
func (gb *JsonRoleCodec) Encode(w io.Writer, s Role) error {
return gb.Codec.Encode(w, s)
}
// Decode decodes giving data into provided session instance.
func (gb *JsonRoleCodec) Decode(r io.Reader) (Role, error) {
var s Role
var err = gb.Codec.Decode(r, &s)
if err != nil {
return s, nerror.WrapOnly(err)
}
return s, nil
}
// GobRoleCodec implements the RoleCodec interface for using
// the gob Codec.
type GobRoleCodec struct {
Codec GobCodec
}
// Encode encodes giving session using the internal gob format.
// Returning provided data.
func (gb *GobRoleCodec) Encode(w io.Writer, s Role) error {
return gb.Codec.Encode(w, s)
}
// Decode decodes giving data into provided session instance.
func (gb *GobRoleCodec) Decode(r io.Reader) (Role, error) {
var s Role
var err = gb.Codec.Decode(r, &s)
if err != nil {
return s, nerror.WrapOnly(err)
}
return s, nil
}