forked from hazelcast/hazelcast-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global_serializable_example.go
97 lines (82 loc) · 2.4 KB
/
global_serializable_example.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
// Copyright (c) 2008-2018, Hazelcast, Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License")
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"encoding/json"
"fmt"
"log"
"github.com/ahmetmircik/hazelcast-go-client"
"github.com/ahmetmircik/hazelcast-go-client/serialization"
)
const (
globalSerializerID = 5 // globalSerializerID should be greater than 0 and be specific to just one serializer.
)
type colorGroup struct {
ID int
Name string
Colors []string
}
// GlobalSerializer will handle all struct types if all the steps in searching for a serializer fail.
// If none of custom and global serializers are not added to serialization config,
// objects will be serialized by default GoLang Gob Serializer.
// For example, here JSON package's serialization is used.
type GlobalSerializer struct {
}
func (s *GlobalSerializer) ID() int32 {
return globalSerializerID
}
func (s *GlobalSerializer) Read(input serialization.DataInput) (interface{}, error) {
jsonBlob := input.ReadByteArray()
var ret colorGroup
if input.Error() != nil {
return nil, input.Error()
}
err := json.Unmarshal(jsonBlob, &ret)
return ret, err
}
func (s *GlobalSerializer) Write(output serialization.DataOutput, obj interface{}) error {
b, err := json.Marshal(obj)
if err != nil {
return err
}
output.WriteByteArray(b)
return nil
}
func main() {
var err error
config := hazelcast.NewConfig()
group := colorGroup{
ID: 1,
Name: "Reds",
Colors: []string{"Crimson", "Red", "Ruby", "Maroon"},
}
config.SerializationConfig().SetGlobalSerializer(&GlobalSerializer{})
client, err := hazelcast.NewClientWithConfig(config)
if err != nil {
log.Println(err)
}
mp, err := client.GetMap("testMap")
if err != nil {
log.Println(err)
}
mp.Put("group1", group)
ret, err := mp.Get("group1")
retGroup := ret.(colorGroup)
if err != nil {
log.Println(err)
}
fmt.Println("Color group is", retGroup)
mp.Clear()
client.Shutdown()
}