-
Notifications
You must be signed in to change notification settings - Fork 5
/
paxos_protocol.h
145 lines (124 loc) · 2.17 KB
/
paxos_protocol.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#ifndef paxos_protocol_h
#define paxos_protocol_h
#include "rpc.h"
struct prop_t {
unsigned n; // proposal number
std::string m; // node identifier
};
class paxos_protocol {
public:
enum xxstatus { OK, ERR };
typedef int status;
enum rpc_numbers {
preparereq = 0x11001,
acceptreq,
decidereq,
heartbeat,
};
struct preparearg {
unsigned instance;
prop_t n;
};
struct prepareres {
// oldinstance and accept can not both be true.
bool oldinstance;
bool accept;
// valid if oldinstance = true.
std::string instance_v;
// valid if accept = true.
prop_t n_a;
std::string v_a;
// valid if oldinstance = accept = false.
prop_t n_h;
};
struct acceptarg {
unsigned instance;
prop_t n;
std::string v;
};
struct decidearg {
unsigned instance;
std::string v;
};
};
inline unmarshall &
operator>>(unmarshall &u, prop_t &a)
{
u >> a.n;
u >> a.m;
return u;
}
inline marshall &
operator<<(marshall &m, prop_t a)
{
m << a.n;
m << a.m;
return m;
}
inline unmarshall &
operator>>(unmarshall &u, paxos_protocol::preparearg &a)
{
u >> a.instance;
u >> a.n;
return u;
}
inline marshall &
operator<<(marshall &m, paxos_protocol::preparearg a)
{
m << a.instance;
m << a.n;
return m;
}
inline unmarshall &
operator>>(unmarshall &u, paxos_protocol::prepareres &r)
{
u >> r.oldinstance;
u >> r.accept;
u >> r.instance_v;
u >> r.n_a;
u >> r.v_a;
u >> r.n_h;
return u;
}
inline marshall &
operator<<(marshall &m, paxos_protocol::prepareres r)
{
m << r.oldinstance;
m << r.accept;
m << r.instance_v;
m << r.n_a;
m << r.v_a;
m << r.n_h;
return m;
}
inline unmarshall &
operator>>(unmarshall &u, paxos_protocol::acceptarg &a)
{
u >> a.instance;
u >> a.n;
u >> a.v;
return u;
}
inline marshall &
operator<<(marshall &m, paxos_protocol::acceptarg a)
{
m << a.instance;
m << a.n;
m << a.v;
return m;
}
inline unmarshall &
operator>>(unmarshall &u, paxos_protocol::decidearg &a)
{
u >> a.instance;
u >> a.v;
return u;
}
inline marshall &
operator<<(marshall &m, paxos_protocol::decidearg a)
{
m << a.instance;
m << a.v;
return m;
}
#endif