forked from beanstalkd/beanstalkd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serv.c
80 lines (67 loc) · 1.66 KB
/
serv.c
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
#include "dat.h"
#include <stdint.h>
#include <stdlib.h>
#include <sys/socket.h>
struct Server srv = {
.port = Portdef,
.wal = {
.filesize = Filesizedef,
.wantsync = 1,
.syncrate = DEFAULT_FSYNC_MS * 1000000,
},
};
// srv_acquire_wal tries to lock the wal dir specified by s->wal and
// replay entries from it to initialize the s state with jobs.
// On errors it exits from the program.
void srv_acquire_wal(Server *s) {
if (s->wal.use) {
// We want to make sure that only one beanstalkd tries
// to use the wal directory at a time. So acquire a lock
// now and never release it.
if (!waldirlock(&s->wal)) {
twarnx("failed to lock wal dir %s", s->wal.dir);
exit(10);
}
Job list = {.prev=NULL, .next=NULL};
list.prev = list.next = &list;
walinit(&s->wal, &list);
int ok = prot_replay(s, &list);
if (!ok) {
twarnx("failed to replay log");
exit(1);
}
}
}
void
srvserve(Server *s)
{
Socket *sock;
if (sockinit() == -1) {
twarnx("sockinit");
exit(1);
}
s->sock.x = s;
s->sock.f = (Handle)srvaccept;
s->conns.less = conn_less;
s->conns.setpos = conn_setpos;
if (sockwant(&s->sock, 'r') == -1) {
twarn("sockwant");
exit(2);
}
for (;;) {
int64 period = prottick(s);
int rw = socknext(&sock, period);
if (rw == -1) {
twarnx("socknext");
exit(1);
}
if (rw) {
sock->f(sock->x, rw);
}
}
}
void
srvaccept(Server *s, int ev)
{
h_accept(s->sock.fd, ev, s);
}