forked from lh3/ropebwt3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mrope.c
385 lines (355 loc) · 10.1 KB
/
mrope.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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <unistd.h>
#include <pthread.h>
#include <stdio.h>
#include <time.h>
#include "mrope.h"
#include "rle.h"
/*******************************
*** Single-string insertion ***
*******************************/
mrope_t *mr_init(int max_nodes, int block_len, int sorting_order)
{
int a;
mrope_t *r;
assert(sorting_order >= 0 && sorting_order <= 2);
r = (mrope_t*)calloc(1, sizeof(mrope_t));
r->so = sorting_order;
r->thr_min = 1000;
for (a = 0; a != 6; ++a)
r->r[a] = rope_init(max_nodes, block_len);
return r;
}
void mr_destroy(mrope_t *r)
{
int a;
for (a = 0; a != 6; ++a)
if (r->r[a]) rope_destroy(r->r[a]);
free(r);
}
int mr_thr_min(mrope_t *r, int thr_min)
{
if (thr_min > 0)
r->thr_min = thr_min;
return r->thr_min;
}
int64_t mr_insert1(mrope_t *r, const uint8_t *str)
{
int64_t tl[6], tu[6], l, u;
const uint8_t *p;
int b, is_srt = (r->so != MR_SO_IO), is_comp = (r->so == MR_SO_RCLO);
for (u = 0, b = 0; b != 6; ++b) u += r->r[b]->c[0];
l = is_srt? 0 : u;
for (p = str, b = 0; *p; b = *p++) {
int a;
if (l != u) {
int64_t cnt = 0;
rope_rank2a(r->r[b], l, u, tl, tu);
if (is_comp && *p != 5) {
for (a = 4; a > *p; --a) l += tu[a] - tl[a];
l += tu[0] - tl[0];
} else for (a = 0; a < *p; ++a) l += tu[a] - tl[a];
rope_insert_run(r->r[b], l, *p, 1, 0);
while (--b >= 0) cnt += r->r[b]->c[*p];
l = cnt + tl[*p]; u = cnt + tu[*p];
} else {
l = rope_insert_run(r->r[b], l, *p, 1, 0);
while (--b >= 0) l += r->r[b]->c[*p];
u = l;
}
}
return rope_insert_run(r->r[b], l, 0, 1, 0);
}
int mr_rank2a(const mrope_t *mr, int64_t x, int64_t y, int64_t *cx, int64_t *cy)
{
int a, b, ret = -1;
int64_t z, c[6], l;
if (cy == 0) y = -1;
memset(c, 0, 48);
for (a = 0, z = l = 0; a < 6 && z < x; ++a) {
const int64_t *ca = mr->r[a]->c;
l = ca[0] + ca[1] + ca[2] + ca[3] + ca[4] + ca[5];
if (z + l > x) break;
for (b = 0; b < 6; ++b) c[b] += ca[b];
z += l;
}
for (; a < 6; ++a) { // skip 0-sized ropes
const int64_t *ca = mr->r[a]->c;
l = ca[0] + ca[1] + ca[2] + ca[3] + ca[4] + ca[5];
if (l != 0) break;
}
if (a == 6) { // special case: x >= mr_get_tot(mr)
memcpy(cx, c, 48);
if (y >= x) memcpy(cy, c, 48);
return -1;
}
if (y >= x && z + l >= y) { // x and y are in the same rope
ret = rope_rank2a(mr->r[a], x - z, y - z, cx, cy);
for (b = 0; b < 6; ++b)
cx[b] += c[b], cy[b] += c[b];
assert(ret >= 0);
return ret;
}
ret = rope_rank1a(mr->r[a], x - z, cx);
for (b = 0; b < 6; ++b)
cx[b] += c[b], c[b] += mr->r[a]->c[b];
assert(ret >= 0);
if (y < x) return ret;
for (++a, z += l; a < 6; ++a) {
const int64_t *ca = mr->r[a]->c;
l = ca[0] + ca[1] + ca[2] + ca[3] + ca[4] + ca[5];
if (z + l > y) break;
for (b = 0; b < 6; ++b) c[b] += ca[b];
z += l;
}
if (a == 6) { // special case: y >= mr_get_tot(mr)
memcpy(cy, c, 48);
return ret;
}
if (y != z + l) rope_rank1a(mr->r[a], y - z, cy);
else for (b = 0; b < 6; ++b) cy[b] = mr->r[a]->c[b];
for (b = 0; b < 6; ++b) cy[b] += c[b];
return ret;
}
/**********************
*** Mrope iterator ***
**********************/
void mr_itr_first(mrope_t *r, mritr_t *i, int to_free)
{
i->a = 0; i->r = r; i->to_free = to_free;
rope_itr_first(i->r->r[0], &i->i);
}
const uint8_t *mr_itr_next_block(mritr_t *i)
{
const uint8_t *s;
if (i->a >= 6) return 0;
while ((s = rope_itr_next_block(&i->i)) == 0) {
if (i->to_free) {
rope_destroy(i->r->r[i->a]);
i->r->r[i->a] = 0;
}
if (++i->a == 6) return 0;
rope_itr_first(i->r->r[i->a], &i->i);
}
return i->a == 6? 0 : s;
}
/***********
*** I/O ***
***********/
void mr_dump(mrope_t *mr, FILE *fp)
{
int i;
fwrite("RB\2", 1, 3, fp);
fwrite(&mr->so, 1, 1, fp);
for (i = 0; i < 6; ++i)
rope_dump(mr->r[i], fp);
}
mrope_t *mr_restore(FILE *fp)
{
mrope_t *mr;
uint8_t magic[4];
int64_t c[6];
int i;
fread(magic, 1, 4, fp);
if (strncmp((char*)magic, "RB\2", 3) != 0) return 0;
mr = (mrope_t*)calloc(1, sizeof(mrope_t));
mr->so = magic[3];
for (i = 0; i < 6; ++i)
mr->r[i] = rope_restore(fp);
mr_get_c(mr, c);
fprintf(stderr, "[M::%s] ($, A, C, G, T, N) = (%ld, %ld, %ld, %ld, %ld, %ld)\n", __func__,
(long)c[0], (long)c[1], (long)c[2], (long)c[3], (long)c[4], (long)c[5]);
return mr;
}
mrope_t *mr_restore_file(const char *fn)
{
FILE *fp;
fp = strcmp(fn, "-") == 0? stdin : fopen(fn, "rb");
if (fp == 0) return 0;
return mr_restore(fp);
}
void mr_print_tree(const mrope_t *mr, FILE *fp)
{
int a;
for (a = 0; a < 6; ++a)
rope_print_node(mr->r[a]->root, fp);
fputc('\n', fp);
}
void mr_print_bwt(const mrope_t *mr, FILE *fp)
{
mritr_t ri;
const uint8_t *block;
mr_itr_first((mrope_t*)mr, &ri, 0);
while ((block = mr_itr_next_block(&ri)) != 0) {
const uint8_t *q = block + 2, *end = block + 2 + *rle_nptr(block);
while (q < end) {
int c = 0;
int64_t j, l;
rle_dec1(q, c, l);
for (j = 0; j < l; ++j) fputc("$ACGTN"[c], fp);
}
}
fputc('\n', fp);
}
/*****************************************
*** Inserting multiple strings in RLO ***
*****************************************/
typedef struct {
uint64_t l;
uint64_t u:61, c:3;
const uint8_t *p;
} triple64_t;
typedef const uint8_t *cstr_t;
#define rope_comp6(c) ((c) >= 1 && (c) <= 4? 5 - (c) : (c))
static void mr_insert_multi_aux(rope_t *rope, int64_t m, triple64_t *a, int is_comp)
{
int64_t k, beg;
rpcache_t cache;
memset(&cache, 0, sizeof(rpcache_t));
for (k = 0; k != m; ++k) // set the base to insert
a[k].c = *a[k].p++;
for (k = 1, beg = 0; k <= m; ++k) {
if (k == m || a[k].u != a[k-1].u) {
int64_t x, i, l = a[beg].l, u = a[beg].u, tl[6], tu[6], c[6];
int start, end, step, b;
if (l == u && k == beg + 1) { // special case; still works without the following block
a[beg].l = a[beg].u = rope_insert_run(rope, l, a[beg].c, 1, &cache);
beg = k;
continue;
} else if (l == u) {
memset(tl, 0, 48);
memset(tu, 0, 48);
} else rope_rank2a(rope, l, u, tl, tu);
memset(c, 0, 48);
for (i = beg; i < k; ++i) ++c[a[i].c];
// insert sentinel
if (c[0]) rope_insert_run(rope, l, 0, c[0], &cache);
// insert A/C/G/T
x = l + c[0] + (tu[0] - tl[0]);
if (is_comp) start = 4, end = 0, step = -1;
else start = 1, end = 5, step = 1;
for (b = start; b != end; b += step) {
int64_t size = tu[b] - tl[b];
if (c[b]) {
tl[b] = rope_insert_run(rope, x, b, c[b], &cache);
tu[b] = tl[b] + size;
}
x += c[b] + size;
}
// insert N
if (c[5]) {
tu[5] -= tl[5];
tl[5] = rope_insert_run(rope, x, 5, c[5], &cache);
tu[5] += tl[5];
}
// update a[]
for (i = beg; i < k; ++i) {
triple64_t *p = &a[i];
p->l = tl[p->c], p->u = tu[p->c];
}
beg = k;
}
}
}
typedef struct {
volatile int *n_fin_workers;
volatile int to_run;
int to_exit;
mrope_t *mr;
int b, is_comp;
int64_t m;
triple64_t *a;
} worker_t;
static void *worker(void *data)
{
worker_t *w = (worker_t*)data;
struct timespec req, rem;
req.tv_sec = 0; req.tv_nsec = 1000000;
do {
while (!__sync_bool_compare_and_swap(&w->to_run, 1, 0)) nanosleep(&req, &rem); // wait for the signal from the master thread
if (w->m) mr_insert_multi_aux(w->mr->r[w->b], w->m, w->a, w->is_comp);
__sync_add_and_fetch(w->n_fin_workers, 1);
} while (!w->to_exit);
return 0;
}
void mr_insert_multi(mrope_t *mr, int64_t len, const uint8_t *s, int is_thr)
{
int64_t k, m, n0;
int b, is_srt = (mr->so != MR_SO_IO), is_comp = (mr->so == MR_SO_RCLO), stop_thr = 0;
volatile int n_fin_workers = 0;
triple64_t *a[2], *curr, *prev, *swap;
pthread_t tid[4];
worker_t w[4];
if (mr->thr_min < 0) mr->thr_min = 0;
assert(len > 0 && s[len-1] == 0);
{ // split into short strings
cstr_t p, q, end = s + len;
for (p = s, m = 0; p != end; ++p) // count #sentinels
if (*p == 0) ++m;
curr = a[0] = (triple64_t*)malloc(m * sizeof(triple64_t));
prev = a[1] = (triple64_t*)malloc(m * sizeof(triple64_t));
for (p = q = s, k = 0; p != end; ++p) // find the start of each string
if (*p == 0) prev[k++].p = q, q = p + 1;
}
for (k = n0 = 0; k < 6; ++k) n0 += mr->r[k]->c[0];
for (k = 0; k != m; ++k) {
if (is_srt) prev[k].l = 0, prev[k].u = n0;
else prev[k].l = prev[k].u = n0 + k;
prev[k].c = 0;
}
mr_insert_multi_aux(mr->r[0], m, prev, is_comp); // insert the first (actually the last) column
if (is_thr) {
memset(w, 0, 4 * sizeof(worker_t));
for (b = 0; b < 4; ++b) {
w[b].mr = mr, w[b].b = b + 1, w[b].is_comp = is_comp;
w[b].n_fin_workers = &n_fin_workers;
}
for (b = 0; b < 4; ++b) pthread_create(&tid[b], 0, worker, &w[b]);
}
n0 = 0; // the number of inserted strings
while (m) {
int64_t c[6], ac[6];
triple64_t *q[6];
memset(c, 0, 48);
for (k = n0; k != m; ++k) ++c[prev[k].c]; // counting
for (q[0] = curr + n0, b = 1; b < 6; ++b) q[b] = q[b-1] + c[b-1];
if (n0 + c[0] < m) {
for (k = n0; k != m; ++k) *q[prev[k].c]++ = prev[k]; // sort
for (b = 0; b < 6; ++b) q[b] -= c[b];
}
n0 += c[0];
if (is_thr && !stop_thr) {
struct timespec req, rem;
req.tv_sec = 0; req.tv_nsec = 1000000;
stop_thr = (m - n0 <= mr->thr_min);
for (b = 0; b < 4; ++b) {
w[b].a = q[b+1], w[b].m = c[b+1];
if (stop_thr) w[b].to_exit = 1; // signal the workers to exit
while (!__sync_bool_compare_and_swap(&w[b].to_run, 0, 1)); // signal the workers to start
}
if (c[5]) mr_insert_multi_aux(mr->r[5], c[5], q[5], is_comp); // the master thread processes the "N" bucket
while (!__sync_bool_compare_and_swap(&n_fin_workers, 4, 0)) // wait until all 4 workers finish
nanosleep(&req, &rem);
if (stop_thr && n0 < m)
fprintf(stderr, "[M::%s] Turn off parallelization for this batch as too few strings are left.\n", __func__);
} else {
for (b = 1; b < 6; ++b)
if (c[b]) mr_insert_multi_aux(mr->r[b], c[b], q[b], is_comp);
}
if (n0 == m) break;
memset(ac, 0, 48);
for (b = 1; b < 6; ++b) { // update the intervals to account for buckets ahead
int a;
for (a = 0; a < 6; ++a) ac[a] += mr->r[b-1]->c[a];
for (k = 0; k < c[b]; ++k) {
triple64_t *p = &q[b][k];
p->l += ac[p->c]; p->u += ac[p->c];
}
}
swap = curr, curr = prev, prev = swap;
}
if (is_thr) for (b = 0; b < 4; ++b) pthread_join(tid[b], 0);
free(a[0]); free(a[1]);
}