This repository has been archived by the owner on Oct 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
/
op.go
136 lines (129 loc) · 2.91 KB
/
op.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Copyright 2016 CoreOS, Inc.
//
// 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 zetcd
import "fmt"
// use a map
func op2req(op Op) interface{} {
switch op {
case opGetChildren2:
return &GetChildren2Request{}
case opPing:
return &PingRequest{}
case opCreate:
return &CreateRequest{}
case opCheck:
return &CheckVersionRequest{}
case opSetWatches:
return &SetWatchesRequest{}
case opSetData:
return &SetDataRequest{}
case opGetData:
return &GetDataRequest{}
case opDelete:
return &DeleteRequest{}
case opExists:
return &ExistsRequest{}
case opGetAcl:
return &GetAclRequest{}
case opSetAcl:
return &SetAclRequest{}
case opGetChildren:
return &GetChildrenRequest{}
case opSync:
return &SyncRequest{}
case opMulti:
return &MultiRequest{}
case opClose:
return &CloseRequest{}
case opSetAuth:
return &SetAuthRequest{}
default:
fmt.Println("unknown opcode ", op)
}
return nil
}
func op2resp(op Op) interface{} {
switch op {
case opGetChildren2:
return &GetChildren2Response{}
case opPing:
return &PingResponse{}
case opCreate:
return &CreateResponse{}
case opSetWatches:
return &SetWatchesResponse{}
case opSetData:
return &SetDataResponse{}
case opGetData:
return &GetDataResponse{}
case opDelete:
return &DeleteResponse{}
case opExists:
return &ExistsResponse{}
case opGetAcl:
return &GetAclResponse{}
case opSetAcl:
return &SetAclResponse{}
case opGetChildren:
return &GetChildrenResponse{}
case opSync:
return &SyncResponse{}
case opMulti:
return &MultiResponse{}
case opClose:
return &CloseResponse{}
case opSetAuth:
return &SetAuthResponse{}
default:
fmt.Println("unknown opcode ", op)
}
return nil
}
func req2op(req interface{}) Op {
switch req.(type) {
case *GetChildren2Request:
return opGetChildren2
case *PingRequest:
return opPing
case *CreateRequest:
return opCreate
case *SetWatchesRequest:
return opSetWatches
case *SetDataRequest:
return opSetData
case *GetDataRequest:
return opGetData
case *DeleteRequest:
return opDelete
case *ExistsRequest:
return opExists
case *GetAclRequest:
return opGetAcl
case *SetAclRequest:
return opSetAcl
case *GetChildrenRequest:
return opGetChildren
case *SyncRequest:
return opSync
case *MultiRequest:
return opMulti
case *CloseRequest:
return opClose
case *SetAuthRequest:
return opSetAuth
default:
fmt.Println("unknown request", req)
}
return opInvalid
}