Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on May 20, 2022. It is now read-only.
forked from hydro-project/anna
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.cpp
More file actions
Latest commit
252 lines (204 loc) · 7.35 KB
/
Copy pathcli.cpp
File metadata and controls
252 lines (204 loc) · 7.35 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
// Copyright 2019 U.C. Berkeley RISE Lab
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include<fstream>
#include"client/kvs_client.hpp"
#include"yaml-cpp/yaml.h"
#include<assert.h>
unsignedkRoutingThreadCount;
ZmqUtil zmq_util;
ZmqUtilInterface *kZmqUtil = &zmq_util;
voidprint_set(set<string> set) {
std::cout << "{ ";
for (const string &val : set) {
std::cout << val << "";
}
std::cout << "}" << std::endl;
}
voidhandle_request(KvsClientInterface *client, string input) {
vector<string> v;
split(input, '', v);
if (v[0] == "GET") {
client->get_async(v[1]);
vector<KeyResponse> responses = client->receive_async();
while (responses.size() == 0) {
responses = client->receive_async();
}
if (responses.size() > 1) {
std::cout << "Error: received more than one response" << std::endl;
}
assert(responses[0].tuples(0).lattice_type() == LatticeType::LWW);
LWWPairLattice<string> lww_lattice =
deserialize_lww(responses[0].tuples(0).payload());
std::cout << lww_lattice.reveal().value << std::endl;
} elseif (v[0] == "GET_CAUSAL") {
// currently this mode is only for testing purpose
client->get_async(v[1]);
vector<KeyResponse> responses = client->receive_async();
while (responses.size() == 0) {
responses = client->receive_async();
}
if (responses.size() > 1) {
std::cout << "Error: received more than one response" << std::endl;
}
assert(responses[0].tuples(0).lattice_type() == LatticeType::MULTI_CAUSAL);
MultiKeyCausalLattice<SetLattice<string>> mkcl =
MultiKeyCausalLattice<SetLattice<string>>(to_multi_key_causal_payload(
deserialize_multi_key_causal(responses[0].tuples(0).payload())));
for (constauto &pair : mkcl.reveal().vector_clock.reveal()) {
std::cout << "{" << pair.first << " : "
<< std::to_string(pair.second.reveal()) << "}" << std::endl;
}
for (constauto &dep_key_vc_pair : mkcl.reveal().dependencies.reveal()) {
std::cout << dep_key_vc_pair.first << " : ";
for (constauto &vc_pair : dep_key_vc_pair.second.reveal()) {
std::cout << "{" << vc_pair.first << " : "
<< std::to_string(vc_pair.second.reveal()) << "}"
<< std::endl;
}
}
std::cout << *(mkcl.reveal().value.reveal().begin()) << std::endl;
} elseif (v[0] == "PUT") {
Key key = v[1];
LWWPairLattice<string> val(
TimestampValuePair<string>(generate_timestamp(0), v[2]));
string rid = client->put_async(key, serialize(val), LatticeType::LWW);
vector<KeyResponse> responses = client->receive_async();
while (responses.size() == 0) {
responses = client->receive_async();
}
KeyResponse response = responses[0];
if (response.response_id() != rid) {
std::cout << "Invalid response: ID did not match request ID!"
<< std::endl;
}
if (response.tuples()[0].error() == AnnaError::NO_ERROR) {
std::cout << "Success!" << std::endl;
} else {
std::cout << "Failure!" << std::endl;
}
} elseif (v[0] == "PUT_CAUSAL") {
// currently this mode is only for testing purpose
Key key = v[1];
MultiKeyCausalPayload<SetLattice<string>> mkcp;
// construct a test client id - version pair
mkcp.vector_clock.insert("test", 1);
// construct one test dependencies
mkcp.dependencies.insert(
"dep1", VectorClock(map<string, MaxLattice<unsigned>>({{"test1", 1}})));
// populate the value
mkcp.value.insert(v[2]);
MultiKeyCausalLattice<SetLattice<string>> mkcl(mkcp);
string rid =
client->put_async(key, serialize(mkcl), LatticeType::MULTI_CAUSAL);
vector<KeyResponse> responses = client->receive_async();
while (responses.size() == 0) {
responses = client->receive_async();
}
KeyResponse response = responses[0];
if (response.response_id() != rid) {
std::cout << "Invalid response: ID did not match request ID!"
<< std::endl;
}
if (response.tuples()[0].error() == AnnaError::NO_ERROR) {
std::cout << "Success!" << std::endl;
} else {
std::cout << "Failure!" << std::endl;
}
} elseif (v[0] == "PUT_SET") {
set<string> set;
for (int i = 2; i < v.size(); i++) {
set.insert(v[i]);
}
string rid = client->put_async(v[1], serialize(SetLattice<string>(set)),
LatticeType::SET);
vector<KeyResponse> responses = client->receive_async();
while (responses.size() == 0) {
responses = client->receive_async();
}
KeyResponse response = responses[0];
if (response.response_id() != rid) {
std::cout << "Invalid response: ID did not match request ID!"
<< std::endl;
}
if (response.tuples()[0].error() == AnnaError::NO_ERROR) {
std::cout << "Success!" << std::endl;
} else {
std::cout << "Failure!" << std::endl;
}
} elseif (v[0] == "GET_SET") {
client->get_async(v[1]);
string serialized;
vector<KeyResponse> responses = client->receive_async();
while (responses.size() == 0) {
responses = client->receive_async();
}
SetLattice<string> latt = deserialize_set(responses[0].tuples(0).payload());
print_set(latt.reveal());
} else {
std::cout << "Unrecognized command " << v[0]
<< ". Valid commands are GET, GET_SET, PUT, PUT_SET, PUT_CAUSAL, "
<< "and GET_CAUSAL." << std::endl;
;
}
}
voidrun(KvsClientInterface *client) {
string input;
while (true) {
std::cout << "kvs> ";
getline(std::cin, input);
handle_request(client, input);
}
}
voidrun(KvsClientInterface *client, string filename) {
string input;
std::ifstream infile(filename);
while (getline(infile, input)) {
handle_request(client, input);
}
}
intmain(int argc, char *argv[]) {
if (argc < 2 || argc > 3) {
std::cerr << "Usage: " << argv[0] << " conf-file <input-file>" << std::endl;
std::cerr
<< "Filename is optional. Omit the filename to run in interactive mode."
<< std::endl;
return1;
}
// read the YAML conf
YAML::Node conf = YAML::LoadFile(argv[1]);
kRoutingThreadCount = conf["threads"]["routing"].as<unsigned>();
YAML::Node user = conf["user"];
Address ip = user["ip"].as<Address>();
vector<Address> routing_ips;
if (YAML::Node elb = user["routing-elb"]) {
routing_ips.push_back(elb.as<string>());
} else {
YAML::Node routing = user["routing"];
for (constYAML::Node &node : routing) {
routing_ips.push_back(node.as<Address>());
}
}
vector<UserRoutingThread> threads;
for (Address addr : routing_ips) {
for (unsigned i = 0; i < kRoutingThreadCount; i++) {
threads.push_back(UserRoutingThread(addr, i));
}
}
KvsClient client(threads, ip, 0, 10000);
if (argc == 2) {
run(&client);
} else {
run(&client, argv[2]);
}
}