-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshmserver.c
106 lines (86 loc) · 1.54 KB
/
shmserver.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
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <err.h>
#include "shm_config.h"
#include "shmqueue.h"
void usage(void);
int reap_items(void);
struct shmqueue *shmqueue;
void
usage()
{
printf("usage: shmserver [-afi]\n");
}
int
reap_items()
{
int i, nexpire;
struct keyvalue kv;
shmqueue_dump(shmqueue);
nexpire = 0;
for (i = 0; i < 5000; i++) {
#if 1
if (!shmqueue_watermark(shmqueue))
break;
#else
if (shmqueue_inuse(shmqueue) < 5000)
break;
#endif
/* XXX: TODO */
/* fetch from expire queue, and store to db */
if (shmqueue_getoldest(shmqueue, &kv) != 0)
break;
if ((i & 0xff) == 0) {
fprintf(stderr, "EXPIRE: key=<%s>, storage_size=%u, storage=<%s>\n",
KEYVALUE_KEY(&kv),
kv.kv_storagesize,
KEYVALUE_STORAGE(&kv));
fflush(stdout);
}
nexpire++;
}
fflush(stdout);
return nexpire;
}
int
main(int argc, char *argv[])
{
int ch;
int opt_a = 0, opt_f = 0, opt_i = 0;
while ((ch = getopt(argc, argv, "afi")) != -1) {
switch (ch) {
case 'a':
opt_a = 1;
break;
case 'f':
opt_f = 1;
break;
case 'i':
opt_i = 1;
break;
default:
usage();
return 1;
}
}
argc -= optind;
argv += optind;
shmqueue = shmqueue_new(MEMID, MEMSIZE, !opt_i, 1);
if (shmqueue == NULL) {
shmqueue = shmqueue_new(MEMID, 0, !opt_i, 1);
if (shmqueue == NULL)
err(1, "shmqueue_new");
}
while (1) {
if (reap_items() == 0) {
// sleep(1);
}
}
return 0;
}