-
Notifications
You must be signed in to change notification settings - Fork 0
/
lock_client.cc
47 lines (40 loc) · 1005 Bytes
/
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
// 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>
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");
}
}
int
lock_client::stat(lock_protocol::lockid_t lid)
{
int 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)
{
int r;
lock_protocol::status ret = cl->call(lock_protocol::acquire, cl->id(), lid, r);
VERIFY (ret == lock_protocol::OK);
return r;
}
lock_protocol::status
lock_client::release(lock_protocol::lockid_t lid)
{
int r;
lock_protocol::status ret = cl->call(lock_protocol::release, cl->id(), lid, r);
VERIFY (ret == lock_protocol::OK);
return r;
}