Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
neoppod
Commits
776e85be
Commit
776e85be
authored
Sep 03, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
3e4d0dd7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
215 additions
and
203 deletions
+215
-203
go/neo/proto.go
go/neo/proto.go
+9
-5
go/neo/zproto-marshal.go
go/neo/zproto-marshal.go
+206
-198
No files found.
go/neo/proto.go
View file @
776e85be
...
@@ -491,12 +491,15 @@ type NotifyTransactionFinished struct {
...
@@ -491,12 +491,15 @@ type NotifyTransactionFinished struct {
MaxTID
zodb
.
Tid
MaxTID
zodb
.
Tid
}
}
// XXX move vvv
/*
// Lock information on a transaction. PM -> S.
// Lock information on a transaction. PM -> S.
// Notify information on a transaction locked. S -> PM.
// Notify information on a transaction locked. S -> PM.
type LockInformation struct {
type LockInformation struct {
Ttid zodb.Tid
Ttid zodb.Tid
Tid zodb.Tid
Tid zodb.Tid
}
}
*/
// XXX AnswerInformationLocked ?
// XXX AnswerInformationLocked ?
type
AnswerLockInformation
struct
{
type
AnswerLockInformation
struct
{
...
@@ -517,12 +520,11 @@ type UnlockInformation struct {
...
@@ -517,12 +520,11 @@ type UnlockInformation struct {
// Ask new object IDs. C -> PM.
// Ask new object IDs. C -> PM.
// Answer new object IDs. PM -> C.
// Answer new object IDs. PM -> C.
type
Generate
OIDs
struct
{
type
AskNew
OIDs
struct
{
NumOIDs
uint32
// PNumber
NumOIDs
uint32
// PNumber
}
}
// XXX answer_new_oids ?
type
AnswerNewOIDs
struct
{
type
AnswerGenerateOIDs
struct
{
OidList
[]
zodb
.
Oid
OidList
[]
zodb
.
Oid
}
}
...
@@ -592,16 +594,18 @@ type StoreTransaction struct {
...
@@ -592,16 +594,18 @@ type StoreTransaction struct {
Description
string
Description
string
Extension
string
Extension
string
OidList
[]
zodb
.
Oid
OidList
[]
zodb
.
Oid
// TODO _answer = PFEmpty
}
}
type
AnswerStoreTransaction
struct
{}
// Ask to store a transaction. C -> S.
// Ask to store a transaction. C -> S.
// Answer if transaction has been stored. S -> C.
// Answer if transaction has been stored. S -> C.
type
VoteTransaction
struct
{
type
VoteTransaction
struct
{
Tid
zodb
.
Tid
Tid
zodb
.
Tid
// TODO _answer = PFEmpty
}
}
type
AnswerVoteTransaction
struct
{}
// Ask a stored object by its OID and a serial or a TID if given. If a serial
// Ask a stored object by its OID and a serial or a TID if given. If a serial
// is specified, the specified revision of an object will be returned. If
// is specified, the specified revision of an object will be returned. If
// a TID is specified, an object right before the TID will be returned. C -> S.
// a TID is specified, an object right before the TID will be returned. C -> S.
...
...
go/neo/zproto-marshal.go
View file @
776e85be
...
@@ -1241,37 +1241,10 @@ overflow:
...
@@ -1241,37 +1241,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 33. LockInformation
// 33. AnswerLockInformation
func
(
*
LockInformation
)
neoMsgCode
()
uint16
{
return
33
}
func
(
p
*
LockInformation
)
neoMsgEncodedLen
()
int
{
return
16
}
func
(
p
*
LockInformation
)
neoMsgEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint64
(
data
[
0
:
],
uint64
(
p
.
Ttid
))
binary
.
BigEndian
.
PutUint64
(
data
[
8
:
],
uint64
(
p
.
Tid
))
}
func
(
p
*
LockInformation
)
neoMsgDecode
(
data
[]
byte
)
(
int
,
error
)
{
if
uint32
(
len
(
data
))
<
16
{
goto
overflow
}
p
.
Ttid
=
zodb
.
Tid
(
binary
.
BigEndian
.
Uint64
(
data
[
0
:
]))
p
.
Tid
=
zodb
.
Tid
(
binary
.
BigEndian
.
Uint64
(
data
[
8
:
]))
return
16
,
nil
overflow
:
return
0
,
ErrDecodeOverflow
}
// 34. AnswerLockInformation
func
(
*
AnswerLockInformation
)
neoMsgCode
()
uint16
{
func
(
*
AnswerLockInformation
)
neoMsgCode
()
uint16
{
return
3
4
|
answerBit
return
3
3
|
answerBit
}
}
func
(
p
*
AnswerLockInformation
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerLockInformation
)
neoMsgEncodedLen
()
int
{
...
@@ -1293,10 +1266,10 @@ overflow:
...
@@ -1293,10 +1266,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
5
. InvalidateObjects
// 3
4
. InvalidateObjects
func
(
*
InvalidateObjects
)
neoMsgCode
()
uint16
{
func
(
*
InvalidateObjects
)
neoMsgCode
()
uint16
{
return
3
5
return
3
4
}
}
func
(
p
*
InvalidateObjects
)
neoMsgEncodedLen
()
int
{
func
(
p
*
InvalidateObjects
)
neoMsgEncodedLen
()
int
{
...
@@ -1343,10 +1316,10 @@ overflow:
...
@@ -1343,10 +1316,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
6
. UnlockInformation
// 3
5
. UnlockInformation
func
(
*
UnlockInformation
)
neoMsgCode
()
uint16
{
func
(
*
UnlockInformation
)
neoMsgCode
()
uint16
{
return
3
6
return
3
5
}
}
func
(
p
*
UnlockInformation
)
neoMsgEncodedLen
()
int
{
func
(
p
*
UnlockInformation
)
neoMsgEncodedLen
()
int
{
...
@@ -1368,21 +1341,21 @@ overflow:
...
@@ -1368,21 +1341,21 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
7. Generate
OIDs
// 3
6. AskNew
OIDs
func
(
*
Generate
OIDs
)
neoMsgCode
()
uint16
{
func
(
*
AskNew
OIDs
)
neoMsgCode
()
uint16
{
return
3
7
return
3
6
}
}
func
(
p
*
Generate
OIDs
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AskNew
OIDs
)
neoMsgEncodedLen
()
int
{
return
4
return
4
}
}
func
(
p
*
Generate
OIDs
)
neoMsgEncode
(
data
[]
byte
)
{
func
(
p
*
AskNew
OIDs
)
neoMsgEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
p
.
NumOIDs
)
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
p
.
NumOIDs
)
}
}
func
(
p
*
Generate
OIDs
)
neoMsgDecode
(
data
[]
byte
)
(
int
,
error
)
{
func
(
p
*
AskNew
OIDs
)
neoMsgDecode
(
data
[]
byte
)
(
int
,
error
)
{
if
uint32
(
len
(
data
))
<
4
{
if
uint32
(
len
(
data
))
<
4
{
goto
overflow
goto
overflow
}
}
...
@@ -1393,17 +1366,17 @@ overflow:
...
@@ -1393,17 +1366,17 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
8. AnswerGenerate
OIDs
// 3
7. AnswerNew
OIDs
func
(
*
Answer
Generate
OIDs
)
neoMsgCode
()
uint16
{
func
(
*
Answer
New
OIDs
)
neoMsgCode
()
uint16
{
return
3
8
|
answerBit
return
3
7
|
answerBit
}
}
func
(
p
*
Answer
Generate
OIDs
)
neoMsgEncodedLen
()
int
{
func
(
p
*
Answer
New
OIDs
)
neoMsgEncodedLen
()
int
{
return
4
+
len
(
p
.
OidList
)
*
8
return
4
+
len
(
p
.
OidList
)
*
8
}
}
func
(
p
*
Answer
Generate
OIDs
)
neoMsgEncode
(
data
[]
byte
)
{
func
(
p
*
Answer
New
OIDs
)
neoMsgEncode
(
data
[]
byte
)
{
{
{
l
:=
uint32
(
len
(
p
.
OidList
))
l
:=
uint32
(
len
(
p
.
OidList
))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
l
)
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
l
)
...
@@ -1416,7 +1389,7 @@ func (p *AnswerGenerateOIDs) neoMsgEncode(data []byte) {
...
@@ -1416,7 +1389,7 @@ func (p *AnswerGenerateOIDs) neoMsgEncode(data []byte) {
}
}
}
}
func
(
p
*
Answer
Generate
OIDs
)
neoMsgDecode
(
data
[]
byte
)
(
int
,
error
)
{
func
(
p
*
Answer
New
OIDs
)
neoMsgDecode
(
data
[]
byte
)
(
int
,
error
)
{
var
nread
uint32
var
nread
uint32
if
uint32
(
len
(
data
))
<
4
{
if
uint32
(
len
(
data
))
<
4
{
goto
overflow
goto
overflow
...
@@ -1441,10 +1414,10 @@ overflow:
...
@@ -1441,10 +1414,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
9
. Deadlock
// 3
8
. Deadlock
func
(
*
Deadlock
)
neoMsgCode
()
uint16
{
func
(
*
Deadlock
)
neoMsgCode
()
uint16
{
return
3
9
return
3
8
}
}
func
(
p
*
Deadlock
)
neoMsgEncodedLen
()
int
{
func
(
p
*
Deadlock
)
neoMsgEncodedLen
()
int
{
...
@@ -1468,10 +1441,10 @@ overflow:
...
@@ -1468,10 +1441,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
40
. RebaseTransaction
//
39
. RebaseTransaction
func
(
*
RebaseTransaction
)
neoMsgCode
()
uint16
{
func
(
*
RebaseTransaction
)
neoMsgCode
()
uint16
{
return
40
return
39
}
}
func
(
p
*
RebaseTransaction
)
neoMsgEncodedLen
()
int
{
func
(
p
*
RebaseTransaction
)
neoMsgEncodedLen
()
int
{
...
@@ -1495,10 +1468,10 @@ overflow:
...
@@ -1495,10 +1468,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
1
. AnswerRebaseTransaction
// 4
0
. AnswerRebaseTransaction
func
(
*
AnswerRebaseTransaction
)
neoMsgCode
()
uint16
{
func
(
*
AnswerRebaseTransaction
)
neoMsgCode
()
uint16
{
return
4
1
|
answerBit
return
4
0
|
answerBit
}
}
func
(
p
*
AnswerRebaseTransaction
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerRebaseTransaction
)
neoMsgEncodedLen
()
int
{
...
@@ -1543,10 +1516,10 @@ overflow:
...
@@ -1543,10 +1516,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
2
. RebaseObject
// 4
1
. RebaseObject
func
(
*
RebaseObject
)
neoMsgCode
()
uint16
{
func
(
*
RebaseObject
)
neoMsgCode
()
uint16
{
return
4
2
return
4
1
}
}
func
(
p
*
RebaseObject
)
neoMsgEncodedLen
()
int
{
func
(
p
*
RebaseObject
)
neoMsgEncodedLen
()
int
{
...
@@ -1570,10 +1543,10 @@ overflow:
...
@@ -1570,10 +1543,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
3
. AnswerRebaseObject
// 4
2
. AnswerRebaseObject
func
(
*
AnswerRebaseObject
)
neoMsgCode
()
uint16
{
func
(
*
AnswerRebaseObject
)
neoMsgCode
()
uint16
{
return
4
3
|
answerBit
return
4
2
|
answerBit
}
}
func
(
p
*
AnswerRebaseObject
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerRebaseObject
)
neoMsgEncodedLen
()
int
{
...
@@ -1620,10 +1593,10 @@ overflow:
...
@@ -1620,10 +1593,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
4
. StoreObject
// 4
3
. StoreObject
func
(
*
StoreObject
)
neoMsgCode
()
uint16
{
func
(
*
StoreObject
)
neoMsgCode
()
uint16
{
return
4
4
return
4
3
}
}
func
(
p
*
StoreObject
)
neoMsgEncodedLen
()
int
{
func
(
p
*
StoreObject
)
neoMsgEncodedLen
()
int
{
...
@@ -1674,10 +1647,10 @@ overflow:
...
@@ -1674,10 +1647,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
5
. AnswerStoreObject
// 4
4
. AnswerStoreObject
func
(
*
AnswerStoreObject
)
neoMsgCode
()
uint16
{
func
(
*
AnswerStoreObject
)
neoMsgCode
()
uint16
{
return
4
5
|
answerBit
return
4
4
|
answerBit
}
}
func
(
p
*
AnswerStoreObject
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerStoreObject
)
neoMsgEncodedLen
()
int
{
...
@@ -1699,10 +1672,10 @@ overflow:
...
@@ -1699,10 +1672,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
6
. AbortTransaction
// 4
5
. AbortTransaction
func
(
*
AbortTransaction
)
neoMsgCode
()
uint16
{
func
(
*
AbortTransaction
)
neoMsgCode
()
uint16
{
return
4
6
return
4
5
}
}
func
(
p
*
AbortTransaction
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AbortTransaction
)
neoMsgEncodedLen
()
int
{
...
@@ -1749,10 +1722,10 @@ overflow:
...
@@ -1749,10 +1722,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
7
. StoreTransaction
// 4
6
. StoreTransaction
func
(
*
StoreTransaction
)
neoMsgCode
()
uint16
{
func
(
*
StoreTransaction
)
neoMsgCode
()
uint16
{
return
4
7
return
4
6
}
}
func
(
p
*
StoreTransaction
)
neoMsgEncodedLen
()
int
{
func
(
p
*
StoreTransaction
)
neoMsgEncodedLen
()
int
{
...
@@ -1850,6 +1823,23 @@ overflow:
...
@@ -1850,6 +1823,23 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 47. AnswerStoreTransaction
func
(
*
AnswerStoreTransaction
)
neoMsgCode
()
uint16
{
return
47
|
answerBit
}
func
(
p
*
AnswerStoreTransaction
)
neoMsgEncodedLen
()
int
{
return
0
}
func
(
p
*
AnswerStoreTransaction
)
neoMsgEncode
(
data
[]
byte
)
{
}
func
(
p
*
AnswerStoreTransaction
)
neoMsgDecode
(
data
[]
byte
)
(
int
,
error
)
{
return
0
,
nil
}
// 48. VoteTransaction
// 48. VoteTransaction
func
(
*
VoteTransaction
)
neoMsgCode
()
uint16
{
func
(
*
VoteTransaction
)
neoMsgCode
()
uint16
{
...
@@ -1875,10 +1865,27 @@ overflow:
...
@@ -1875,10 +1865,27 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 49. GetObject
// 49. AnswerVoteTransaction
func
(
*
AnswerVoteTransaction
)
neoMsgCode
()
uint16
{
return
49
|
answerBit
}
func
(
p
*
AnswerVoteTransaction
)
neoMsgEncodedLen
()
int
{
return
0
}
func
(
p
*
AnswerVoteTransaction
)
neoMsgEncode
(
data
[]
byte
)
{
}
func
(
p
*
AnswerVoteTransaction
)
neoMsgDecode
(
data
[]
byte
)
(
int
,
error
)
{
return
0
,
nil
}
// 50. GetObject
func
(
*
GetObject
)
neoMsgCode
()
uint16
{
func
(
*
GetObject
)
neoMsgCode
()
uint16
{
return
49
return
50
}
}
func
(
p
*
GetObject
)
neoMsgEncodedLen
()
int
{
func
(
p
*
GetObject
)
neoMsgEncodedLen
()
int
{
...
@@ -1904,10 +1911,10 @@ overflow:
...
@@ -1904,10 +1911,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
0
. AnswerGetObject
// 5
1
. AnswerGetObject
func
(
*
AnswerGetObject
)
neoMsgCode
()
uint16
{
func
(
*
AnswerGetObject
)
neoMsgCode
()
uint16
{
return
5
0
|
answerBit
return
5
1
|
answerBit
}
}
func
(
p
*
AnswerGetObject
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerGetObject
)
neoMsgEncodedLen
()
int
{
...
@@ -1958,10 +1965,10 @@ overflow:
...
@@ -1958,10 +1965,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
1
. TIDList
// 5
2
. TIDList
func
(
*
TIDList
)
neoMsgCode
()
uint16
{
func
(
*
TIDList
)
neoMsgCode
()
uint16
{
return
5
1
return
5
2
}
}
func
(
p
*
TIDList
)
neoMsgEncodedLen
()
int
{
func
(
p
*
TIDList
)
neoMsgEncodedLen
()
int
{
...
@@ -1987,10 +1994,10 @@ overflow:
...
@@ -1987,10 +1994,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
2
. AnswerTIDList
// 5
3
. AnswerTIDList
func
(
*
AnswerTIDList
)
neoMsgCode
()
uint16
{
func
(
*
AnswerTIDList
)
neoMsgCode
()
uint16
{
return
5
2
|
answerBit
return
5
3
|
answerBit
}
}
func
(
p
*
AnswerTIDList
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerTIDList
)
neoMsgEncodedLen
()
int
{
...
@@ -2035,10 +2042,10 @@ overflow:
...
@@ -2035,10 +2042,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
3
. TIDListFrom
// 5
4
. TIDListFrom
func
(
*
TIDListFrom
)
neoMsgCode
()
uint16
{
func
(
*
TIDListFrom
)
neoMsgCode
()
uint16
{
return
5
3
return
5
4
}
}
func
(
p
*
TIDListFrom
)
neoMsgEncodedLen
()
int
{
func
(
p
*
TIDListFrom
)
neoMsgEncodedLen
()
int
{
...
@@ -2066,10 +2073,10 @@ overflow:
...
@@ -2066,10 +2073,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
4
. AnswerTIDListFrom
// 5
5
. AnswerTIDListFrom
func
(
*
AnswerTIDListFrom
)
neoMsgCode
()
uint16
{
func
(
*
AnswerTIDListFrom
)
neoMsgCode
()
uint16
{
return
5
4
|
answerBit
return
5
5
|
answerBit
}
}
func
(
p
*
AnswerTIDListFrom
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerTIDListFrom
)
neoMsgEncodedLen
()
int
{
...
@@ -2114,10 +2121,10 @@ overflow:
...
@@ -2114,10 +2121,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
5
. TransactionInformation
// 5
6
. TransactionInformation
func
(
*
TransactionInformation
)
neoMsgCode
()
uint16
{
func
(
*
TransactionInformation
)
neoMsgCode
()
uint16
{
return
5
5
return
5
6
}
}
func
(
p
*
TransactionInformation
)
neoMsgEncodedLen
()
int
{
func
(
p
*
TransactionInformation
)
neoMsgEncodedLen
()
int
{
...
@@ -2139,10 +2146,10 @@ overflow:
...
@@ -2139,10 +2146,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
6
. AnswerTransactionInformation
// 5
7
. AnswerTransactionInformation
func
(
*
AnswerTransactionInformation
)
neoMsgCode
()
uint16
{
func
(
*
AnswerTransactionInformation
)
neoMsgCode
()
uint16
{
return
5
6
|
answerBit
return
5
7
|
answerBit
}
}
func
(
p
*
AnswerTransactionInformation
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerTransactionInformation
)
neoMsgEncodedLen
()
int
{
...
@@ -2242,10 +2249,10 @@ overflow:
...
@@ -2242,10 +2249,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
7
. ObjectHistory
// 5
8
. ObjectHistory
func
(
*
ObjectHistory
)
neoMsgCode
()
uint16
{
func
(
*
ObjectHistory
)
neoMsgCode
()
uint16
{
return
5
7
return
5
8
}
}
func
(
p
*
ObjectHistory
)
neoMsgEncodedLen
()
int
{
func
(
p
*
ObjectHistory
)
neoMsgEncodedLen
()
int
{
...
@@ -2271,10 +2278,10 @@ overflow:
...
@@ -2271,10 +2278,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
8
. AnswerObjectHistory
// 5
9
. AnswerObjectHistory
func
(
*
AnswerObjectHistory
)
neoMsgCode
()
uint16
{
func
(
*
AnswerObjectHistory
)
neoMsgCode
()
uint16
{
return
5
8
|
answerBit
return
5
9
|
answerBit
}
}
func
(
p
*
AnswerObjectHistory
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerObjectHistory
)
neoMsgEncodedLen
()
int
{
...
@@ -2326,10 +2333,10 @@ overflow:
...
@@ -2326,10 +2333,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
59
. PartitionList
//
60
. PartitionList
func
(
*
PartitionList
)
neoMsgCode
()
uint16
{
func
(
*
PartitionList
)
neoMsgCode
()
uint16
{
return
59
return
60
}
}
func
(
p
*
PartitionList
)
neoMsgEncodedLen
()
int
{
func
(
p
*
PartitionList
)
neoMsgEncodedLen
()
int
{
...
@@ -2355,10 +2362,10 @@ overflow:
...
@@ -2355,10 +2362,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
0
. AnswerPartitionList
// 6
1
. AnswerPartitionList
func
(
*
AnswerPartitionList
)
neoMsgCode
()
uint16
{
func
(
*
AnswerPartitionList
)
neoMsgCode
()
uint16
{
return
6
0
|
answerBit
return
6
1
|
answerBit
}
}
func
(
p
*
AnswerPartitionList
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerPartitionList
)
neoMsgEncodedLen
()
int
{
...
@@ -2435,10 +2442,10 @@ overflow:
...
@@ -2435,10 +2442,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
1
. NodeList
// 6
2
. NodeList
func
(
*
NodeList
)
neoMsgCode
()
uint16
{
func
(
*
NodeList
)
neoMsgCode
()
uint16
{
return
6
1
return
6
2
}
}
func
(
p
*
NodeList
)
neoMsgEncodedLen
()
int
{
func
(
p
*
NodeList
)
neoMsgEncodedLen
()
int
{
...
@@ -2460,10 +2467,10 @@ overflow:
...
@@ -2460,10 +2467,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
2
. AnswerNodeList
// 6
3
. AnswerNodeList
func
(
*
AnswerNodeList
)
neoMsgCode
()
uint16
{
func
(
*
AnswerNodeList
)
neoMsgCode
()
uint16
{
return
6
2
|
answerBit
return
6
3
|
answerBit
}
}
func
(
p
*
AnswerNodeList
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerNodeList
)
neoMsgEncodedLen
()
int
{
...
@@ -2538,10 +2545,10 @@ overflow:
...
@@ -2538,10 +2545,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
3
. SetNodeState
// 6
4
. SetNodeState
func
(
*
SetNodeState
)
neoMsgCode
()
uint16
{
func
(
*
SetNodeState
)
neoMsgCode
()
uint16
{
return
6
3
return
6
4
}
}
func
(
p
*
SetNodeState
)
neoMsgEncodedLen
()
int
{
func
(
p
*
SetNodeState
)
neoMsgEncodedLen
()
int
{
...
@@ -2565,10 +2572,10 @@ overflow:
...
@@ -2565,10 +2572,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
4
. AddPendingNodes
// 6
5
. AddPendingNodes
func
(
*
AddPendingNodes
)
neoMsgCode
()
uint16
{
func
(
*
AddPendingNodes
)
neoMsgCode
()
uint16
{
return
6
4
return
6
5
}
}
func
(
p
*
AddPendingNodes
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AddPendingNodes
)
neoMsgEncodedLen
()
int
{
...
@@ -2613,10 +2620,10 @@ overflow:
...
@@ -2613,10 +2620,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
5
. TweakPartitionTable
// 6
6
. TweakPartitionTable
func
(
*
TweakPartitionTable
)
neoMsgCode
()
uint16
{
func
(
*
TweakPartitionTable
)
neoMsgCode
()
uint16
{
return
6
5
return
6
6
}
}
func
(
p
*
TweakPartitionTable
)
neoMsgEncodedLen
()
int
{
func
(
p
*
TweakPartitionTable
)
neoMsgEncodedLen
()
int
{
...
@@ -2661,10 +2668,10 @@ overflow:
...
@@ -2661,10 +2668,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
6
. NodeInformation
// 6
7
. NodeInformation
func
(
*
NodeInformation
)
neoMsgCode
()
uint16
{
func
(
*
NodeInformation
)
neoMsgCode
()
uint16
{
return
6
6
return
6
7
}
}
func
(
p
*
NodeInformation
)
neoMsgEncodedLen
()
int
{
func
(
p
*
NodeInformation
)
neoMsgEncodedLen
()
int
{
...
@@ -2678,10 +2685,10 @@ func (p *NodeInformation) neoMsgDecode(data []byte) (int, error) {
...
@@ -2678,10 +2685,10 @@ func (p *NodeInformation) neoMsgDecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 6
7
. SetClusterState
// 6
8
. SetClusterState
func
(
*
SetClusterState
)
neoMsgCode
()
uint16
{
func
(
*
SetClusterState
)
neoMsgCode
()
uint16
{
return
6
7
return
6
8
}
}
func
(
p
*
SetClusterState
)
neoMsgEncodedLen
()
int
{
func
(
p
*
SetClusterState
)
neoMsgEncodedLen
()
int
{
...
@@ -2703,10 +2710,10 @@ overflow:
...
@@ -2703,10 +2710,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
8
. repairFlags
// 6
9
. repairFlags
func
(
*
repairFlags
)
neoMsgCode
()
uint16
{
func
(
*
repairFlags
)
neoMsgCode
()
uint16
{
return
6
8
return
6
9
}
}
func
(
p
*
repairFlags
)
neoMsgEncodedLen
()
int
{
func
(
p
*
repairFlags
)
neoMsgEncodedLen
()
int
{
...
@@ -2728,10 +2735,10 @@ overflow:
...
@@ -2728,10 +2735,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
69
. Repair
//
70
. Repair
func
(
*
Repair
)
neoMsgCode
()
uint16
{
func
(
*
Repair
)
neoMsgCode
()
uint16
{
return
69
return
70
}
}
func
(
p
*
Repair
)
neoMsgEncodedLen
()
int
{
func
(
p
*
Repair
)
neoMsgEncodedLen
()
int
{
...
@@ -2778,10 +2785,10 @@ overflow:
...
@@ -2778,10 +2785,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
0
. RepairOne
// 7
1
. RepairOne
func
(
*
RepairOne
)
neoMsgCode
()
uint16
{
func
(
*
RepairOne
)
neoMsgCode
()
uint16
{
return
7
0
return
7
1
}
}
func
(
p
*
RepairOne
)
neoMsgEncodedLen
()
int
{
func
(
p
*
RepairOne
)
neoMsgEncodedLen
()
int
{
...
@@ -2803,10 +2810,10 @@ overflow:
...
@@ -2803,10 +2810,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
1
. NotifyClusterState
// 7
2
. NotifyClusterState
func
(
*
NotifyClusterState
)
neoMsgCode
()
uint16
{
func
(
*
NotifyClusterState
)
neoMsgCode
()
uint16
{
return
7
1
return
7
2
}
}
func
(
p
*
NotifyClusterState
)
neoMsgEncodedLen
()
int
{
func
(
p
*
NotifyClusterState
)
neoMsgEncodedLen
()
int
{
...
@@ -2828,10 +2835,10 @@ overflow:
...
@@ -2828,10 +2835,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
2
. AskClusterState
// 7
3
. AskClusterState
func
(
*
AskClusterState
)
neoMsgCode
()
uint16
{
func
(
*
AskClusterState
)
neoMsgCode
()
uint16
{
return
7
2
return
7
3
}
}
func
(
p
*
AskClusterState
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AskClusterState
)
neoMsgEncodedLen
()
int
{
...
@@ -2845,10 +2852,10 @@ func (p *AskClusterState) neoMsgDecode(data []byte) (int, error) {
...
@@ -2845,10 +2852,10 @@ func (p *AskClusterState) neoMsgDecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 7
3
. AnswerClusterState
// 7
4
. AnswerClusterState
func
(
*
AnswerClusterState
)
neoMsgCode
()
uint16
{
func
(
*
AnswerClusterState
)
neoMsgCode
()
uint16
{
return
7
3
|
answerBit
return
7
4
|
answerBit
}
}
func
(
p
*
AnswerClusterState
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerClusterState
)
neoMsgEncodedLen
()
int
{
...
@@ -2870,10 +2877,10 @@ overflow:
...
@@ -2870,10 +2877,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
4
. ObjectUndoSerial
// 7
5
. ObjectUndoSerial
func
(
*
ObjectUndoSerial
)
neoMsgCode
()
uint16
{
func
(
*
ObjectUndoSerial
)
neoMsgCode
()
uint16
{
return
7
4
return
7
5
}
}
func
(
p
*
ObjectUndoSerial
)
neoMsgEncodedLen
()
int
{
func
(
p
*
ObjectUndoSerial
)
neoMsgEncodedLen
()
int
{
...
@@ -2924,10 +2931,10 @@ overflow:
...
@@ -2924,10 +2931,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
5
. AnswerObjectUndoSerial
// 7
6
. AnswerObjectUndoSerial
func
(
*
AnswerObjectUndoSerial
)
neoMsgCode
()
uint16
{
func
(
*
AnswerObjectUndoSerial
)
neoMsgCode
()
uint16
{
return
7
5
|
answerBit
return
7
6
|
answerBit
}
}
func
(
p
*
AnswerObjectUndoSerial
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerObjectUndoSerial
)
neoMsgEncodedLen
()
int
{
...
@@ -2992,10 +2999,10 @@ overflow:
...
@@ -2992,10 +2999,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
6
. CheckCurrentSerial
// 7
7
. CheckCurrentSerial
func
(
*
CheckCurrentSerial
)
neoMsgCode
()
uint16
{
func
(
*
CheckCurrentSerial
)
neoMsgCode
()
uint16
{
return
7
6
return
7
7
}
}
func
(
p
*
CheckCurrentSerial
)
neoMsgEncodedLen
()
int
{
func
(
p
*
CheckCurrentSerial
)
neoMsgEncodedLen
()
int
{
...
@@ -3021,10 +3028,10 @@ overflow:
...
@@ -3021,10 +3028,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
7
. Pack
// 7
8
. Pack
func
(
*
Pack
)
neoMsgCode
()
uint16
{
func
(
*
Pack
)
neoMsgCode
()
uint16
{
return
7
7
return
7
8
}
}
func
(
p
*
Pack
)
neoMsgEncodedLen
()
int
{
func
(
p
*
Pack
)
neoMsgEncodedLen
()
int
{
...
@@ -3046,10 +3053,10 @@ overflow:
...
@@ -3046,10 +3053,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
8
. AnswerPack
// 7
9
. AnswerPack
func
(
*
AnswerPack
)
neoMsgCode
()
uint16
{
func
(
*
AnswerPack
)
neoMsgCode
()
uint16
{
return
7
8
|
answerBit
return
7
9
|
answerBit
}
}
func
(
p
*
AnswerPack
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerPack
)
neoMsgEncodedLen
()
int
{
...
@@ -3071,10 +3078,10 @@ overflow:
...
@@ -3071,10 +3078,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
79
. CheckReplicas
//
80
. CheckReplicas
func
(
*
CheckReplicas
)
neoMsgCode
()
uint16
{
func
(
*
CheckReplicas
)
neoMsgCode
()
uint16
{
return
79
return
80
}
}
func
(
p
*
CheckReplicas
)
neoMsgEncodedLen
()
int
{
func
(
p
*
CheckReplicas
)
neoMsgEncodedLen
()
int
{
...
@@ -3129,10 +3136,10 @@ overflow:
...
@@ -3129,10 +3136,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
0
. CheckPartition
// 8
1
. CheckPartition
func
(
*
CheckPartition
)
neoMsgCode
()
uint16
{
func
(
*
CheckPartition
)
neoMsgCode
()
uint16
{
return
8
0
return
8
1
}
}
func
(
p
*
CheckPartition
)
neoMsgEncodedLen
()
int
{
func
(
p
*
CheckPartition
)
neoMsgEncodedLen
()
int
{
...
@@ -3195,10 +3202,10 @@ overflow:
...
@@ -3195,10 +3202,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
1
. CheckTIDRange
// 8
2
. CheckTIDRange
func
(
*
CheckTIDRange
)
neoMsgCode
()
uint16
{
func
(
*
CheckTIDRange
)
neoMsgCode
()
uint16
{
return
8
1
return
8
2
}
}
func
(
p
*
CheckTIDRange
)
neoMsgEncodedLen
()
int
{
func
(
p
*
CheckTIDRange
)
neoMsgEncodedLen
()
int
{
...
@@ -3226,10 +3233,10 @@ overflow:
...
@@ -3226,10 +3233,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
2
. AnswerCheckTIDRange
// 8
3
. AnswerCheckTIDRange
func
(
*
AnswerCheckTIDRange
)
neoMsgCode
()
uint16
{
func
(
*
AnswerCheckTIDRange
)
neoMsgCode
()
uint16
{
return
8
2
|
answerBit
return
8
3
|
answerBit
}
}
func
(
p
*
AnswerCheckTIDRange
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerCheckTIDRange
)
neoMsgEncodedLen
()
int
{
...
@@ -3255,10 +3262,10 @@ overflow:
...
@@ -3255,10 +3262,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
3
. CheckSerialRange
// 8
4
. CheckSerialRange
func
(
*
CheckSerialRange
)
neoMsgCode
()
uint16
{
func
(
*
CheckSerialRange
)
neoMsgCode
()
uint16
{
return
8
3
return
8
4
}
}
func
(
p
*
CheckSerialRange
)
neoMsgEncodedLen
()
int
{
func
(
p
*
CheckSerialRange
)
neoMsgEncodedLen
()
int
{
...
@@ -3288,10 +3295,10 @@ overflow:
...
@@ -3288,10 +3295,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
4
. AnswerCheckSerialRange
// 8
5
. AnswerCheckSerialRange
func
(
*
AnswerCheckSerialRange
)
neoMsgCode
()
uint16
{
func
(
*
AnswerCheckSerialRange
)
neoMsgCode
()
uint16
{
return
8
4
|
answerBit
return
8
5
|
answerBit
}
}
func
(
p
*
AnswerCheckSerialRange
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerCheckSerialRange
)
neoMsgEncodedLen
()
int
{
...
@@ -3321,10 +3328,10 @@ overflow:
...
@@ -3321,10 +3328,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
5
. PartitionCorrupted
// 8
6
. PartitionCorrupted
func
(
*
PartitionCorrupted
)
neoMsgCode
()
uint16
{
func
(
*
PartitionCorrupted
)
neoMsgCode
()
uint16
{
return
8
5
return
8
6
}
}
func
(
p
*
PartitionCorrupted
)
neoMsgEncodedLen
()
int
{
func
(
p
*
PartitionCorrupted
)
neoMsgEncodedLen
()
int
{
...
@@ -3371,10 +3378,10 @@ overflow:
...
@@ -3371,10 +3378,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
6
. LastTransaction
// 8
7
. LastTransaction
func
(
*
LastTransaction
)
neoMsgCode
()
uint16
{
func
(
*
LastTransaction
)
neoMsgCode
()
uint16
{
return
8
6
return
8
7
}
}
func
(
p
*
LastTransaction
)
neoMsgEncodedLen
()
int
{
func
(
p
*
LastTransaction
)
neoMsgEncodedLen
()
int
{
...
@@ -3388,10 +3395,10 @@ func (p *LastTransaction) neoMsgDecode(data []byte) (int, error) {
...
@@ -3388,10 +3395,10 @@ func (p *LastTransaction) neoMsgDecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 8
7
. AnswerLastTransaction
// 8
8
. AnswerLastTransaction
func
(
*
AnswerLastTransaction
)
neoMsgCode
()
uint16
{
func
(
*
AnswerLastTransaction
)
neoMsgCode
()
uint16
{
return
8
7
|
answerBit
return
8
8
|
answerBit
}
}
func
(
p
*
AnswerLastTransaction
)
neoMsgEncodedLen
()
int
{
func
(
p
*
AnswerLastTransaction
)
neoMsgEncodedLen
()
int
{
...
@@ -3413,10 +3420,10 @@ overflow:
...
@@ -3413,10 +3420,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
8
. NotifyReady
// 8
9
. NotifyReady
func
(
*
NotifyReady
)
neoMsgCode
()
uint16
{
func
(
*
NotifyReady
)
neoMsgCode
()
uint16
{
return
8
8
return
8
9
}
}
func
(
p
*
NotifyReady
)
neoMsgEncodedLen
()
int
{
func
(
p
*
NotifyReady
)
neoMsgEncodedLen
()
int
{
...
@@ -3465,60 +3472,61 @@ var msgTypeRegistry = map[uint16]reflect.Type{
...
@@ -3465,60 +3472,61 @@ var msgTypeRegistry = map[uint16]reflect.Type{
30
:
reflect
.
TypeOf
(
FinishTransaction
{}),
30
:
reflect
.
TypeOf
(
FinishTransaction
{}),
31
|
answerBit
:
reflect
.
TypeOf
(
AnswerFinishTransaction
{}),
31
|
answerBit
:
reflect
.
TypeOf
(
AnswerFinishTransaction
{}),
32
:
reflect
.
TypeOf
(
NotifyTransactionFinished
{}),
32
:
reflect
.
TypeOf
(
NotifyTransactionFinished
{}),
33
:
reflect
.
TypeOf
(
LockInformation
{}),
33
|
answerBit
:
reflect
.
TypeOf
(
Answer
LockInformation
{}),
34
|
answerBit
:
reflect
.
TypeOf
(
AnswerLockInformation
{}),
34
:
reflect
.
TypeOf
(
InvalidateObjects
{}),
35
:
reflect
.
TypeOf
(
InvalidateObjects
{}),
35
:
reflect
.
TypeOf
(
UnlockInformation
{}),
36
:
reflect
.
TypeOf
(
UnlockInformation
{}),
36
:
reflect
.
TypeOf
(
AskNewOIDs
{}),
37
:
reflect
.
TypeOf
(
Generate
OIDs
{}),
37
|
answerBit
:
reflect
.
TypeOf
(
AnswerNew
OIDs
{}),
38
|
answerBit
:
reflect
.
TypeOf
(
AnswerGenerateOIDs
{}),
38
:
reflect
.
TypeOf
(
Deadlock
{}),
39
:
reflect
.
TypeOf
(
Deadlock
{}),
39
:
reflect
.
TypeOf
(
RebaseTransaction
{}),
40
:
reflect
.
TypeOf
(
RebaseTransaction
{}),
40
|
answerBit
:
reflect
.
TypeOf
(
Answer
RebaseTransaction
{}),
41
|
answerBit
:
reflect
.
TypeOf
(
AnswerRebaseTransaction
{}),
41
:
reflect
.
TypeOf
(
RebaseObject
{}),
42
:
reflect
.
TypeOf
(
RebaseObject
{}),
42
|
answerBit
:
reflect
.
TypeOf
(
Answer
RebaseObject
{}),
43
|
answerBit
:
reflect
.
TypeOf
(
AnswerRebas
eObject
{}),
43
:
reflect
.
TypeOf
(
Stor
eObject
{}),
44
:
reflect
.
TypeOf
(
StoreObject
{}),
44
|
answerBit
:
reflect
.
TypeOf
(
Answer
StoreObject
{}),
45
|
answerBit
:
reflect
.
TypeOf
(
AnswerStoreObject
{}),
45
:
reflect
.
TypeOf
(
AbortTransaction
{}),
46
:
reflect
.
TypeOf
(
Abort
Transaction
{}),
46
:
reflect
.
TypeOf
(
Store
Transaction
{}),
47
:
reflect
.
TypeOf
(
StoreTransaction
{}),
47
|
answerBit
:
reflect
.
TypeOf
(
Answer
StoreTransaction
{}),
48
:
reflect
.
TypeOf
(
VoteTransaction
{}),
48
:
reflect
.
TypeOf
(
VoteTransaction
{}),
49
:
reflect
.
TypeOf
(
GetObject
{}),
49
|
answerBit
:
reflect
.
TypeOf
(
AnswerVoteTransaction
{}),
50
|
answerBit
:
reflect
.
TypeOf
(
AnswerGetObject
{}),
50
:
reflect
.
TypeOf
(
GetObject
{}),
51
:
reflect
.
TypeOf
(
TIDList
{}),
51
|
answerBit
:
reflect
.
TypeOf
(
AnswerGetObject
{}),
52
|
answerBit
:
reflect
.
TypeOf
(
AnswerTIDList
{}),
52
:
reflect
.
TypeOf
(
TIDList
{}),
53
:
reflect
.
TypeOf
(
TIDListFrom
{}),
53
|
answerBit
:
reflect
.
TypeOf
(
AnswerTIDList
{}),
54
|
answerBit
:
reflect
.
TypeOf
(
AnswerTIDListFrom
{}),
54
:
reflect
.
TypeOf
(
TIDListFrom
{}),
55
:
reflect
.
TypeOf
(
TransactionInformation
{}),
55
|
answerBit
:
reflect
.
TypeOf
(
AnswerTIDListFrom
{}),
56
|
answerBit
:
reflect
.
TypeOf
(
AnswerTransactionInformation
{}),
56
:
reflect
.
TypeOf
(
TransactionInformation
{}),
57
:
reflect
.
TypeOf
(
ObjectHistory
{}),
57
|
answerBit
:
reflect
.
TypeOf
(
AnswerTransactionInformation
{}),
58
|
answerBit
:
reflect
.
TypeOf
(
AnswerObjectHistory
{}),
58
:
reflect
.
TypeOf
(
ObjectHistory
{}),
59
:
reflect
.
TypeOf
(
PartitionList
{}),
59
|
answerBit
:
reflect
.
TypeOf
(
AnswerObjectHistory
{}),
60
|
answerBit
:
reflect
.
TypeOf
(
AnswerPartitionList
{}),
60
:
reflect
.
TypeOf
(
PartitionList
{}),
61
:
reflect
.
TypeOf
(
NodeList
{}),
61
|
answerBit
:
reflect
.
TypeOf
(
AnswerPartitionList
{}),
62
|
answerBit
:
reflect
.
TypeOf
(
AnswerNodeList
{}),
62
:
reflect
.
TypeOf
(
NodeList
{}),
63
:
reflect
.
TypeOf
(
SetNodeState
{}),
63
|
answerBit
:
reflect
.
TypeOf
(
AnswerNodeList
{}),
64
:
reflect
.
TypeOf
(
AddPendingNodes
{}),
64
:
reflect
.
TypeOf
(
SetNodeState
{}),
65
:
reflect
.
TypeOf
(
TweakPartitionTable
{}),
65
:
reflect
.
TypeOf
(
AddPendingNodes
{}),
66
:
reflect
.
TypeOf
(
NodeInformation
{}),
66
:
reflect
.
TypeOf
(
TweakPartitionTable
{}),
67
:
reflect
.
TypeOf
(
SetClusterState
{}),
67
:
reflect
.
TypeOf
(
NodeInformation
{}),
68
:
reflect
.
TypeOf
(
repairFlags
{}),
68
:
reflect
.
TypeOf
(
SetClusterState
{}),
69
:
reflect
.
TypeOf
(
Repair
{}),
69
:
reflect
.
TypeOf
(
repairFlags
{}),
70
:
reflect
.
TypeOf
(
RepairOne
{}),
70
:
reflect
.
TypeOf
(
Repair
{}),
71
:
reflect
.
TypeOf
(
NotifyClusterState
{}),
71
:
reflect
.
TypeOf
(
RepairOne
{}),
72
:
reflect
.
TypeOf
(
AskClusterState
{}),
72
:
reflect
.
TypeOf
(
NotifyClusterState
{}),
73
|
answerBit
:
reflect
.
TypeOf
(
AnswerClusterState
{}),
73
:
reflect
.
TypeOf
(
AskClusterState
{}),
74
:
reflect
.
TypeOf
(
ObjectUndoSerial
{}),
74
|
answerBit
:
reflect
.
TypeOf
(
AnswerClusterState
{}),
75
|
answerBit
:
reflect
.
TypeOf
(
AnswerObjectUndoSerial
{}),
75
:
reflect
.
TypeOf
(
ObjectUndoSerial
{}),
76
:
reflect
.
TypeOf
(
CheckCurrentSerial
{}),
76
|
answerBit
:
reflect
.
TypeOf
(
AnswerObjectUndoSerial
{}),
77
:
reflect
.
TypeOf
(
Pack
{}),
77
:
reflect
.
TypeOf
(
CheckCurrentSerial
{}),
78
|
answerBit
:
reflect
.
TypeOf
(
AnswerPack
{}),
78
:
reflect
.
TypeOf
(
Pack
{}),
79
:
reflect
.
TypeOf
(
CheckReplicas
{}),
79
|
answerBit
:
reflect
.
TypeOf
(
AnswerPack
{}),
80
:
reflect
.
TypeOf
(
CheckPartition
{}),
80
:
reflect
.
TypeOf
(
CheckReplicas
{}),
81
:
reflect
.
TypeOf
(
CheckTIDRange
{}),
81
:
reflect
.
TypeOf
(
CheckPartition
{}),
82
|
answerBit
:
reflect
.
TypeOf
(
AnswerCheckTIDRange
{}),
82
:
reflect
.
TypeOf
(
CheckTIDRange
{}),
83
:
reflect
.
TypeOf
(
CheckSerialRange
{}),
83
|
answerBit
:
reflect
.
TypeOf
(
AnswerCheckTIDRange
{}),
84
|
answerBit
:
reflect
.
TypeOf
(
AnswerCheckSerialRange
{}),
84
:
reflect
.
TypeOf
(
CheckSerialRange
{}),
85
:
reflect
.
TypeOf
(
PartitionCorrupted
{}),
85
|
answerBit
:
reflect
.
TypeOf
(
AnswerCheckSerialRange
{}),
86
:
reflect
.
TypeOf
(
LastTransaction
{}),
86
:
reflect
.
TypeOf
(
PartitionCorrupted
{}),
87
|
answerBit
:
reflect
.
TypeOf
(
AnswerLastTransaction
{}),
87
:
reflect
.
TypeOf
(
LastTransaction
{}),
88
:
reflect
.
TypeOf
(
NotifyReady
{}),
88
|
answerBit
:
reflect
.
TypeOf
(
AnswerLastTransaction
{}),
89
:
reflect
.
TypeOf
(
NotifyReady
{}),
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment