-
Notifications
You must be signed in to change notification settings - Fork 0
/
lock_client.cc
52 lines (45 loc) · 1.14 KB
/
lock_client.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
// RPC stubs for clients to talk to lock_server
#include "lock_client.h"
#include "rpc.h"
#include <arpa/inet.h>
#include <sstream>
#include <iostream>
#include <stdio.h>
#include <unistd.h>
lock_client::lock_client(std::string dst)
{
sockaddr_in dstsock;
make_sockaddr(dst.c_str(), &dstsock);
cl = new rpcc(dstsock);
if (cl->bind() < 0) {
printf("lock_client: call bind\n");
}
}
lock_protocol::status
lock_client::stat(lock_protocol::lockid_t lid)
{
lock_protocol::status r;
lock_protocol::status ret = cl->call(lock_protocol::stat, cl->id(), lid, r);
VERIFY (ret == lock_protocol::OK);
return r;
}
lock_protocol::status
lock_client::acquire(lock_protocol::lockid_t lid)
{
lock_protocol::status r;
lock_protocol::status ret;
do {
ret = cl->call(lock_protocol::acquire, cl->id(), lid, r);
usleep(200);
} while (ret == lock_protocol::RETRY);
VERIFY (ret == lock_protocol::OK);
return r;
}
lock_protocol::status
lock_client::release(lock_protocol::lockid_t lid)
{
lock_protocol::status r;
lock_protocol::status ret = cl->call(lock_protocol::release, cl->id(), lid, r);
VERIFY (ret == lock_protocol::OK);
return r;
}