-
Notifications
You must be signed in to change notification settings - Fork 0
/
lock_smain.cc
54 lines (43 loc) · 1.21 KB
/
lock_smain.cc
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
#include "rpc.h"
#include <arpa/inet.h>
#include <stdlib.h>
#include <stdio.h>
#include "lock_server_cache.h"
#include "paxos.h"
#include "rsm.h"
#include "jsl_log.h"
// Main loop of lock_server
int
main(int argc, char *argv[])
{
int count = 0;
setvbuf(stdout, NULL, _IONBF, 0);
setvbuf(stderr, NULL, _IONBF, 0);
srandom(getpid());
if(argc != 3){
fprintf(stderr, "Usage: %s [master:]port [me:]port\n", argv[0]);
exit(1);
}
char *count_env = getenv("RPC_COUNT");
if(count_env != NULL){
count = atoi(count_env);
}
//jsl_set_debug(2);
// Comment out the next line to switch between the ordinary lock
// server and the RSM. In Lab 7, we disable the lock server and
// implement Paxos. In Lab 8, we will make the lock server use your
// RSM layer.
#define RSM
#ifdef RSM
rsm rsm(argv[1], argv[2]);
#endif
#ifndef RSM
lock_server_cache ls;
rpcs server(atoi(argv[1]), count);
server.reg(lock_protocol::stat, &ls, &lock_server_cache::stat); // register stat()
server.reg(lock_protocol::acquire, &ls, &lock_server_cache::acquire); // register acquire()
server.reg(lock_protocol::release, &ls, &lock_server_cache::release); // register release()
#endif
while(1)
sleep(1000);
}