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