-
Notifications
You must be signed in to change notification settings - Fork 25
/
jthreadtest.c
279 lines (262 loc) · 8.8 KB
/
jthreadtest.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
/*
* Copyright (c) 2005-2008, Message Systems, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name Message Systems, Inc. nor the names
* of its contributors may be used to endorse or promote products
* derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
#include <stdint.h>
#include "jlog_config.h"
#include "jlog.h"
#include "jlog_private.h"
#define MASTER "master"
#define LOGNAME "/tmp/jtest.foo"
int writer_done = 0;
int only_read = 0;
int only_write = 0;
int error = 0;
static void _croak(int lineno)
{
fprintf(stderr, "croaked at line %d\n", lineno);
error=1;
}
#define croak() _croak(__LINE__)
void jcreate(jlog_safety s) {
jlog_ctx *ctx;
const char *label = NULL;
switch (s) {
case JLOG_ALMOST_SAFE: label = "almost safe"; break;
case JLOG_UNSAFE: label = "unsafe"; break;
case JLOG_SAFE: label = "safe"; break;
}
fprintf(stderr, "jcreate %s in %s mode\n", LOGNAME, label);
ctx = jlog_new(LOGNAME);
jlog_ctx_alter_journal_size(ctx, 102400);
jlog_ctx_alter_safety(ctx, s);
if(jlog_ctx_init(ctx) != 0) {
fprintf(stderr, "jlog_ctx_init failed: %d %s\n", jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
if(jlog_ctx_err(ctx) != JLOG_ERR_CREATE_EXISTS) exit(0);
} else {
jlog_ctx_add_subscriber(ctx, MASTER, JLOG_BEGIN);
}
jlog_ctx_close(ctx);
}
void *writer(void *unused) {
jlog_ctx *ctx;
int i;
char foo[72];
ctx = jlog_new(LOGNAME);
memset(foo, 'X', sizeof(foo)-1);
foo[sizeof(foo)-1] = '\0';
if(jlog_ctx_open_writer(ctx) != 0) {
fprintf(stderr, "jlog_ctx_open_writer failed: %d %s\n", jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
croak();
}
#ifdef TEST_UNIT_LIMIT
newsize = 1024*1024 + (((intptr_t)unused) % (1024 * 1024));
fprintf(stderr, "writer setting new unit_limit to %d\n", (int)newsize);
jlog_ctx_alter_journal_size(ctx, newsize);
#endif
for(i=0;i<10000;i++) {
int rv;
rv = jlog_ctx_write(ctx, foo, strlen(foo));
if(rv != 0) {
fprintf(stderr, "jlog_ctx_write_message failed: %d %s\n", jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
/* abort(); */
}
usleep(100);
}
fprintf(stderr, "writer thinks unit_limit is %d\n", ctx->meta->unit_limit);
jlog_ctx_close(ctx);
writer_done = 1;
return 0;
}
void *reader(void *unused) {
jlog_ctx *ctx;
char subname[32];
int tcount = 0, fcount = 0;
int prev_err = 0;
int subno = (int)(uintptr_t)unused;
snprintf(subname, sizeof(subname), "sub-%02d", subno);
reader_retry:
ctx = jlog_new(LOGNAME);
if(jlog_ctx_open_reader(ctx, subname) != 0) {
if(prev_err == 0) {
prev_err = jlog_ctx_err(ctx);
jlog_ctx_close(ctx);
ctx = jlog_new(LOGNAME);
if(prev_err == JLOG_ERR_INVALID_SUBSCRIBER) {
fprintf(stderr, "[%02d] invalid subscriber, init...\n", subno);
if(jlog_ctx_open_writer(ctx) != 0) {
fprintf(stderr, "[%02d] jlog_ctx_open_writer failed: %d %s\n", subno, jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
} else {
if(jlog_ctx_add_subscriber(ctx, subname, JLOG_BEGIN) != 0) {
fprintf(stderr, "[%02d] jlog_ctx_add_subscriber failed: %d %s\n", subno, jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
} else {
jlog_ctx_close(ctx);
goto reader_retry;
}
}
}
}
fprintf(stderr, "[%02d] jlog_ctx_open_reader failed: %d %s\n", subno, jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
croak();
}
fprintf(stderr, "[%02d] reader started\n", subno);
while(1) {
char begins[20], ends[20];
jlog_id begin, end;
int count;
jlog_message message;
if((count = jlog_ctx_read_interval(ctx, &begin, &end)) == -1) {
fprintf(stderr, "jlog_ctx_read_interval failed: %d %s\n", jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
croak();
}
jlog_snprint_logid(begins, sizeof(begins), &begin);
jlog_snprint_logid(ends, sizeof(ends), &end);
if(count > 0) {
int i;
//fprintf(stderr, "[%02d] reader (%s, %s] count: %d\n", subno, begins, ends, count);
for(i=0; i<count; i++, JLOG_ID_ADVANCE(&begin)) {
end = begin;
if(jlog_ctx_read_message(ctx, &begin, &message) != 0) {
if(jlog_ctx_err(ctx) == JLOG_ERR_CLOSE_LOGID) {
/* fine */
} else {
fcount++;
jlog_snprint_logid(begins, sizeof(begins), &begin);
fprintf(stderr, "[%02d] read failed @ %s: %d %s\n", subno, begins, jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
}
} else {
tcount++;
jlog_snprint_logid(begins, sizeof(begins), &begin);
/* fprintf(stderr, "[%02d] read: [%s]\n\t'%.*s'\n", subno, begins,
message.mess_len, (char *)message.mess); */
}
}
if(jlog_ctx_read_checkpoint(ctx, &end) != 0) {
fprintf(stderr, "[%02d] checkpoint failed: %d %s\n", subno, jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
} else {
fprintf(stderr, "[%02d] \tcheckpointed...\n", subno);
}
} else {
if(writer_done == 1) break;
}
}
fprintf(stderr, "[%02d] reader read %d, failed %d\n", subno, tcount, fcount);
jlog_ctx_close(ctx);
return (void *)(uintptr_t)tcount;
}
static void usage(void)
{
fprintf(stderr,
"usage: jthreadtest safety [safe|unsafe|almost_safe]\n"
" jthreadtest remove [subscriber]\n\n");
exit(1);
}
#define THRCNT 20
#define WTHRCNT 5
int main(int argc, char **argv) {
int i;
char *toremove = NULL;
jlog_safety safety = JLOG_ALMOST_SAFE;
pthread_t tid[THRCNT], wtid[WTHRCNT];
void *foo;
#if _WIN32
mem_init();
#endif
if(argc == 3) {
if(!strcmp(argv[1], "safety")) {
if(!strcmp(argv[2], "unsafe"))
safety = JLOG_UNSAFE;
else if(!strcmp(argv[2], "almost_safe"))
safety = JLOG_ALMOST_SAFE;
else if(!strcmp(argv[2], "safe"))
safety = JLOG_SAFE;
else {
fprintf(stderr, "invalid safety option\n");
usage();
}
} else if(!strcmp(argv[1], "only")) {
if(!strcmp(argv[2], "read")) only_read = 1;
else if(!strcmp(argv[2], "write")) only_write = 1;
else usage();
} else if(!strcmp(argv[1], "remove")) {
toremove = argv[2];
} else {
usage();
}
} else if(argc < 3 || argc > 3) {
usage();
}
jcreate(safety);
if(toremove) {
jlog_ctx *ctx;
ctx = jlog_new(LOGNAME);
if(jlog_ctx_open_writer(ctx) != 0) {
fprintf(stderr, "jlog_ctx_open_writer failed: %d %s\n", jlog_ctx_err(ctx), jlog_ctx_err_string(ctx));
croak();
}
jlog_ctx_remove_subscriber(ctx, argv[2]);
jlog_ctx_close(ctx);
exit(0);
}
if(!only_write) {
for(i=0; i<THRCNT; i++) {
pthread_create(&tid[i], NULL, reader, (void *)(uintptr_t)i);
fprintf(stderr, "[%d] started reader\n", (int)(uintptr_t)tid[i]);
}
}
if(!only_read) {
fprintf(stderr, "starting writers..\n");
for(i=0; i<WTHRCNT; i++) {
pthread_create(&wtid[i], NULL, writer, (void *)(uintptr_t)i);
fprintf(stderr, "[%d] started writer\n", (int)(uintptr_t)wtid[i]);
}
} else {
sleep(5);
writer_done = 1;
}
if(!only_write) {
for(i=0; i<THRCNT; i++) {
pthread_join(tid[i], &foo);
fprintf(stderr, "[%d] joined, read %d\n", i, (int)(uintptr_t)foo);
}
}
if(!only_read) {
for(i=0; i<WTHRCNT; i++) {
pthread_join(wtid[i], &foo);
fprintf(stderr, "[%d] joined, write %d\n", i, (int)(uintptr_t)foo);
}
}
if(error) fprintf(stderr, "errors occurred\n");
return 0;
}
/* vim:se ts=2 sw=2 et: */