Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
c99606ff
Commit
c99606ff
authored
Sep 12, 2016
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
9ebd0a41
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
266 additions
and
14 deletions
+266
-14
t/pkt.go
t/pkt.go
+266
-14
No files found.
t/pkt.go
View file @
c99606ff
package
pkt
// TODO .TID -> .Tid etc ?
const
(
PROTOCOL_VERSION
=
6
...
...
@@ -73,10 +75,11 @@ const (
)
// XXX move out of here ?
type
TID
struct
uint64
// XXX or [8]byte ?
type
OID
struct
uint64
// XXX or [8]byte ?
type
TID
uint64
// XXX or [8]byte ?
type
OID
uint64
// XXX or [8]byte ?
const
(
INVALID_UUID
UUID
=
0
INVALID_TID
TID
=
0xffffffffffffffff
// 1<<64 - 1
INVALID_OID
OID
=
0xffffffffffffffff
// 1<<64 - 1
ZERO_TID
TID
=
0
// XXX or simply TID{} ?
...
...
@@ -86,8 +89,26 @@ const (
MAX_TID
TID
=
0x7fffffffffffffff
// SQLite does not accept numbers above 2^63-1
)
// An UUID (node identifier, 4-bytes signed integer)
type
UUID
int32
// TODO UUID_NAMESPACES
type
CellList
[]
struct
{
UUID
UUID
// XXX maybe simply 'UUID' ?
CellState
CellState
// ----///----
}
type
RowList
[]
struct
{
Offset
uint32
// PNumber
CellList
CellList
}
type
OIDList
[]
struct
{
OID
OID
}
// XXX link request <-> answer ?
// TODO ensure len(encoded packet header) == 10
type
Packet
struct
{
...
...
@@ -130,7 +151,7 @@ type RequestIdentification struct {
Packet
ProtocolVersion
PProtocol
// TODO
NodeType
NodeType
// XXX name
UUID
PUUID
// TODO
UUID
UUID
Address
PAddress
// TODO
Name
string
}
...
...
@@ -139,14 +160,14 @@ type RequestIdentification struct {
type
AcceptIdentification
struct
{
Packet
NodeType
NodeType
// XXX name
MyUUID
PUUID
// TODO
MyUUID
UUID
NumPartitions
uint32
// PNumber
NumReplicas
uint32
// PNumber
YourUUID
PUUID
// TODO
YourUUID
UUID
Primary
PAddress
// TODO
KnownMasterList
[]
struct
{
Address
PAddress
UUID
P
UUID
UUID
UUID
}
}
...
...
@@ -157,7 +178,7 @@ type PrimaryMaster struct {
type
AnswerPrimary
struct
{
Packet
PrimaryUUID
PUUID
// TODO
PrimaryUUID
UUID
}
// Announce a primary master node election. PM -> SM.
...
...
@@ -203,6 +224,237 @@ type PartitionTable struct {
type
AnswerPartitionTable
struct
{
Packet
PTID
PPTID
// TODO
PFRowList
,
)
RowList
RowList
}
// Send rows in a partition table to update other nodes. PM -> S, C.
type
NotifyPartitionTable
struct
{
Packet
PTID
PPTID
// TODO
RowList
RowList
}
// Notify a subset of a partition table. This is used to notify changes.
// PM -> S, C.
type
PartitionChanges
struct
Packet
PTID
PPTID
// TODO
CellList
[]
struct
{
// XXX does below correlate with Cell inside top-level CellList ?
Offset
uint32
// PNumber
UUID
UUID
CellState
CellState
}
}
// Tell a storage nodes to start an operation. Until a storage node receives
// this message, it must not serve client nodes. PM -> S.
type
StartOperation
struct
{
Packet
// XXX: Is this boolean needed ? Maybe this
// can be deduced from cluster state.
Backup
bool
}
// Tell a storage node to stop an operation. Once a storage node receives
// this message, it must not serve client nodes. PM -> S.
type
StopOperation
struct
{
Packet
}
// Ask unfinished transactions S -> PM.
// Answer unfinished transactions PM -> S.
type
UnfinishedTransactions
struct
{
Packet
}
type
AnswerUnfinishedTransactions
struct
{
Packet
MaxTID
TID
TidList
[]
struct
{
UnfinishedTID
TID
}
}
// Ask locked transactions PM -> S.
// Answer locked transactions S -> PM.
type
LockedTransactions
struct
{
Packet
}
type
AnswerLockedTransactions
struct
{
Packet
TidDict
map
[
TID
]
TID
// ttid -> tid
}
// Return final tid if ttid has been committed. * -> S. C -> PM.
type
FinalTID
struct
{
Packet
TTID
TID
}
type
AnswerFinalTID
struct
{
Packet
TID
TID
}
// Commit a transaction. PM -> S.
type
ValidateTransaction
struct
{
Packet
TTID
TID
Tid
TID
}
// Ask to begin a new transaction. C -> PM.
// Answer when a transaction begin, give a TID if necessary. PM -> C.
type
BeginTransaction
struct
{
Packet
TID
TID
}
type
AnswerBeginTransaction
struct
{
Packet
TID
TID
}
// Finish a transaction. C -> PM.
// Answer when a transaction is finished. PM -> C.
type
FinishTransaction
struct
{
Packet
TID
TID
OIDList
OIDList
CheckedList
OIDList
}
type
AnswerFinishTransaction
struct
{
Packet
TTID
TID
TID
TID
}
// Notify that a transaction blocking a replication is now finished
// M -> S
type
NotifyTransactionFinished
struct
{
Packet
TTID
TID
MaxTID
TID
}
// Lock information on a transaction. PM -> S.
// Notify information on a transaction locked. S -> PM.
type
LockInformation
struct
{
Packet
Ttid
TID
Tid
TID
}
// XXX AnswerInformationLocked ?
type
AnswerLockInformation
struct
{
Ttid
TID
}
// Invalidate objects. PM -> C.
// XXX ask_finish_transaction ?
type
InvalidateObjects
struct
{
Packet
TID
TID
OidList
OidList
}
// Unlock information on a transaction. PM -> S.
type
UnlockInformation
struct
{
Packet
TTID
TID
}
// Ask new object IDs. C -> PM.
// Answer new object IDs. PM -> C.
type
GenerateOIDs
struct
{
Packet
NumOIDs
uint32
// PNumber
}
// XXX answer_new_oids ?
type
AnswerGenerateOIDs
struct
{
Packet
OidList
}
// Ask to store an object. Send an OID, an original serial, a current
// transaction ID, and data. C -> S.
// Answer if an object has been stored. If an object is in conflict,
// a serial of the conflicting transaction is returned. In this case,
// if this serial is newer than the current transaction ID, a client
// node must not try to resolve the conflict. S -> C.
type
StoreObject
struct
{
Packet
OID
OID
Serial
TID
Compression
bool
Checksum
PChecksum
// TODO
Data
[]
byte
// XXX or string ?
DataSerial
TID
TID
TID
Unlock
bool
}
type
AnswerStoreObject
struct
{
Packet
Conflicting
bool
OID
OID
Serial
TID
}
// Abort a transaction. C -> S, PM.
type
AbortTransaction
struct
{
Packet
TID
TID
}
// Ask to store a transaction. C -> S.
// Answer if transaction has been stored. S -> C.
type
StoreTransaction
struct
{
Packet
TID
TID
User
string
Description
string
Extension
string
OidList
// TODO _answer = PFEmpty
}
// Ask to store a transaction. C -> S.
// Answer if transaction has been stored. S -> C.
type
VoteTransaction
struct
{
Packet
TID
TID
// TODO _answer = PFEmpty
}
// Ask a stored object by its OID and a serial or a TID if given. If a serial
// is specified, the specified revision of an object will be returned. If
// a TID is specified, an object right before the TID will be returned. C -> S.
// Answer the requested object. S -> C.
type
GetObject
struct
{
Packet
OID
OID
Serial
TID
TID
TID
}
// XXX answer_object ?
type
AnswerGetObject
struct
{
Packet
OID
OID
SerialStart
TID
SerialEnd
TID
Compression
bool
Checksum
PChecksum
Data
[]
byte
// XXX or string ?
DataSerial
TID
}
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