Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
421fda44
Commit
421fda44
authored
May 10, 2017
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
24416cc0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
354 additions
and
420 deletions
+354
-420
go/neo/master.go
go/neo/master.go
+2
-2
go/neo/parttab.go
go/neo/parttab.go
+3
-2
go/neo/proto-marshal.go
go/neo/proto-marshal.go
+336
-409
go/neo/proto-str.go
go/neo/proto-str.go
+6
-1
go/neo/proto.go
go/neo/proto.go
+2
-1
go/neo/proto_test.go
go/neo/proto_test.go
+2
-2
go/neo/server.go
go/neo/server.go
+3
-3
No files found.
go/neo/master.go
View file @
421fda44
...
@@ -29,12 +29,12 @@ import (
...
@@ -29,12 +29,12 @@ import (
// Master is a node overseeing and managing how whole NEO cluster works
// Master is a node overseeing and managing how whole NEO cluster works
type
Master
struct
{
type
Master
struct
{
c
usterName
string
c
lusterName
string
clusterState
ClusterState
clusterState
ClusterState
}
}
func
NewMaster
(
clusterName
string
)
*
Master
{
func
NewMaster
(
clusterName
string
)
*
Master
{
m
:=
&
Master
{
clusterName
}
m
:=
&
Master
{
clusterName
:
clusterName
}
m
.
SetClusterState
(
RECOVERING
)
// XXX no elections - we are the only master
m
.
SetClusterState
(
RECOVERING
)
// XXX no elections - we are the only master
return
m
return
m
}
}
...
...
go/neo/parttab.go
View file @
421fda44
...
@@ -49,10 +49,11 @@ package neo
...
@@ -49,10 +49,11 @@ package neo
// | | tid
// | | tid
// +-+
// +-+
type
PartitionTable
struct
{
type
PartitionTable
struct
{
ptTab
[]
...
//
ptTab []...
}
}
// Operational returns whether all object space is covered by at least some ready-to-serve nodes
// Operational returns whether all object space is covered by at least some ready-to-serve nodes
func
(
pt
*
PartitionalTable
)
Operational
()
bool
{
func
(
pt
*
PartitionTable
)
Operational
()
bool
{
panic
(
"TODO"
)
}
}
go/neo/proto-marshal.go
View file @
421fda44
...
@@ -67,7 +67,7 @@ func (p *NodeInfo) NEOEncode(data []byte) {
...
@@ -67,7 +67,7 @@ func (p *NodeInfo) NEOEncode(data []byte) {
data
=
data
[
l
:
]
data
=
data
[
l
:
]
}
}
binary
.
BigEndian
.
PutUint16
(
data
[
0
:
],
p
.
Address
.
Port
)
binary
.
BigEndian
.
PutUint16
(
data
[
0
:
],
p
.
Address
.
Port
)
binary
.
BigEndian
.
PutUint32
(
data
[
2
:
],
uint32
(
int32
(
p
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
2
:
],
uint32
(
int32
(
p
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
6
:
],
uint32
(
int32
(
p
.
NodeState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
6
:
],
uint32
(
int32
(
p
.
NodeState
)))
float64_NEOEncode
(
data
[
10
:
],
p
.
IdTimestamp
)
float64_NEOEncode
(
data
[
10
:
],
p
.
IdTimestamp
)
}
}
...
@@ -89,7 +89,7 @@ func (p *NodeInfo) NEODecode(data []byte) (int, error) {
...
@@ -89,7 +89,7 @@ func (p *NodeInfo) NEODecode(data []byte) (int, error) {
data
=
data
[
l
:
]
data
=
data
[
l
:
]
}
}
p
.
Address
.
Port
=
binary
.
BigEndian
.
Uint16
(
data
[
0
:
])
p
.
Address
.
Port
=
binary
.
BigEndian
.
Uint16
(
data
[
0
:
])
p
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
2
:
])))
p
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
2
:
])))
p
.
NodeState
=
NodeState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
6
:
])))
p
.
NodeState
=
NodeState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
6
:
])))
p
.
IdTimestamp
=
float64_NEODecode
(
data
[
10
:
])
p
.
IdTimestamp
=
float64_NEODecode
(
data
[
10
:
])
return
8
+
int
(
nread
),
nil
return
8
+
int
(
nread
),
nil
...
@@ -105,7 +105,7 @@ func (p *CellInfo) NEOEncodedInfo() (uint16, int) {
...
@@ -105,7 +105,7 @@ func (p *CellInfo) NEOEncodedInfo() (uint16, int) {
}
}
func
(
p
*
CellInfo
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
CellInfo
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
(
p
.
CellState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
(
p
.
CellState
)))
}
}
...
@@ -113,7 +113,7 @@ func (p *CellInfo) NEODecode(data []byte) (int, error) {
...
@@ -113,7 +113,7 @@ func (p *CellInfo) NEODecode(data []byte) (int, error) {
if
uint32
(
len
(
data
))
<
8
{
if
uint32
(
len
(
data
))
<
8
{
goto
overflow
goto
overflow
}
}
p
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
p
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
p
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
p
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
return
8
,
nil
return
8
,
nil
...
@@ -135,7 +135,7 @@ func (p *RowInfo) NEOEncode(data []byte) {
...
@@ -135,7 +135,7 @@ func (p *RowInfo) NEOEncode(data []byte) {
data
=
data
[
8
:
]
data
=
data
[
8
:
]
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
CellList
[
i
]
a
:=
&
p
.
CellList
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
)
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
)
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
data
=
data
[
8
:
]
data
=
data
[
8
:
]
}
}
...
@@ -158,7 +158,7 @@ func (p *RowInfo) NEODecode(data []byte) (int, error) {
...
@@ -158,7 +158,7 @@ func (p *RowInfo) NEODecode(data []byte) (int, error) {
p
.
CellList
=
make
([]
CellInfo
,
l
)
p
.
CellList
=
make
([]
CellInfo
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
CellList
[
i
]
a
:=
&
p
.
CellList
[
i
]
(
*
a
)
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
data
=
data
[
8
:
]
data
=
data
[
8
:
]
}
}
...
@@ -169,82 +169,10 @@ overflow:
...
@@ -169,82 +169,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4. XXXTest
// 4. Notify
func
(
p
*
XXXTest
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
var
size
int
for
key
:=
range
p
.
Zzz
{
size
+=
len
(
p
.
Zzz
[
key
])
}
return
4
,
12
+
len
(
p
.
Zzz
)
*
8
+
size
}
func
(
p
*
XXXTest
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
p
.
qqq
)
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
p
.
aaa
)
{
l
:=
uint32
(
len
(
p
.
Zzz
))
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
l
)
data
=
data
[
12
:
]
keyv
:=
make
([]
int32
,
0
,
l
)
for
key
:=
range
p
.
Zzz
{
keyv
=
append
(
keyv
,
key
)
}
sort
.
Slice
(
keyv
,
func
(
i
,
j
int
)
bool
{
return
keyv
[
i
]
<
keyv
[
j
]
})
for
_
,
key
:=
range
keyv
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
key
))
{
l
:=
uint32
(
len
(
p
.
Zzz
[
key
]))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
l
)
data
=
data
[
8
:
]
copy
(
data
,
p
.
Zzz
[
key
])
data
=
data
[
l
:
]
}
data
=
data
[
0
:
]
}
}
}
func
(
p
*
XXXTest
)
NEODecode
(
data
[]
byte
)
(
int
,
error
)
{
var
nread
uint32
if
uint32
(
len
(
data
))
<
12
{
goto
overflow
}
p
.
qqq
=
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])
p
.
aaa
=
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])
{
l
:=
binary
.
BigEndian
.
Uint32
(
data
[
8
:
])
data
=
data
[
12
:
]
p
.
Zzz
=
make
(
map
[
int32
]
string
,
l
)
m
:=
p
.
Zzz
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
if
uint32
(
len
(
data
))
<
8
{
goto
overflow
}
key
:=
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
]))
{
l
:=
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])
data
=
data
[
8
:
]
if
uint32
(
len
(
data
))
<
l
{
goto
overflow
}
nread
+=
l
m
[
key
]
=
string
(
data
[
:
l
])
data
=
data
[
l
:
]
}
}
nread
+=
l
*
8
}
return
12
+
int
(
nread
),
nil
overflow
:
return
0
,
ErrDecodeOverflow
}
// 5. Notify
func
(
p
*
Notify
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
Notify
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
,
4
+
len
(
p
.
Message
)
return
4
,
4
+
len
(
p
.
Message
)
}
}
func
(
p
*
Notify
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
Notify
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -278,10 +206,10 @@ overflow:
...
@@ -278,10 +206,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
6
. Error
//
5
. Error
func
(
p
*
Error
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
Error
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
6
,
8
+
len
(
p
.
Message
)
return
5
,
8
+
len
(
p
.
Message
)
}
}
func
(
p
*
Error
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
Error
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -317,10 +245,10 @@ overflow:
...
@@ -317,10 +245,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
7
. Ping
//
6
. Ping
func
(
p
*
Ping
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
Ping
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
7
,
0
return
6
,
0
}
}
func
(
p
*
Ping
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
Ping
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -330,10 +258,10 @@ func (p *Ping) NEODecode(data []byte) (int, error) {
...
@@ -330,10 +258,10 @@ func (p *Ping) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
//
8
. CloseClient
//
7
. CloseClient
func
(
p
*
CloseClient
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
CloseClient
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
,
0
return
7
,
0
}
}
func
(
p
*
CloseClient
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
CloseClient
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -343,16 +271,16 @@ func (p *CloseClient) NEODecode(data []byte) (int, error) {
...
@@ -343,16 +271,16 @@ func (p *CloseClient) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
//
9
. RequestIdentification
//
8
. RequestIdentification
func
(
p
*
RequestIdentification
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
RequestIdentification
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
9
,
30
+
len
(
p
.
Address
.
Host
)
+
len
(
p
.
Name
)
return
8
,
30
+
len
(
p
.
Address
.
Host
)
+
len
(
p
.
Name
)
}
}
func
(
p
*
RequestIdentification
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
RequestIdentification
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
p
.
ProtocolVersion
)
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
p
.
ProtocolVersion
)
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
(
p
.
NodeType
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
(
p
.
NodeType
)))
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
uint32
(
int32
(
p
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
uint32
(
int32
(
p
.
Node
ID
)))
{
{
l
:=
uint32
(
len
(
p
.
Address
.
Host
))
l
:=
uint32
(
len
(
p
.
Address
.
Host
))
binary
.
BigEndian
.
PutUint32
(
data
[
12
:
],
l
)
binary
.
BigEndian
.
PutUint32
(
data
[
12
:
],
l
)
...
@@ -378,7 +306,7 @@ func (p *RequestIdentification) NEODecode(data []byte) (int, error) {
...
@@ -378,7 +306,7 @@ func (p *RequestIdentification) NEODecode(data []byte) (int, error) {
}
}
p
.
ProtocolVersion
=
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])
p
.
ProtocolVersion
=
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])
p
.
NodeType
=
NodeType
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
p
.
NodeType
=
NodeType
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
p
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
8
:
])))
p
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
8
:
])))
{
{
l
:=
binary
.
BigEndian
.
Uint32
(
data
[
12
:
])
l
:=
binary
.
BigEndian
.
Uint32
(
data
[
12
:
])
data
=
data
[
16
:
]
data
=
data
[
16
:
]
...
@@ -407,7 +335,7 @@ overflow:
...
@@ -407,7 +335,7 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
10
. AcceptIdentification
//
9
. AcceptIdentification
func
(
p
*
AcceptIdentification
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AcceptIdentification
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
var
size
int
var
size
int
...
@@ -415,15 +343,15 @@ func (p *AcceptIdentification) NEOEncodedInfo() (uint16, int) {
...
@@ -415,15 +343,15 @@ func (p *AcceptIdentification) NEOEncodedInfo() (uint16, int) {
a
:=
&
p
.
KnownMasterList
[
i
]
a
:=
&
p
.
KnownMasterList
[
i
]
size
+=
len
((
*
a
)
.
Address
.
Host
)
size
+=
len
((
*
a
)
.
Address
.
Host
)
}
}
return
10
,
30
+
len
(
p
.
Primary
.
Host
)
+
len
(
p
.
KnownMasterList
)
*
10
+
size
return
9
,
30
+
len
(
p
.
Primary
.
Host
)
+
len
(
p
.
KnownMasterList
)
*
10
+
size
}
}
func
(
p
*
AcceptIdentification
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AcceptIdentification
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
NodeType
)))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
NodeType
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
(
p
.
My
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
(
p
.
My
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
p
.
NumPartitions
)
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
p
.
NumPartitions
)
binary
.
BigEndian
.
PutUint32
(
data
[
12
:
],
p
.
NumReplicas
)
binary
.
BigEndian
.
PutUint32
(
data
[
12
:
],
p
.
NumReplicas
)
binary
.
BigEndian
.
PutUint32
(
data
[
16
:
],
uint32
(
int32
(
p
.
Your
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
16
:
],
uint32
(
int32
(
p
.
Your
Node
ID
)))
{
{
l
:=
uint32
(
len
(
p
.
Primary
.
Host
))
l
:=
uint32
(
len
(
p
.
Primary
.
Host
))
binary
.
BigEndian
.
PutUint32
(
data
[
20
:
],
l
)
binary
.
BigEndian
.
PutUint32
(
data
[
20
:
],
l
)
...
@@ -446,7 +374,7 @@ func (p *AcceptIdentification) NEOEncode(data []byte) {
...
@@ -446,7 +374,7 @@ func (p *AcceptIdentification) NEOEncode(data []byte) {
data
=
data
[
l
:
]
data
=
data
[
l
:
]
}
}
binary
.
BigEndian
.
PutUint16
(
data
[
0
:
],
(
*
a
)
.
Address
.
Port
)
binary
.
BigEndian
.
PutUint16
(
data
[
0
:
],
(
*
a
)
.
Address
.
Port
)
binary
.
BigEndian
.
PutUint32
(
data
[
2
:
],
uint32
(
int32
((
*
a
)
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
2
:
],
uint32
(
int32
((
*
a
)
.
Node
ID
)))
data
=
data
[
6
:
]
data
=
data
[
6
:
]
}
}
}
}
...
@@ -458,10 +386,10 @@ func (p *AcceptIdentification) NEODecode(data []byte) (int, error) {
...
@@ -458,10 +386,10 @@ func (p *AcceptIdentification) NEODecode(data []byte) (int, error) {
goto
overflow
goto
overflow
}
}
p
.
NodeType
=
NodeType
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
p
.
NodeType
=
NodeType
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
p
.
My
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
p
.
My
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
p
.
NumPartitions
=
binary
.
BigEndian
.
Uint32
(
data
[
8
:
])
p
.
NumPartitions
=
binary
.
BigEndian
.
Uint32
(
data
[
8
:
])
p
.
NumReplicas
=
binary
.
BigEndian
.
Uint32
(
data
[
12
:
])
p
.
NumReplicas
=
binary
.
BigEndian
.
Uint32
(
data
[
12
:
])
p
.
Your
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
16
:
])))
p
.
Your
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
16
:
])))
{
{
l
:=
binary
.
BigEndian
.
Uint32
(
data
[
20
:
])
l
:=
binary
.
BigEndian
.
Uint32
(
data
[
20
:
])
data
=
data
[
24
:
]
data
=
data
[
24
:
]
...
@@ -478,7 +406,7 @@ func (p *AcceptIdentification) NEODecode(data []byte) (int, error) {
...
@@ -478,7 +406,7 @@ func (p *AcceptIdentification) NEODecode(data []byte) (int, error) {
data
=
data
[
6
:
]
data
=
data
[
6
:
]
p
.
KnownMasterList
=
make
([]
struct
{
p
.
KnownMasterList
=
make
([]
struct
{
Address
Address
UUID
UU
ID
NodeID
Node
ID
},
l
)
},
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
KnownMasterList
[
i
]
a
:=
&
p
.
KnownMasterList
[
i
]
...
@@ -496,7 +424,7 @@ func (p *AcceptIdentification) NEODecode(data []byte) (int, error) {
...
@@ -496,7 +424,7 @@ func (p *AcceptIdentification) NEODecode(data []byte) (int, error) {
data
=
data
[
l
:
]
data
=
data
[
l
:
]
}
}
(
*
a
)
.
Address
.
Port
=
binary
.
BigEndian
.
Uint16
(
data
[
0
:
])
(
*
a
)
.
Address
.
Port
=
binary
.
BigEndian
.
Uint16
(
data
[
0
:
])
(
*
a
)
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
2
:
])))
(
*
a
)
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
2
:
])))
data
=
data
[
6
:
]
data
=
data
[
6
:
]
}
}
nread
+=
l
*
4
nread
+=
l
*
4
...
@@ -507,10 +435,10 @@ overflow:
...
@@ -507,10 +435,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 1
1
. PrimaryMaster
// 1
0
. PrimaryMaster
func
(
p
*
PrimaryMaster
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
PrimaryMaster
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
1
1
,
0
return
1
0
,
0
}
}
func
(
p
*
PrimaryMaster
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
PrimaryMaster
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -520,31 +448,31 @@ func (p *PrimaryMaster) NEODecode(data []byte) (int, error) {
...
@@ -520,31 +448,31 @@ func (p *PrimaryMaster) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 1
2
. AnswerPrimary
// 1
1
. AnswerPrimary
func
(
p
*
AnswerPrimary
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerPrimary
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
1
2
,
4
return
1
1
,
4
}
}
func
(
p
*
AnswerPrimary
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerPrimary
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
Primary
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
Primary
Node
ID
)))
}
}
func
(
p
*
AnswerPrimary
)
NEODecode
(
data
[]
byte
)
(
int
,
error
)
{
func
(
p
*
AnswerPrimary
)
NEODecode
(
data
[]
byte
)
(
int
,
error
)
{
if
uint32
(
len
(
data
))
<
4
{
if
uint32
(
len
(
data
))
<
4
{
goto
overflow
goto
overflow
}
}
p
.
Primary
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
p
.
Primary
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
return
4
,
nil
return
4
,
nil
overflow
:
overflow
:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 1
3
. AnnouncePrimary
// 1
2
. AnnouncePrimary
func
(
p
*
AnnouncePrimary
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnnouncePrimary
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
1
3
,
0
return
1
2
,
0
}
}
func
(
p
*
AnnouncePrimary
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnnouncePrimary
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -554,10 +482,10 @@ func (p *AnnouncePrimary) NEODecode(data []byte) (int, error) {
...
@@ -554,10 +482,10 @@ func (p *AnnouncePrimary) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 1
4
. ReelectPrimary
// 1
3
. ReelectPrimary
func
(
p
*
ReelectPrimary
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
ReelectPrimary
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
1
4
,
0
return
1
3
,
0
}
}
func
(
p
*
ReelectPrimary
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
ReelectPrimary
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -567,10 +495,10 @@ func (p *ReelectPrimary) NEODecode(data []byte) (int, error) {
...
@@ -567,10 +495,10 @@ func (p *ReelectPrimary) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 1
5
. Recovery
// 1
4
. Recovery
func
(
p
*
Recovery
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
Recovery
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
1
5
,
0
return
1
4
,
0
}
}
func
(
p
*
Recovery
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
Recovery
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -580,10 +508,10 @@ func (p *Recovery) NEODecode(data []byte) (int, error) {
...
@@ -580,10 +508,10 @@ func (p *Recovery) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 1
6
. AnswerRecovery
// 1
5
. AnswerRecovery
func
(
p
*
AnswerRecovery
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerRecovery
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
1
6
,
24
return
1
5
,
24
}
}
func
(
p
*
AnswerRecovery
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerRecovery
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -605,10 +533,10 @@ overflow:
...
@@ -605,10 +533,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 1
7
. LastIDs
// 1
6
. LastIDs
func
(
p
*
LastIDs
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
LastIDs
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
1
7
,
0
return
1
6
,
0
}
}
func
(
p
*
LastIDs
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
LastIDs
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -618,10 +546,10 @@ func (p *LastIDs) NEODecode(data []byte) (int, error) {
...
@@ -618,10 +546,10 @@ func (p *LastIDs) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 1
8
. AnswerLastIDs
// 1
7
. AnswerLastIDs
func
(
p
*
AnswerLastIDs
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerLastIDs
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
1
8
,
16
return
1
7
,
16
}
}
func
(
p
*
AnswerLastIDs
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerLastIDs
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -641,20 +569,20 @@ overflow:
...
@@ -641,20 +569,20 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 1
9.
PartitionTable
// 1
8. X_
PartitionTable
func
(
p
*
PartitionTable
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
X_
PartitionTable
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
1
9
,
0
return
1
8
,
0
}
}
func
(
p
*
PartitionTable
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
X_
PartitionTable
)
NEOEncode
(
data
[]
byte
)
{
}
}
func
(
p
*
PartitionTable
)
NEODecode
(
data
[]
byte
)
(
int
,
error
)
{
func
(
p
*
X_
PartitionTable
)
NEODecode
(
data
[]
byte
)
(
int
,
error
)
{
return
0
,
nil
return
0
,
nil
}
}
//
20
. AnswerPartitionTable
//
19
. AnswerPartitionTable
func
(
p
*
AnswerPartitionTable
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerPartitionTable
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
var
size
int
var
size
int
...
@@ -662,7 +590,7 @@ func (p *AnswerPartitionTable) NEOEncodedInfo() (uint16, int) {
...
@@ -662,7 +590,7 @@ func (p *AnswerPartitionTable) NEOEncodedInfo() (uint16, int) {
a
:=
&
p
.
RowList
[
i
]
a
:=
&
p
.
RowList
[
i
]
size
+=
len
((
*
a
)
.
CellList
)
*
8
size
+=
len
((
*
a
)
.
CellList
)
*
8
}
}
return
20
,
12
+
len
(
p
.
RowList
)
*
8
+
size
return
19
,
12
+
len
(
p
.
RowList
)
*
8
+
size
}
}
func
(
p
*
AnswerPartitionTable
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerPartitionTable
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -680,7 +608,7 @@ func (p *AnswerPartitionTable) NEOEncode(data []byte) {
...
@@ -680,7 +608,7 @@ func (p *AnswerPartitionTable) NEOEncode(data []byte) {
data
=
data
[
8
:
]
data
=
data
[
8
:
]
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
(
*
a
)
.
CellList
[
i
]
a
:=
&
(
*
a
)
.
CellList
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
)
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
)
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
data
=
data
[
8
:
]
data
=
data
[
8
:
]
}
}
...
@@ -716,7 +644,7 @@ func (p *AnswerPartitionTable) NEODecode(data []byte) (int, error) {
...
@@ -716,7 +644,7 @@ func (p *AnswerPartitionTable) NEODecode(data []byte) (int, error) {
(
*
a
)
.
CellList
=
make
([]
CellInfo
,
l
)
(
*
a
)
.
CellList
=
make
([]
CellInfo
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
(
*
a
)
.
CellList
[
i
]
a
:=
&
(
*
a
)
.
CellList
[
i
]
(
*
a
)
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
data
=
data
[
8
:
]
data
=
data
[
8
:
]
}
}
...
@@ -730,7 +658,7 @@ overflow:
...
@@ -730,7 +658,7 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 2
1
. NotifyPartitionTable
// 2
0
. NotifyPartitionTable
func
(
p
*
NotifyPartitionTable
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
NotifyPartitionTable
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
var
size
int
var
size
int
...
@@ -738,7 +666,7 @@ func (p *NotifyPartitionTable) NEOEncodedInfo() (uint16, int) {
...
@@ -738,7 +666,7 @@ func (p *NotifyPartitionTable) NEOEncodedInfo() (uint16, int) {
a
:=
&
p
.
RowList
[
i
]
a
:=
&
p
.
RowList
[
i
]
size
+=
len
((
*
a
)
.
CellList
)
*
8
size
+=
len
((
*
a
)
.
CellList
)
*
8
}
}
return
2
1
,
12
+
len
(
p
.
RowList
)
*
8
+
size
return
2
0
,
12
+
len
(
p
.
RowList
)
*
8
+
size
}
}
func
(
p
*
NotifyPartitionTable
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
NotifyPartitionTable
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -756,7 +684,7 @@ func (p *NotifyPartitionTable) NEOEncode(data []byte) {
...
@@ -756,7 +684,7 @@ func (p *NotifyPartitionTable) NEOEncode(data []byte) {
data
=
data
[
8
:
]
data
=
data
[
8
:
]
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
(
*
a
)
.
CellList
[
i
]
a
:=
&
(
*
a
)
.
CellList
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
)
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
)
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
data
=
data
[
8
:
]
data
=
data
[
8
:
]
}
}
...
@@ -792,7 +720,7 @@ func (p *NotifyPartitionTable) NEODecode(data []byte) (int, error) {
...
@@ -792,7 +720,7 @@ func (p *NotifyPartitionTable) NEODecode(data []byte) (int, error) {
(
*
a
)
.
CellList
=
make
([]
CellInfo
,
l
)
(
*
a
)
.
CellList
=
make
([]
CellInfo
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
(
*
a
)
.
CellList
[
i
]
a
:=
&
(
*
a
)
.
CellList
[
i
]
(
*
a
)
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
data
=
data
[
8
:
]
data
=
data
[
8
:
]
}
}
...
@@ -806,10 +734,10 @@ overflow:
...
@@ -806,10 +734,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 2
2
. PartitionChanges
// 2
1
. PartitionChanges
func
(
p
*
PartitionChanges
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
PartitionChanges
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
2
2
,
12
+
len
(
p
.
CellList
)
*
12
return
2
1
,
12
+
len
(
p
.
CellList
)
*
12
}
}
func
(
p
*
PartitionChanges
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
PartitionChanges
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -821,7 +749,7 @@ func (p *PartitionChanges) NEOEncode(data []byte) {
...
@@ -821,7 +749,7 @@ func (p *PartitionChanges) NEOEncode(data []byte) {
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
CellList
[
i
]
a
:=
&
p
.
CellList
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
(
*
a
)
.
Offset
)
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
(
*
a
)
.
Offset
)
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
data
=
data
[
12
:
]
data
=
data
[
12
:
]
}
}
...
@@ -843,13 +771,13 @@ func (p *PartitionChanges) NEODecode(data []byte) (int, error) {
...
@@ -843,13 +771,13 @@ func (p *PartitionChanges) NEODecode(data []byte) (int, error) {
nread
+=
l
*
12
nread
+=
l
*
12
p
.
CellList
=
make
([]
struct
{
p
.
CellList
=
make
([]
struct
{
Offset
uint32
Offset
uint32
UUID
UU
ID
NodeID
Node
ID
CellState
CellState
CellState
CellState
},
l
)
},
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
CellList
[
i
]
a
:=
&
p
.
CellList
[
i
]
(
*
a
)
.
Offset
=
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])
(
*
a
)
.
Offset
=
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])
(
*
a
)
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
(
*
a
)
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
8
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
8
:
])))
data
=
data
[
12
:
]
data
=
data
[
12
:
]
}
}
...
@@ -860,10 +788,10 @@ overflow:
...
@@ -860,10 +788,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 2
3
. StartOperation
// 2
2
. StartOperation
func
(
p
*
StartOperation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
StartOperation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
2
3
,
1
return
2
2
,
1
}
}
func
(
p
*
StartOperation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
StartOperation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -881,10 +809,10 @@ overflow:
...
@@ -881,10 +809,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 2
4
. StopOperation
// 2
3
. StopOperation
func
(
p
*
StopOperation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
StopOperation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
2
4
,
0
return
2
3
,
0
}
}
func
(
p
*
StopOperation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
StopOperation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -894,10 +822,10 @@ func (p *StopOperation) NEODecode(data []byte) (int, error) {
...
@@ -894,10 +822,10 @@ func (p *StopOperation) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 2
5
. UnfinishedTransactions
// 2
4
. UnfinishedTransactions
func
(
p
*
UnfinishedTransactions
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
UnfinishedTransactions
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
2
5
,
4
+
len
(
p
.
RowList
)
*
4
return
2
4
,
4
+
len
(
p
.
RowList
)
*
4
}
}
func
(
p
*
UnfinishedTransactions
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
UnfinishedTransactions
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -938,10 +866,10 @@ overflow:
...
@@ -938,10 +866,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 2
6
. AnswerUnfinishedTransactions
// 2
5
. AnswerUnfinishedTransactions
func
(
p
*
AnswerUnfinishedTransactions
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerUnfinishedTransactions
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
2
6
,
12
+
len
(
p
.
TidList
)
*
8
return
2
5
,
12
+
len
(
p
.
TidList
)
*
8
}
}
func
(
p
*
AnswerUnfinishedTransactions
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerUnfinishedTransactions
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -984,10 +912,10 @@ overflow:
...
@@ -984,10 +912,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 2
7
. LockedTransactions
// 2
6
. LockedTransactions
func
(
p
*
LockedTransactions
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
LockedTransactions
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
2
7
,
0
return
2
6
,
0
}
}
func
(
p
*
LockedTransactions
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
LockedTransactions
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -997,10 +925,10 @@ func (p *LockedTransactions) NEODecode(data []byte) (int, error) {
...
@@ -997,10 +925,10 @@ func (p *LockedTransactions) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 2
8
. AnswerLockedTransactions
// 2
7
. AnswerLockedTransactions
func
(
p
*
AnswerLockedTransactions
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerLockedTransactions
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
2
8
,
4
+
len
(
p
.
TidDict
)
*
16
return
2
7
,
4
+
len
(
p
.
TidDict
)
*
16
}
}
func
(
p
*
AnswerLockedTransactions
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerLockedTransactions
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1047,10 +975,10 @@ overflow:
...
@@ -1047,10 +975,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 2
9
. FinalTID
// 2
8
. FinalTID
func
(
p
*
FinalTID
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
FinalTID
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
2
9
,
8
return
2
8
,
8
}
}
func
(
p
*
FinalTID
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
FinalTID
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1068,10 +996,10 @@ overflow:
...
@@ -1068,10 +996,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
30
. AnswerFinalTID
//
29
. AnswerFinalTID
func
(
p
*
AnswerFinalTID
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerFinalTID
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
30
,
8
return
29
,
8
}
}
func
(
p
*
AnswerFinalTID
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerFinalTID
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1089,10 +1017,10 @@ overflow:
...
@@ -1089,10 +1017,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
1
. ValidateTransaction
// 3
0
. ValidateTransaction
func
(
p
*
ValidateTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
ValidateTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
3
1
,
16
return
3
0
,
16
}
}
func
(
p
*
ValidateTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
ValidateTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1112,10 +1040,10 @@ overflow:
...
@@ -1112,10 +1040,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
2
. BeginTransaction
// 3
1
. BeginTransaction
func
(
p
*
BeginTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
BeginTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
3
2
,
8
return
3
1
,
8
}
}
func
(
p
*
BeginTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
BeginTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1133,10 +1061,10 @@ overflow:
...
@@ -1133,10 +1061,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
3
. AnswerBeginTransaction
// 3
2
. AnswerBeginTransaction
func
(
p
*
AnswerBeginTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerBeginTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
3
3
,
8
return
3
2
,
8
}
}
func
(
p
*
AnswerBeginTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerBeginTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1154,20 +1082,20 @@ overflow:
...
@@ -1154,20 +1082,20 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
4
. FailedVote
// 3
3
. FailedVote
func
(
p
*
FailedVote
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
FailedVote
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
3
4
,
12
+
len
(
p
.
UUID
List
)
*
4
return
3
3
,
12
+
len
(
p
.
Node
List
)
*
4
}
}
func
(
p
*
FailedVote
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
FailedVote
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint64
(
data
[
0
:
],
uint64
(
p
.
Tid
))
binary
.
BigEndian
.
PutUint64
(
data
[
0
:
],
uint64
(
p
.
Tid
))
{
{
l
:=
uint32
(
len
(
p
.
UUID
List
))
l
:=
uint32
(
len
(
p
.
Node
List
))
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
l
)
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
l
)
data
=
data
[
12
:
]
data
=
data
[
12
:
]
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
...
@@ -1187,10 +1115,10 @@ func (p *FailedVote) NEODecode(data []byte) (int, error) {
...
@@ -1187,10 +1115,10 @@ func (p *FailedVote) NEODecode(data []byte) (int, error) {
goto
overflow
goto
overflow
}
}
nread
+=
l
*
4
nread
+=
l
*
4
p
.
UUIDList
=
make
([]
UU
ID
,
l
)
p
.
NodeList
=
make
([]
Node
ID
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
(
*
a
)
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
}
}
...
@@ -1200,10 +1128,10 @@ overflow:
...
@@ -1200,10 +1128,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
5
. FinishTransaction
// 3
4
. FinishTransaction
func
(
p
*
FinishTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
FinishTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
3
5
,
16
+
len
(
p
.
OIDList
)
*
8
+
len
(
p
.
CheckedList
)
*
8
return
3
4
,
16
+
len
(
p
.
OIDList
)
*
8
+
len
(
p
.
CheckedList
)
*
8
}
}
func
(
p
*
FinishTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
FinishTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1270,10 +1198,10 @@ overflow:
...
@@ -1270,10 +1198,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
6
. AnswerFinishTransaction
// 3
5
. AnswerFinishTransaction
func
(
p
*
AnswerFinishTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerFinishTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
3
6
,
16
return
3
5
,
16
}
}
func
(
p
*
AnswerFinishTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerFinishTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1293,10 +1221,10 @@ overflow:
...
@@ -1293,10 +1221,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
7
. NotifyTransactionFinished
// 3
6
. NotifyTransactionFinished
func
(
p
*
NotifyTransactionFinished
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
NotifyTransactionFinished
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
3
7
,
16
return
3
6
,
16
}
}
func
(
p
*
NotifyTransactionFinished
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
NotifyTransactionFinished
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1316,10 +1244,10 @@ overflow:
...
@@ -1316,10 +1244,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
8
. LockInformation
// 3
7
. LockInformation
func
(
p
*
LockInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
LockInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
3
8
,
16
return
3
7
,
16
}
}
func
(
p
*
LockInformation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
LockInformation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1339,10 +1267,10 @@ overflow:
...
@@ -1339,10 +1267,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 3
9
. AnswerLockInformation
// 3
8
. AnswerLockInformation
func
(
p
*
AnswerLockInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerLockInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
3
9
,
8
return
3
8
,
8
}
}
func
(
p
*
AnswerLockInformation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerLockInformation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1360,10 +1288,10 @@ overflow:
...
@@ -1360,10 +1288,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
40
. InvalidateObjects
//
39
. InvalidateObjects
func
(
p
*
InvalidateObjects
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
InvalidateObjects
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
40
,
12
+
len
(
p
.
OidList
)
*
8
return
39
,
12
+
len
(
p
.
OidList
)
*
8
}
}
func
(
p
*
InvalidateObjects
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
InvalidateObjects
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1406,10 +1334,10 @@ overflow:
...
@@ -1406,10 +1334,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
1
. UnlockInformation
// 4
0
. UnlockInformation
func
(
p
*
UnlockInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
UnlockInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
4
1
,
8
return
4
0
,
8
}
}
func
(
p
*
UnlockInformation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
UnlockInformation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1427,10 +1355,10 @@ overflow:
...
@@ -1427,10 +1355,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
2
. GenerateOIDs
// 4
1
. GenerateOIDs
func
(
p
*
GenerateOIDs
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
GenerateOIDs
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
4
2
,
4
return
4
1
,
4
}
}
func
(
p
*
GenerateOIDs
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
GenerateOIDs
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1448,10 +1376,10 @@ overflow:
...
@@ -1448,10 +1376,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
3
. AnswerGenerateOIDs
// 4
2
. AnswerGenerateOIDs
func
(
p
*
AnswerGenerateOIDs
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerGenerateOIDs
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
4
3
,
4
+
len
(
p
.
OidList
)
*
8
return
4
2
,
4
+
len
(
p
.
OidList
)
*
8
}
}
func
(
p
*
AnswerGenerateOIDs
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerGenerateOIDs
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1492,10 +1420,10 @@ overflow:
...
@@ -1492,10 +1420,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
4
. Deadlock
// 4
3
. Deadlock
func
(
p
*
Deadlock
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
Deadlock
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
4
4
,
16
return
4
3
,
16
}
}
func
(
p
*
Deadlock
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
Deadlock
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1515,10 +1443,10 @@ overflow:
...
@@ -1515,10 +1443,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
5
. RebaseTransaction
// 4
4
. RebaseTransaction
func
(
p
*
RebaseTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
RebaseTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
4
5
,
16
return
4
4
,
16
}
}
func
(
p
*
RebaseTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
RebaseTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1538,10 +1466,10 @@ overflow:
...
@@ -1538,10 +1466,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
6
. AnswerRebaseTransaction
// 4
5
. AnswerRebaseTransaction
func
(
p
*
AnswerRebaseTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerRebaseTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
4
6
,
4
+
len
(
p
.
OidList
)
*
8
return
4
5
,
4
+
len
(
p
.
OidList
)
*
8
}
}
func
(
p
*
AnswerRebaseTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerRebaseTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1582,10 +1510,10 @@ overflow:
...
@@ -1582,10 +1510,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
7
. RebaseObject
// 4
6
. RebaseObject
func
(
p
*
RebaseObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
RebaseObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
4
7
,
16
return
4
6
,
16
}
}
func
(
p
*
RebaseObject
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
RebaseObject
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1605,10 +1533,10 @@ overflow:
...
@@ -1605,10 +1533,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
8
. AnswerRebaseObject
// 4
7
. AnswerRebaseObject
func
(
p
*
AnswerRebaseObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerRebaseObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
4
8
,
41
+
len
(
p
.
Data
)
return
4
7
,
41
+
len
(
p
.
Data
)
}
}
func
(
p
*
AnswerRebaseObject
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerRebaseObject
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1651,10 +1579,10 @@ overflow:
...
@@ -1651,10 +1579,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 4
9
. StoreObject
// 4
8
. StoreObject
func
(
p
*
StoreObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
StoreObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
4
9
,
57
+
len
(
p
.
Data
)
return
4
8
,
57
+
len
(
p
.
Data
)
}
}
func
(
p
*
StoreObject
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
StoreObject
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1701,10 +1629,10 @@ overflow:
...
@@ -1701,10 +1629,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
50
. AnswerStoreObject
//
49
. AnswerStoreObject
func
(
p
*
AnswerStoreObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerStoreObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
50
,
8
return
49
,
8
}
}
func
(
p
*
AnswerStoreObject
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerStoreObject
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1722,20 +1650,20 @@ overflow:
...
@@ -1722,20 +1650,20 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
1
. AbortTransaction
// 5
0
. AbortTransaction
func
(
p
*
AbortTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AbortTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
1
,
12
+
len
(
p
.
UUID
List
)
*
4
return
5
0
,
12
+
len
(
p
.
Node
List
)
*
4
}
}
func
(
p
*
AbortTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AbortTransaction
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint64
(
data
[
0
:
],
uint64
(
p
.
Tid
))
binary
.
BigEndian
.
PutUint64
(
data
[
0
:
],
uint64
(
p
.
Tid
))
{
{
l
:=
uint32
(
len
(
p
.
UUID
List
))
l
:=
uint32
(
len
(
p
.
Node
List
))
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
l
)
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
l
)
data
=
data
[
12
:
]
data
=
data
[
12
:
]
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
...
@@ -1755,10 +1683,10 @@ func (p *AbortTransaction) NEODecode(data []byte) (int, error) {
...
@@ -1755,10 +1683,10 @@ func (p *AbortTransaction) NEODecode(data []byte) (int, error) {
goto
overflow
goto
overflow
}
}
nread
+=
l
*
4
nread
+=
l
*
4
p
.
UUIDList
=
make
([]
UU
ID
,
l
)
p
.
NodeList
=
make
([]
Node
ID
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
(
*
a
)
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
}
}
...
@@ -1768,10 +1696,10 @@ overflow:
...
@@ -1768,10 +1696,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
2
. StoreTransaction
// 5
1
. StoreTransaction
func
(
p
*
StoreTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
StoreTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
2
,
24
+
len
(
p
.
User
)
+
len
(
p
.
Description
)
+
len
(
p
.
Extension
)
+
len
(
p
.
OidList
)
*
8
return
5
1
,
24
+
len
(
p
.
User
)
+
len
(
p
.
Description
)
+
len
(
p
.
Extension
)
+
len
(
p
.
OidList
)
*
8
}
}
func
(
p
*
StoreTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
StoreTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1865,10 +1793,10 @@ overflow:
...
@@ -1865,10 +1793,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
3
. VoteTransaction
// 5
2
. VoteTransaction
func
(
p
*
VoteTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
VoteTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
3
,
8
return
5
2
,
8
}
}
func
(
p
*
VoteTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
VoteTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1886,10 +1814,10 @@ overflow:
...
@@ -1886,10 +1814,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
4
. GetObject
// 5
3
. GetObject
func
(
p
*
GetObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
GetObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
4
,
24
return
5
3
,
24
}
}
func
(
p
*
GetObject
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
GetObject
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1911,10 +1839,10 @@ overflow:
...
@@ -1911,10 +1839,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
5
. AnswerGetObject
// 5
4
. AnswerGetObject
func
(
p
*
AnswerGetObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerGetObject
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
5
,
57
+
len
(
p
.
Data
)
return
5
4
,
57
+
len
(
p
.
Data
)
}
}
func
(
p
*
AnswerGetObject
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerGetObject
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1961,10 +1889,10 @@ overflow:
...
@@ -1961,10 +1889,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
6
. TIDList
// 5
5
. TIDList
func
(
p
*
TIDList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
TIDList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
6
,
20
return
5
5
,
20
}
}
func
(
p
*
TIDList
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
TIDList
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -1986,10 +1914,10 @@ overflow:
...
@@ -1986,10 +1914,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
7
. AnswerTIDList
// 5
6
. AnswerTIDList
func
(
p
*
AnswerTIDList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerTIDList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
7
,
4
+
len
(
p
.
TIDList
)
*
8
return
5
6
,
4
+
len
(
p
.
TIDList
)
*
8
}
}
func
(
p
*
AnswerTIDList
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerTIDList
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2030,10 +1958,10 @@ overflow:
...
@@ -2030,10 +1958,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
8
. TIDListFrom
// 5
7
. TIDListFrom
func
(
p
*
TIDListFrom
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
TIDListFrom
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
8
,
24
return
5
7
,
24
}
}
func
(
p
*
TIDListFrom
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
TIDListFrom
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2057,10 +1985,10 @@ overflow:
...
@@ -2057,10 +1985,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 5
9
. AnswerTIDListFrom
// 5
8
. AnswerTIDListFrom
func
(
p
*
AnswerTIDListFrom
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerTIDListFrom
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
5
9
,
4
+
len
(
p
.
TidList
)
*
8
return
5
8
,
4
+
len
(
p
.
TidList
)
*
8
}
}
func
(
p
*
AnswerTIDListFrom
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerTIDListFrom
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2101,10 +2029,10 @@ overflow:
...
@@ -2101,10 +2029,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
60
. TransactionInformation
//
59
. TransactionInformation
func
(
p
*
TransactionInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
TransactionInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
60
,
8
return
59
,
8
}
}
func
(
p
*
TransactionInformation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
TransactionInformation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2122,10 +2050,10 @@ overflow:
...
@@ -2122,10 +2050,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
1
. AnswerTransactionInformation
// 6
0
. AnswerTransactionInformation
func
(
p
*
AnswerTransactionInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerTransactionInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
6
1
,
25
+
len
(
p
.
User
)
+
len
(
p
.
Description
)
+
len
(
p
.
Extension
)
+
len
(
p
.
OidList
)
*
8
return
6
0
,
25
+
len
(
p
.
User
)
+
len
(
p
.
Description
)
+
len
(
p
.
Extension
)
+
len
(
p
.
OidList
)
*
8
}
}
func
(
p
*
AnswerTransactionInformation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerTransactionInformation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2221,10 +2149,10 @@ overflow:
...
@@ -2221,10 +2149,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
2
. ObjectHistory
// 6
1
. ObjectHistory
func
(
p
*
ObjectHistory
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
ObjectHistory
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
6
2
,
24
return
6
1
,
24
}
}
func
(
p
*
ObjectHistory
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
ObjectHistory
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2246,10 +2174,10 @@ overflow:
...
@@ -2246,10 +2174,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
3
. AnswerObjectHistory
// 6
2
. AnswerObjectHistory
func
(
p
*
AnswerObjectHistory
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerObjectHistory
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
6
3
,
12
+
len
(
p
.
HistoryList
)
*
12
return
6
2
,
12
+
len
(
p
.
HistoryList
)
*
12
}
}
func
(
p
*
AnswerObjectHistory
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerObjectHistory
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2297,16 +2225,16 @@ overflow:
...
@@ -2297,16 +2225,16 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
4
. PartitionList
// 6
3
. PartitionList
func
(
p
*
PartitionList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
PartitionList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
6
4
,
12
return
6
3
,
12
}
}
func
(
p
*
PartitionList
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
PartitionList
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
p
.
MinOffset
)
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
p
.
MinOffset
)
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
p
.
MaxOffset
)
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
p
.
MaxOffset
)
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
uint32
(
int32
(
p
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
8
:
],
uint32
(
int32
(
p
.
Node
ID
)))
}
}
func
(
p
*
PartitionList
)
NEODecode
(
data
[]
byte
)
(
int
,
error
)
{
func
(
p
*
PartitionList
)
NEODecode
(
data
[]
byte
)
(
int
,
error
)
{
...
@@ -2315,14 +2243,14 @@ func (p *PartitionList) NEODecode(data []byte) (int, error) {
...
@@ -2315,14 +2243,14 @@ func (p *PartitionList) NEODecode(data []byte) (int, error) {
}
}
p
.
MinOffset
=
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])
p
.
MinOffset
=
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])
p
.
MaxOffset
=
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])
p
.
MaxOffset
=
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])
p
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
8
:
])))
p
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
8
:
])))
return
12
,
nil
return
12
,
nil
overflow
:
overflow
:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
5
. AnswerPartitionList
// 6
4
. AnswerPartitionList
func
(
p
*
AnswerPartitionList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerPartitionList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
var
size
int
var
size
int
...
@@ -2330,7 +2258,7 @@ func (p *AnswerPartitionList) NEOEncodedInfo() (uint16, int) {
...
@@ -2330,7 +2258,7 @@ func (p *AnswerPartitionList) NEOEncodedInfo() (uint16, int) {
a
:=
&
p
.
RowList
[
i
]
a
:=
&
p
.
RowList
[
i
]
size
+=
len
((
*
a
)
.
CellList
)
*
8
size
+=
len
((
*
a
)
.
CellList
)
*
8
}
}
return
6
5
,
12
+
len
(
p
.
RowList
)
*
8
+
size
return
6
4
,
12
+
len
(
p
.
RowList
)
*
8
+
size
}
}
func
(
p
*
AnswerPartitionList
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerPartitionList
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2348,7 +2276,7 @@ func (p *AnswerPartitionList) NEOEncode(data []byte) {
...
@@ -2348,7 +2276,7 @@ func (p *AnswerPartitionList) NEOEncode(data []byte) {
data
=
data
[
8
:
]
data
=
data
[
8
:
]
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
(
*
a
)
.
CellList
[
i
]
a
:=
&
(
*
a
)
.
CellList
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
)
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
)
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
((
*
a
)
.
CellState
)))
data
=
data
[
8
:
]
data
=
data
[
8
:
]
}
}
...
@@ -2384,7 +2312,7 @@ func (p *AnswerPartitionList) NEODecode(data []byte) (int, error) {
...
@@ -2384,7 +2312,7 @@ func (p *AnswerPartitionList) NEODecode(data []byte) (int, error) {
(
*
a
)
.
CellList
=
make
([]
CellInfo
,
l
)
(
*
a
)
.
CellList
=
make
([]
CellInfo
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
(
*
a
)
.
CellList
[
i
]
a
:=
&
(
*
a
)
.
CellList
[
i
]
(
*
a
)
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
(
*
a
)
.
CellState
=
CellState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
data
=
data
[
8
:
]
data
=
data
[
8
:
]
}
}
...
@@ -2398,17 +2326,17 @@ overflow:
...
@@ -2398,17 +2326,17 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
6. X_
NodeList
// 6
5.
NodeList
func
(
p
*
X_
NodeList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
NodeList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
6
6
,
4
return
6
5
,
4
}
}
func
(
p
*
X_
NodeList
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
NodeList
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
NodeType
)))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
NodeType
)))
}
}
func
(
p
*
X_
NodeList
)
NEODecode
(
data
[]
byte
)
(
int
,
error
)
{
func
(
p
*
NodeList
)
NEODecode
(
data
[]
byte
)
(
int
,
error
)
{
if
uint32
(
len
(
data
))
<
4
{
if
uint32
(
len
(
data
))
<
4
{
goto
overflow
goto
overflow
}
}
...
@@ -2419,7 +2347,7 @@ overflow:
...
@@ -2419,7 +2347,7 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
7
. AnswerNodeList
// 6
6
. AnswerNodeList
func
(
p
*
AnswerNodeList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerNodeList
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
var
size
int
var
size
int
...
@@ -2427,7 +2355,7 @@ func (p *AnswerNodeList) NEOEncodedInfo() (uint16, int) {
...
@@ -2427,7 +2355,7 @@ func (p *AnswerNodeList) NEOEncodedInfo() (uint16, int) {
a
:=
&
p
.
NodeList
[
i
]
a
:=
&
p
.
NodeList
[
i
]
size
+=
len
((
*
a
)
.
Address
.
Host
)
size
+=
len
((
*
a
)
.
Address
.
Host
)
}
}
return
6
7
,
4
+
len
(
p
.
NodeList
)
*
26
+
size
return
6
6
,
4
+
len
(
p
.
NodeList
)
*
26
+
size
}
}
func
(
p
*
AnswerNodeList
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerNodeList
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2446,7 +2374,7 @@ func (p *AnswerNodeList) NEOEncode(data []byte) {
...
@@ -2446,7 +2374,7 @@ func (p *AnswerNodeList) NEOEncode(data []byte) {
data
=
data
[
l
:
]
data
=
data
[
l
:
]
}
}
binary
.
BigEndian
.
PutUint16
(
data
[
0
:
],
(
*
a
)
.
Address
.
Port
)
binary
.
BigEndian
.
PutUint16
(
data
[
0
:
],
(
*
a
)
.
Address
.
Port
)
binary
.
BigEndian
.
PutUint32
(
data
[
2
:
],
uint32
(
int32
((
*
a
)
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
2
:
],
uint32
(
int32
((
*
a
)
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
6
:
],
uint32
(
int32
((
*
a
)
.
NodeState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
6
:
],
uint32
(
int32
((
*
a
)
.
NodeState
)))
float64_NEOEncode
(
data
[
10
:
],
(
*
a
)
.
IdTimestamp
)
float64_NEOEncode
(
data
[
10
:
],
(
*
a
)
.
IdTimestamp
)
data
=
data
[
18
:
]
data
=
data
[
18
:
]
...
@@ -2480,7 +2408,7 @@ func (p *AnswerNodeList) NEODecode(data []byte) (int, error) {
...
@@ -2480,7 +2408,7 @@ func (p *AnswerNodeList) NEODecode(data []byte) (int, error) {
data
=
data
[
l
:
]
data
=
data
[
l
:
]
}
}
(
*
a
)
.
Address
.
Port
=
binary
.
BigEndian
.
Uint16
(
data
[
0
:
])
(
*
a
)
.
Address
.
Port
=
binary
.
BigEndian
.
Uint16
(
data
[
0
:
])
(
*
a
)
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
2
:
])))
(
*
a
)
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
2
:
])))
(
*
a
)
.
NodeState
=
NodeState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
6
:
])))
(
*
a
)
.
NodeState
=
NodeState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
6
:
])))
(
*
a
)
.
IdTimestamp
=
float64_NEODecode
(
data
[
10
:
])
(
*
a
)
.
IdTimestamp
=
float64_NEODecode
(
data
[
10
:
])
data
=
data
[
18
:
]
data
=
data
[
18
:
]
...
@@ -2493,14 +2421,14 @@ overflow:
...
@@ -2493,14 +2421,14 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
8
. SetNodeState
// 6
7
. SetNodeState
func
(
p
*
SetNodeState
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
SetNodeState
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
6
8
,
8
return
6
7
,
8
}
}
func
(
p
*
SetNodeState
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
SetNodeState
)
NEOEncode
(
data
[]
byte
)
{
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
(
p
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
(
p
.
NodeState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
4
:
],
uint32
(
int32
(
p
.
NodeState
)))
}
}
...
@@ -2508,7 +2436,7 @@ func (p *SetNodeState) NEODecode(data []byte) (int, error) {
...
@@ -2508,7 +2436,7 @@ func (p *SetNodeState) NEODecode(data []byte) (int, error) {
if
uint32
(
len
(
data
))
<
8
{
if
uint32
(
len
(
data
))
<
8
{
goto
overflow
goto
overflow
}
}
p
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
p
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
p
.
NodeState
=
NodeState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
p
.
NodeState
=
NodeState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
return
8
,
nil
return
8
,
nil
...
@@ -2516,19 +2444,19 @@ overflow:
...
@@ -2516,19 +2444,19 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 6
9
. AddPendingNodes
// 6
8
. AddPendingNodes
func
(
p
*
AddPendingNodes
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AddPendingNodes
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
6
9
,
4
+
len
(
p
.
UUID
List
)
*
4
return
6
8
,
4
+
len
(
p
.
Node
List
)
*
4
}
}
func
(
p
*
AddPendingNodes
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AddPendingNodes
)
NEOEncode
(
data
[]
byte
)
{
{
{
l
:=
uint32
(
len
(
p
.
UUID
List
))
l
:=
uint32
(
len
(
p
.
Node
List
))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
l
)
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
l
)
data
=
data
[
4
:
]
data
=
data
[
4
:
]
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
...
@@ -2547,10 +2475,10 @@ func (p *AddPendingNodes) NEODecode(data []byte) (int, error) {
...
@@ -2547,10 +2475,10 @@ func (p *AddPendingNodes) NEODecode(data []byte) (int, error) {
goto
overflow
goto
overflow
}
}
nread
+=
l
*
4
nread
+=
l
*
4
p
.
UUIDList
=
make
([]
UU
ID
,
l
)
p
.
NodeList
=
make
([]
Node
ID
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
(
*
a
)
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
}
}
...
@@ -2560,19 +2488,19 @@ overflow:
...
@@ -2560,19 +2488,19 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
70
. TweakPartitionTable
//
69
. TweakPartitionTable
func
(
p
*
TweakPartitionTable
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
TweakPartitionTable
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
70
,
4
+
len
(
p
.
UUID
List
)
*
4
return
69
,
4
+
len
(
p
.
Node
List
)
*
4
}
}
func
(
p
*
TweakPartitionTable
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
TweakPartitionTable
)
NEOEncode
(
data
[]
byte
)
{
{
{
l
:=
uint32
(
len
(
p
.
UUID
List
))
l
:=
uint32
(
len
(
p
.
Node
List
))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
l
)
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
l
)
data
=
data
[
4
:
]
data
=
data
[
4
:
]
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
...
@@ -2591,10 +2519,10 @@ func (p *TweakPartitionTable) NEODecode(data []byte) (int, error) {
...
@@ -2591,10 +2519,10 @@ func (p *TweakPartitionTable) NEODecode(data []byte) (int, error) {
goto
overflow
goto
overflow
}
}
nread
+=
l
*
4
nread
+=
l
*
4
p
.
UUIDList
=
make
([]
UU
ID
,
l
)
p
.
NodeList
=
make
([]
Node
ID
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
(
*
a
)
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
}
}
...
@@ -2604,7 +2532,7 @@ overflow:
...
@@ -2604,7 +2532,7 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
1
. NotifyNodeInformation
// 7
0
. NotifyNodeInformation
func
(
p
*
NotifyNodeInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
NotifyNodeInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
var
size
int
var
size
int
...
@@ -2612,7 +2540,7 @@ func (p *NotifyNodeInformation) NEOEncodedInfo() (uint16, int) {
...
@@ -2612,7 +2540,7 @@ func (p *NotifyNodeInformation) NEOEncodedInfo() (uint16, int) {
a
:=
&
p
.
NodeList
[
i
]
a
:=
&
p
.
NodeList
[
i
]
size
+=
len
((
*
a
)
.
Address
.
Host
)
size
+=
len
((
*
a
)
.
Address
.
Host
)
}
}
return
7
1
,
12
+
len
(
p
.
NodeList
)
*
26
+
size
return
7
0
,
12
+
len
(
p
.
NodeList
)
*
26
+
size
}
}
func
(
p
*
NotifyNodeInformation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
NotifyNodeInformation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2632,7 +2560,7 @@ func (p *NotifyNodeInformation) NEOEncode(data []byte) {
...
@@ -2632,7 +2560,7 @@ func (p *NotifyNodeInformation) NEOEncode(data []byte) {
data
=
data
[
l
:
]
data
=
data
[
l
:
]
}
}
binary
.
BigEndian
.
PutUint16
(
data
[
0
:
],
(
*
a
)
.
Address
.
Port
)
binary
.
BigEndian
.
PutUint16
(
data
[
0
:
],
(
*
a
)
.
Address
.
Port
)
binary
.
BigEndian
.
PutUint32
(
data
[
2
:
],
uint32
(
int32
((
*
a
)
.
UU
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
2
:
],
uint32
(
int32
((
*
a
)
.
Node
ID
)))
binary
.
BigEndian
.
PutUint32
(
data
[
6
:
],
uint32
(
int32
((
*
a
)
.
NodeState
)))
binary
.
BigEndian
.
PutUint32
(
data
[
6
:
],
uint32
(
int32
((
*
a
)
.
NodeState
)))
float64_NEOEncode
(
data
[
10
:
],
(
*
a
)
.
IdTimestamp
)
float64_NEOEncode
(
data
[
10
:
],
(
*
a
)
.
IdTimestamp
)
data
=
data
[
18
:
]
data
=
data
[
18
:
]
...
@@ -2667,7 +2595,7 @@ func (p *NotifyNodeInformation) NEODecode(data []byte) (int, error) {
...
@@ -2667,7 +2595,7 @@ func (p *NotifyNodeInformation) NEODecode(data []byte) (int, error) {
data
=
data
[
l
:
]
data
=
data
[
l
:
]
}
}
(
*
a
)
.
Address
.
Port
=
binary
.
BigEndian
.
Uint16
(
data
[
0
:
])
(
*
a
)
.
Address
.
Port
=
binary
.
BigEndian
.
Uint16
(
data
[
0
:
])
(
*
a
)
.
UUID
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
2
:
])))
(
*
a
)
.
NodeID
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
2
:
])))
(
*
a
)
.
NodeState
=
NodeState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
6
:
])))
(
*
a
)
.
NodeState
=
NodeState
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
6
:
])))
(
*
a
)
.
IdTimestamp
=
float64_NEODecode
(
data
[
10
:
])
(
*
a
)
.
IdTimestamp
=
float64_NEODecode
(
data
[
10
:
])
data
=
data
[
18
:
]
data
=
data
[
18
:
]
...
@@ -2680,10 +2608,10 @@ overflow:
...
@@ -2680,10 +2608,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
2
. NodeInformation
// 7
1
. NodeInformation
func
(
p
*
NodeInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
NodeInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
7
2
,
0
return
7
1
,
0
}
}
func
(
p
*
NodeInformation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
NodeInformation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2693,10 +2621,10 @@ func (p *NodeInformation) NEODecode(data []byte) (int, error) {
...
@@ -2693,10 +2621,10 @@ func (p *NodeInformation) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 7
3
. SetClusterState
// 7
2
. SetClusterState
func
(
p
*
SetClusterState
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
SetClusterState
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
7
3
,
4
return
7
2
,
4
}
}
func
(
p
*
SetClusterState
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
SetClusterState
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2714,10 +2642,10 @@ overflow:
...
@@ -2714,10 +2642,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
4
. repairFlags
// 7
3
. repairFlags
func
(
p
*
repairFlags
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
repairFlags
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
7
4
,
1
return
7
3
,
1
}
}
func
(
p
*
repairFlags
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
repairFlags
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2735,19 +2663,19 @@ overflow:
...
@@ -2735,19 +2663,19 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
5
. Repair
// 7
4
. Repair
func
(
p
*
Repair
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
Repair
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
7
5
,
5
+
len
(
p
.
UUID
List
)
*
4
return
7
4
,
5
+
len
(
p
.
Node
List
)
*
4
}
}
func
(
p
*
Repair
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
Repair
)
NEOEncode
(
data
[]
byte
)
{
{
{
l
:=
uint32
(
len
(
p
.
UUID
List
))
l
:=
uint32
(
len
(
p
.
Node
List
))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
l
)
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
l
)
data
=
data
[
4
:
]
data
=
data
[
4
:
]
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
binary
.
BigEndian
.
PutUint32
(
data
[
0
:
],
uint32
(
int32
((
*
a
))))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
...
@@ -2767,10 +2695,10 @@ func (p *Repair) NEODecode(data []byte) (int, error) {
...
@@ -2767,10 +2695,10 @@ func (p *Repair) NEODecode(data []byte) (int, error) {
goto
overflow
goto
overflow
}
}
nread
+=
1
+
l
*
4
nread
+=
1
+
l
*
4
p
.
UUIDList
=
make
([]
UU
ID
,
l
)
p
.
NodeList
=
make
([]
Node
ID
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
UUID
List
[
i
]
a
:=
&
p
.
Node
List
[
i
]
(
*
a
)
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
}
}
...
@@ -2781,10 +2709,10 @@ overflow:
...
@@ -2781,10 +2709,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
6
. RepairOne
// 7
5
. RepairOne
func
(
p
*
RepairOne
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
RepairOne
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
7
6
,
1
return
7
5
,
1
}
}
func
(
p
*
RepairOne
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
RepairOne
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2802,10 +2730,10 @@ overflow:
...
@@ -2802,10 +2730,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
7
. ClusterInformation
// 7
6
. ClusterInformation
func
(
p
*
ClusterInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
ClusterInformation
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
7
7
,
4
return
7
6
,
4
}
}
func
(
p
*
ClusterInformation
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
ClusterInformation
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2823,10 +2751,10 @@ overflow:
...
@@ -2823,10 +2751,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
8
. X_ClusterState
// 7
7
. X_ClusterState
func
(
p
*
X_ClusterState
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
X_ClusterState
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
7
8
,
4
return
7
7
,
4
}
}
func
(
p
*
X_ClusterState
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
X_ClusterState
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2844,10 +2772,10 @@ overflow:
...
@@ -2844,10 +2772,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 7
9
. ObjectUndoSerial
// 7
8
. ObjectUndoSerial
func
(
p
*
ObjectUndoSerial
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
ObjectUndoSerial
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
7
9
,
28
+
len
(
p
.
OidList
)
*
8
return
7
8
,
28
+
len
(
p
.
OidList
)
*
8
}
}
func
(
p
*
ObjectUndoSerial
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
ObjectUndoSerial
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2894,10 +2822,10 @@ overflow:
...
@@ -2894,10 +2822,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
80
. AnswerObjectUndoSerial
//
79
. AnswerObjectUndoSerial
func
(
p
*
AnswerObjectUndoSerial
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerObjectUndoSerial
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
80
,
4
+
len
(
p
.
ObjectTIDDict
)
*
25
return
79
,
4
+
len
(
p
.
ObjectTIDDict
)
*
25
}
}
func
(
p
*
AnswerObjectUndoSerial
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerObjectUndoSerial
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2958,10 +2886,10 @@ overflow:
...
@@ -2958,10 +2886,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
1
. CheckCurrentSerial
// 8
0
. CheckCurrentSerial
func
(
p
*
CheckCurrentSerial
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
CheckCurrentSerial
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
1
,
24
return
8
0
,
24
}
}
func
(
p
*
CheckCurrentSerial
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
CheckCurrentSerial
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -2983,10 +2911,10 @@ overflow:
...
@@ -2983,10 +2911,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
2
. Pack
// 8
1
. Pack
func
(
p
*
Pack
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
Pack
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
2
,
8
return
8
1
,
8
}
}
func
(
p
*
Pack
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
Pack
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3004,10 +2932,10 @@ overflow:
...
@@ -3004,10 +2932,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
3
. AnswerPack
// 8
2
. AnswerPack
func
(
p
*
AnswerPack
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerPack
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
3
,
1
return
8
2
,
1
}
}
func
(
p
*
AnswerPack
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerPack
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3025,10 +2953,10 @@ overflow:
...
@@ -3025,10 +2953,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
4
. CheckReplicas
// 8
3
. CheckReplicas
func
(
p
*
CheckReplicas
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
CheckReplicas
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
4
,
20
+
len
(
p
.
PartitionDict
)
*
8
return
8
3
,
20
+
len
(
p
.
PartitionDict
)
*
8
}
}
func
(
p
*
CheckReplicas
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
CheckReplicas
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3063,11 +2991,11 @@ func (p *CheckReplicas) NEODecode(data []byte) (int, error) {
...
@@ -3063,11 +2991,11 @@ func (p *CheckReplicas) NEODecode(data []byte) (int, error) {
goto
overflow
goto
overflow
}
}
nread
+=
16
+
l
*
8
nread
+=
16
+
l
*
8
p
.
PartitionDict
=
make
(
map
[
uint32
]
UU
ID
,
l
)
p
.
PartitionDict
=
make
(
map
[
uint32
]
Node
ID
,
l
)
m
:=
p
.
PartitionDict
m
:=
p
.
PartitionDict
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
key
:=
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])
key
:=
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])
m
[
key
]
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
m
[
key
]
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
4
:
])))
data
=
data
[
8
:
]
data
=
data
[
8
:
]
}
}
}
}
...
@@ -3079,10 +3007,10 @@ overflow:
...
@@ -3079,10 +3007,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
5
. CheckPartition
// 8
4
. CheckPartition
func
(
p
*
CheckPartition
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
CheckPartition
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
5
,
30
+
len
(
p
.
Source
.
UpstreamName
)
+
len
(
p
.
Source
.
Address
.
Host
)
return
8
4
,
30
+
len
(
p
.
Source
.
UpstreamName
)
+
len
(
p
.
Source
.
Address
.
Host
)
}
}
func
(
p
*
CheckPartition
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
CheckPartition
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3141,10 +3069,10 @@ overflow:
...
@@ -3141,10 +3069,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
6
. CheckTIDRange
// 8
5
. CheckTIDRange
func
(
p
*
CheckTIDRange
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
CheckTIDRange
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
6
,
24
return
8
5
,
24
}
}
func
(
p
*
CheckTIDRange
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
CheckTIDRange
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3168,10 +3096,10 @@ overflow:
...
@@ -3168,10 +3096,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
7
. AnswerCheckTIDRange
// 8
6
. AnswerCheckTIDRange
func
(
p
*
AnswerCheckTIDRange
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerCheckTIDRange
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
7
,
32
return
8
6
,
32
}
}
func
(
p
*
AnswerCheckTIDRange
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerCheckTIDRange
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3193,10 +3121,10 @@ overflow:
...
@@ -3193,10 +3121,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
8
. CheckSerialRange
// 8
7
. CheckSerialRange
func
(
p
*
CheckSerialRange
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
CheckSerialRange
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
8
,
32
return
8
7
,
32
}
}
func
(
p
*
CheckSerialRange
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
CheckSerialRange
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3222,10 +3150,10 @@ overflow:
...
@@ -3222,10 +3150,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 8
9
. AnswerCheckSerialRange
// 8
8
. AnswerCheckSerialRange
func
(
p
*
AnswerCheckSerialRange
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerCheckSerialRange
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
8
9
,
60
return
8
8
,
60
}
}
func
(
p
*
AnswerCheckSerialRange
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerCheckSerialRange
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3251,10 +3179,10 @@ overflow:
...
@@ -3251,10 +3179,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
//
90
. PartitionCorrupted
//
89
. PartitionCorrupted
func
(
p
*
PartitionCorrupted
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
PartitionCorrupted
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
90
,
8
+
len
(
p
.
CellList
)
*
4
return
89
,
8
+
len
(
p
.
CellList
)
*
4
}
}
func
(
p
*
PartitionCorrupted
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
PartitionCorrupted
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3284,10 +3212,10 @@ func (p *PartitionCorrupted) NEODecode(data []byte) (int, error) {
...
@@ -3284,10 +3212,10 @@ func (p *PartitionCorrupted) NEODecode(data []byte) (int, error) {
goto
overflow
goto
overflow
}
}
nread
+=
l
*
4
nread
+=
l
*
4
p
.
CellList
=
make
([]
UU
ID
,
l
)
p
.
CellList
=
make
([]
Node
ID
,
l
)
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
for
i
:=
0
;
uint32
(
i
)
<
l
;
i
++
{
a
:=
&
p
.
CellList
[
i
]
a
:=
&
p
.
CellList
[
i
]
(
*
a
)
=
UU
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
(
*
a
)
=
Node
ID
(
int32
(
binary
.
BigEndian
.
Uint32
(
data
[
0
:
])))
data
=
data
[
4
:
]
data
=
data
[
4
:
]
}
}
}
}
...
@@ -3297,10 +3225,10 @@ overflow:
...
@@ -3297,10 +3225,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 9
1
. LastTransaction
// 9
0
. LastTransaction
func
(
p
*
LastTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
LastTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
9
1
,
0
return
9
0
,
0
}
}
func
(
p
*
LastTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
LastTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3310,10 +3238,10 @@ func (p *LastTransaction) NEODecode(data []byte) (int, error) {
...
@@ -3310,10 +3238,10 @@ func (p *LastTransaction) NEODecode(data []byte) (int, error) {
return
0
,
nil
return
0
,
nil
}
}
// 9
2
. AnswerLastTransaction
// 9
1
. AnswerLastTransaction
func
(
p
*
AnswerLastTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
AnswerLastTransaction
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
9
2
,
8
return
9
1
,
8
}
}
func
(
p
*
AnswerLastTransaction
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
AnswerLastTransaction
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3331,10 +3259,10 @@ overflow:
...
@@ -3331,10 +3259,10 @@ overflow:
return
0
,
ErrDecodeOverflow
return
0
,
ErrDecodeOverflow
}
}
// 9
3
. NotifyReady
// 9
2
. NotifyReady
func
(
p
*
NotifyReady
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
func
(
p
*
NotifyReady
)
NEOEncodedInfo
()
(
uint16
,
int
)
{
return
9
3
,
0
return
9
2
,
0
}
}
func
(
p
*
NotifyReady
)
NEOEncode
(
data
[]
byte
)
{
func
(
p
*
NotifyReady
)
NEOEncode
(
data
[]
byte
)
{
...
@@ -3350,94 +3278,93 @@ var pktTypeRegistry = map[uint16]reflect.Type{
...
@@ -3350,94 +3278,93 @@ var pktTypeRegistry = map[uint16]reflect.Type{
1
:
reflect
.
TypeOf
(
NodeInfo
{}),
1
:
reflect
.
TypeOf
(
NodeInfo
{}),
2
:
reflect
.
TypeOf
(
CellInfo
{}),
2
:
reflect
.
TypeOf
(
CellInfo
{}),
3
:
reflect
.
TypeOf
(
RowInfo
{}),
3
:
reflect
.
TypeOf
(
RowInfo
{}),
4
:
reflect
.
TypeOf
(
XXXTest
{}),
4
:
reflect
.
TypeOf
(
Notify
{}),
5
:
reflect
.
TypeOf
(
Notify
{}),
5
:
reflect
.
TypeOf
(
Error
{}),
6
:
reflect
.
TypeOf
(
Error
{}),
6
:
reflect
.
TypeOf
(
Ping
{}),
7
:
reflect
.
TypeOf
(
Ping
{}),
7
:
reflect
.
TypeOf
(
CloseClient
{}),
8
:
reflect
.
TypeOf
(
CloseClient
{}),
8
:
reflect
.
TypeOf
(
RequestIdentification
{}),
9
:
reflect
.
TypeOf
(
RequestIdentification
{}),
9
:
reflect
.
TypeOf
(
AcceptIdentification
{}),
10
:
reflect
.
TypeOf
(
AcceptIdentification
{}),
10
:
reflect
.
TypeOf
(
PrimaryMaster
{}),
11
:
reflect
.
TypeOf
(
PrimaryMaster
{}),
11
:
reflect
.
TypeOf
(
AnswerPrimary
{}),
12
:
reflect
.
TypeOf
(
AnswerPrimary
{}),
12
:
reflect
.
TypeOf
(
AnnouncePrimary
{}),
13
:
reflect
.
TypeOf
(
AnnouncePrimary
{}),
13
:
reflect
.
TypeOf
(
ReelectPrimary
{}),
14
:
reflect
.
TypeOf
(
ReelectPrimary
{}),
14
:
reflect
.
TypeOf
(
Recovery
{}),
15
:
reflect
.
TypeOf
(
Recovery
{}),
15
:
reflect
.
TypeOf
(
AnswerRecovery
{}),
16
:
reflect
.
TypeOf
(
AnswerRecovery
{}),
16
:
reflect
.
TypeOf
(
LastIDs
{}),
17
:
reflect
.
TypeOf
(
LastIDs
{}),
17
:
reflect
.
TypeOf
(
AnswerLastIDs
{}),
18
:
reflect
.
TypeOf
(
AnswerLastIDs
{}),
18
:
reflect
.
TypeOf
(
X_PartitionTable
{}),
19
:
reflect
.
TypeOf
(
PartitionTable
{}),
19
:
reflect
.
TypeOf
(
AnswerPartitionTable
{}),
20
:
reflect
.
TypeOf
(
AnswerPartitionTable
{}),
20
:
reflect
.
TypeOf
(
NotifyPartitionTable
{}),
21
:
reflect
.
TypeOf
(
NotifyPartitionTable
{}),
21
:
reflect
.
TypeOf
(
PartitionChanges
{}),
22
:
reflect
.
TypeOf
(
PartitionChanges
{}),
22
:
reflect
.
TypeOf
(
StartOperation
{}),
23
:
reflect
.
TypeOf
(
StartOperation
{}),
23
:
reflect
.
TypeOf
(
StopOperation
{}),
24
:
reflect
.
TypeOf
(
StopOperation
{}),
24
:
reflect
.
TypeOf
(
UnfinishedTransactions
{}),
25
:
reflect
.
TypeOf
(
UnfinishedTransactions
{}),
25
:
reflect
.
TypeOf
(
AnswerUnfinishedTransactions
{}),
26
:
reflect
.
TypeOf
(
AnswerUnfinishedTransactions
{}),
26
:
reflect
.
TypeOf
(
LockedTransactions
{}),
27
:
reflect
.
TypeOf
(
LockedTransactions
{}),
27
:
reflect
.
TypeOf
(
AnswerLockedTransactions
{}),
28
:
reflect
.
TypeOf
(
AnswerLockedTransactions
{}),
28
:
reflect
.
TypeOf
(
FinalTID
{}),
29
:
reflect
.
TypeOf
(
FinalTID
{}),
29
:
reflect
.
TypeOf
(
AnswerFinalTID
{}),
30
:
reflect
.
TypeOf
(
AnswerFinalTID
{}),
30
:
reflect
.
TypeOf
(
ValidateTransaction
{}),
31
:
reflect
.
TypeOf
(
ValidateTransaction
{}),
31
:
reflect
.
TypeOf
(
BeginTransaction
{}),
32
:
reflect
.
TypeOf
(
BeginTransaction
{}),
32
:
reflect
.
TypeOf
(
AnswerBeginTransaction
{}),
33
:
reflect
.
TypeOf
(
AnswerBeginTransaction
{}),
33
:
reflect
.
TypeOf
(
FailedVote
{}),
34
:
reflect
.
TypeOf
(
FailedVote
{}),
34
:
reflect
.
TypeOf
(
FinishTransaction
{}),
35
:
reflect
.
TypeOf
(
FinishTransaction
{}),
35
:
reflect
.
TypeOf
(
AnswerFinishTransaction
{}),
36
:
reflect
.
TypeOf
(
AnswerFinishTransaction
{}),
36
:
reflect
.
TypeOf
(
NotifyTransactionFinished
{}),
37
:
reflect
.
TypeOf
(
NotifyTransactionFinished
{}),
37
:
reflect
.
TypeOf
(
LockInformation
{}),
38
:
reflect
.
TypeOf
(
LockInformation
{}),
38
:
reflect
.
TypeOf
(
AnswerLockInformation
{}),
39
:
reflect
.
TypeOf
(
AnswerLockInformation
{}),
39
:
reflect
.
TypeOf
(
InvalidateObjects
{}),
40
:
reflect
.
TypeOf
(
InvalidateObjects
{}),
40
:
reflect
.
TypeOf
(
UnlockInformation
{}),
41
:
reflect
.
TypeOf
(
UnlockInformation
{}),
41
:
reflect
.
TypeOf
(
GenerateOIDs
{}),
42
:
reflect
.
TypeOf
(
GenerateOIDs
{}),
42
:
reflect
.
TypeOf
(
AnswerGenerateOIDs
{}),
43
:
reflect
.
TypeOf
(
AnswerGenerateOIDs
{}),
43
:
reflect
.
TypeOf
(
Deadlock
{}),
44
:
reflect
.
TypeOf
(
Deadlock
{}),
44
:
reflect
.
TypeOf
(
RebaseTransaction
{}),
45
:
reflect
.
TypeOf
(
RebaseTransaction
{}),
45
:
reflect
.
TypeOf
(
AnswerRebaseTransaction
{}),
46
:
reflect
.
TypeOf
(
AnswerRebaseTransaction
{}),
46
:
reflect
.
TypeOf
(
RebaseObject
{}),
47
:
reflect
.
TypeOf
(
RebaseObject
{}),
47
:
reflect
.
TypeOf
(
AnswerRebaseObject
{}),
48
:
reflect
.
TypeOf
(
AnswerRebaseObject
{}),
48
:
reflect
.
TypeOf
(
StoreObject
{}),
49
:
reflect
.
TypeOf
(
StoreObject
{}),
49
:
reflect
.
TypeOf
(
AnswerStoreObject
{}),
50
:
reflect
.
TypeOf
(
AnswerStoreObject
{}),
50
:
reflect
.
TypeOf
(
AbortTransaction
{}),
51
:
reflect
.
TypeOf
(
AbortTransaction
{}),
51
:
reflect
.
TypeOf
(
StoreTransaction
{}),
52
:
reflect
.
TypeOf
(
StoreTransaction
{}),
52
:
reflect
.
TypeOf
(
VoteTransaction
{}),
53
:
reflect
.
TypeOf
(
VoteTransaction
{}),
53
:
reflect
.
TypeOf
(
GetObject
{}),
54
:
reflect
.
TypeOf
(
GetObject
{}),
54
:
reflect
.
TypeOf
(
AnswerGetObject
{}),
55
:
reflect
.
TypeOf
(
AnswerGetObject
{}),
55
:
reflect
.
TypeOf
(
TIDList
{}),
56
:
reflect
.
TypeOf
(
TIDList
{}),
56
:
reflect
.
TypeOf
(
AnswerTIDList
{}),
57
:
reflect
.
TypeOf
(
AnswerTIDList
{}),
57
:
reflect
.
TypeOf
(
TIDListFrom
{}),
58
:
reflect
.
TypeOf
(
TIDListFrom
{}),
58
:
reflect
.
TypeOf
(
AnswerTIDListFrom
{}),
59
:
reflect
.
TypeOf
(
AnswerTIDListFrom
{}),
59
:
reflect
.
TypeOf
(
TransactionInformation
{}),
60
:
reflect
.
TypeOf
(
TransactionInformation
{}),
60
:
reflect
.
TypeOf
(
AnswerTransactionInformation
{}),
61
:
reflect
.
TypeOf
(
AnswerTransactionInformation
{}),
61
:
reflect
.
TypeOf
(
ObjectHistory
{}),
62
:
reflect
.
TypeOf
(
ObjectHistory
{}),
62
:
reflect
.
TypeOf
(
AnswerObjectHistory
{}),
63
:
reflect
.
TypeOf
(
AnswerObjectHistory
{}),
63
:
reflect
.
TypeOf
(
PartitionList
{}),
64
:
reflect
.
TypeOf
(
PartitionList
{}),
64
:
reflect
.
TypeOf
(
AnswerPartitionList
{}),
65
:
reflect
.
TypeOf
(
AnswerPartitionList
{}),
65
:
reflect
.
TypeOf
(
NodeList
{}),
66
:
reflect
.
TypeOf
(
X_NodeList
{}),
66
:
reflect
.
TypeOf
(
AnswerNodeList
{}),
67
:
reflect
.
TypeOf
(
AnswerNodeList
{}),
67
:
reflect
.
TypeOf
(
SetNodeState
{}),
68
:
reflect
.
TypeOf
(
SetNodeState
{}),
68
:
reflect
.
TypeOf
(
AddPendingNodes
{}),
69
:
reflect
.
TypeOf
(
AddPendingNodes
{}),
69
:
reflect
.
TypeOf
(
TweakPartitionTable
{}),
70
:
reflect
.
TypeOf
(
TweakPartitionTable
{}),
70
:
reflect
.
TypeOf
(
NotifyNodeInformation
{}),
71
:
reflect
.
TypeOf
(
NotifyNodeInformation
{}),
71
:
reflect
.
TypeOf
(
NodeInformation
{}),
72
:
reflect
.
TypeOf
(
NodeInformation
{}),
72
:
reflect
.
TypeOf
(
SetClusterState
{}),
73
:
reflect
.
TypeOf
(
SetClusterState
{}),
73
:
reflect
.
TypeOf
(
repairFlags
{}),
74
:
reflect
.
TypeOf
(
repairFlags
{}),
74
:
reflect
.
TypeOf
(
Repair
{}),
75
:
reflect
.
TypeOf
(
Repair
{}),
75
:
reflect
.
TypeOf
(
RepairOne
{}),
76
:
reflect
.
TypeOf
(
RepairOne
{}),
76
:
reflect
.
TypeOf
(
ClusterInformation
{}),
77
:
reflect
.
TypeOf
(
ClusterInformation
{}),
77
:
reflect
.
TypeOf
(
X_ClusterState
{}),
78
:
reflect
.
TypeOf
(
X_ClusterState
{}),
78
:
reflect
.
TypeOf
(
ObjectUndoSerial
{}),
79
:
reflect
.
TypeOf
(
ObjectUndoSerial
{}),
79
:
reflect
.
TypeOf
(
AnswerObjectUndoSerial
{}),
80
:
reflect
.
TypeOf
(
AnswerObjectUndoSerial
{}),
80
:
reflect
.
TypeOf
(
CheckCurrentSerial
{}),
81
:
reflect
.
TypeOf
(
CheckCurrentSerial
{}),
81
:
reflect
.
TypeOf
(
Pack
{}),
82
:
reflect
.
TypeOf
(
Pack
{}),
82
:
reflect
.
TypeOf
(
AnswerPack
{}),
83
:
reflect
.
TypeOf
(
AnswerPack
{}),
83
:
reflect
.
TypeOf
(
CheckReplicas
{}),
84
:
reflect
.
TypeOf
(
CheckReplicas
{}),
84
:
reflect
.
TypeOf
(
CheckPartition
{}),
85
:
reflect
.
TypeOf
(
CheckPartition
{}),
85
:
reflect
.
TypeOf
(
CheckTIDRange
{}),
86
:
reflect
.
TypeOf
(
CheckTIDRange
{}),
86
:
reflect
.
TypeOf
(
AnswerCheckTIDRange
{}),
87
:
reflect
.
TypeOf
(
AnswerCheckTIDRange
{}),
87
:
reflect
.
TypeOf
(
CheckSerialRange
{}),
88
:
reflect
.
TypeOf
(
CheckSerialRange
{}),
88
:
reflect
.
TypeOf
(
AnswerCheckSerialRange
{}),
89
:
reflect
.
TypeOf
(
AnswerCheckSerialRange
{}),
89
:
reflect
.
TypeOf
(
PartitionCorrupted
{}),
90
:
reflect
.
TypeOf
(
PartitionCorrupted
{}),
90
:
reflect
.
TypeOf
(
LastTransaction
{}),
91
:
reflect
.
TypeOf
(
LastTransaction
{}),
91
:
reflect
.
TypeOf
(
AnswerLastTransaction
{}),
92
:
reflect
.
TypeOf
(
AnswerLastTransaction
{}),
92
:
reflect
.
TypeOf
(
NotifyReady
{}),
93
:
reflect
.
TypeOf
(
NotifyReady
{}),
}
}
go/neo/proto-str.go
View file @
421fda44
...
@@ -2,6 +2,11 @@
...
@@ -2,6 +2,11 @@
package
neo
package
neo
import
(
"fmt"
"strings"
)
// XXX or better translate to some other errors ?
// XXX or better translate to some other errors ?
// XXX here - not in proto.go - because else stringer will be confused
// XXX here - not in proto.go - because else stringer will be confused
func
(
e
*
Error
)
Error
()
string
{
func
(
e
*
Error
)
Error
()
string
{
...
@@ -32,7 +37,7 @@ func (nid NodeID) String() string {
...
@@ -32,7 +37,7 @@ func (nid NodeID) String() string {
// 's1', 'm2', for temporary nids
// 's1', 'm2', for temporary nids
if
temp
{
if
temp
{
s
=
strings
.
Lower
(
s
)
s
=
strings
.
To
Lower
(
s
)
}
}
return
s
return
s
...
...
go/neo/proto.go
View file @
421fda44
...
@@ -337,7 +337,8 @@ type AnswerLastIDs struct {
...
@@ -337,7 +337,8 @@ type AnswerLastIDs struct {
// Ask the full partition table. PM -> S.
// Ask the full partition table. PM -> S.
// Answer rows in a partition table. S -> PM.
// Answer rows in a partition table. S -> PM.
type
PartitionTable
struct
{
// XXX overlap with PartitionTable struct
type
X_PartitionTable
struct
{
}
}
type
AnswerPartitionTable
struct
{
type
AnswerPartitionTable
struct
{
...
...
go/neo/proto_test.go
View file @
421fda44
...
@@ -211,7 +211,7 @@ func TestPktMarshal(t *testing.T) {
...
@@ -211,7 +211,7 @@ func TestPktMarshal(t *testing.T) {
// map[uint32]UUID + trailing ...
// map[uint32]UUID + trailing ...
{
&
CheckReplicas
{
{
&
CheckReplicas
{
PartitionDict
:
map
[
uint32
]
UU
ID
{
PartitionDict
:
map
[
uint32
]
Node
ID
{
1
:
7
,
1
:
7
,
2
:
9
,
2
:
9
,
7
:
3
,
7
:
3
,
...
@@ -230,7 +230,7 @@ func TestPktMarshal(t *testing.T) {
...
@@ -230,7 +230,7 @@ func TestPktMarshal(t *testing.T) {
},
},
// uint32, []uint32
// uint32, []uint32
{
&
PartitionCorrupted
{
7
,
[]
UU
ID
{
1
,
3
,
9
,
4
}},
{
&
PartitionCorrupted
{
7
,
[]
Node
ID
{
1
,
3
,
9
,
4
}},
u32
(
7
)
+
u32
(
4
)
+
u32
(
1
)
+
u32
(
3
)
+
u32
(
9
)
+
u32
(
4
),
u32
(
7
)
+
u32
(
4
)
+
u32
(
1
)
+
u32
(
3
)
+
u32
(
9
)
+
u32
(
4
),
},
},
...
...
go/neo/server.go
View file @
421fda44
...
@@ -119,10 +119,10 @@ func IdentifyPeer(link *NodeLink, myNodeType NodeType) (nodeInfo RequestIdentifi
...
@@ -119,10 +119,10 @@ func IdentifyPeer(link *NodeLink, myNodeType NodeType) (nodeInfo RequestIdentifi
err
=
EncodeAndSend
(
conn
,
&
AcceptIdentification
{
err
=
EncodeAndSend
(
conn
,
&
AcceptIdentification
{
NodeType
:
myNodeType
,
NodeType
:
myNodeType
,
My
UUID
:
0
,
// XXX
My
NodeID
:
0
,
// XXX
NumPartitions
:
0
,
// XXX
NumPartitions
:
0
,
// XXX
NumReplicas
:
0
,
// XXX
NumReplicas
:
0
,
// XXX
Your
UUID
:
pkt
.
UU
ID
,
Your
NodeID
:
pkt
.
Node
ID
,
Primary
:
Address
{},
// XXX
Primary
:
Address
{},
// XXX
//KnownMasterList: // XXX
//KnownMasterList: // XXX
})
})
...
@@ -154,7 +154,7 @@ func IdentifyMe(link *NodeLink, nodeType NodeType /*XXX*/) (peerType NodeType, e
...
@@ -154,7 +154,7 @@ func IdentifyMe(link *NodeLink, nodeType NodeType /*XXX*/) (peerType NodeType, e
err
=
EncodeAndSend
(
conn
,
&
RequestIdentification
{
err
=
EncodeAndSend
(
conn
,
&
RequestIdentification
{
ProtocolVersion
:
PROTOCOL_VERSION
,
ProtocolVersion
:
PROTOCOL_VERSION
,
NodeType
:
nodeType
,
NodeType
:
nodeType
,
UU
ID
:
0
,
// XXX
Node
ID
:
0
,
// XXX
Address
:
Address
{},
// XXX
Address
:
Address
{},
// XXX
Name
:
""
,
// XXX cluster name ?
Name
:
""
,
// XXX cluster name ?
IdTimestamp
:
0
,
// XXX
IdTimestamp
:
0
,
// XXX
...
...
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