-
Notifications
You must be signed in to change notification settings - Fork 73
/
outq.cpp
201 lines (191 loc) · 5.37 KB
/
outq.cpp
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
/*
* Copyright 2011, Ben Langmead <[email protected]>
*
* This file is part of Bowtie 2.
*
* Bowtie 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Bowtie 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Bowtie 2. If not, see <http://www.gnu.org/licenses/>.
*/
#include "outq.h"
/**
* Caller is telling us that they're about to write output record(s) for
* the read with the given id.
*/
void OutputQueue::beginRead(TReadId rdid, size_t threadId) {
ThreadSafe t(&mutex_m, threadSafe_);
nstarted_++;
if(reorder_) {
assert_geq(rdid, cur_);
assert_eq(lines_.size(), finished_.size());
assert_eq(lines_.size(), started_.size());
if(rdid - cur_ >= lines_.size()) {
// Make sure there's enough room in lines_, started_ and finished_
size_t oldsz = lines_.size();
lines_.resize(rdid - cur_ + 1);
started_.resize(rdid - cur_ + 1);
finished_.resize(rdid - cur_ + 1);
for(size_t i = oldsz; i < lines_.size(); i++) {
started_[i] = finished_[i] = false;
}
}
started_[rdid - cur_] = true;
finished_[rdid - cur_] = false;
}
}
/**
* Writer is finished writing to
*/
void OutputQueue::finishRead(const BTString& rec, TReadId rdid, size_t threadId) {
ThreadSafe t(&mutex_m, threadSafe_);
if(reorder_) {
assert_geq(rdid, cur_);
assert_eq(lines_.size(), finished_.size());
assert_eq(lines_.size(), started_.size());
assert_lt(rdid - cur_, lines_.size());
assert(started_[rdid - cur_]);
assert(!finished_[rdid - cur_]);
lines_[rdid - cur_] = rec;
nfinished_++;
finished_[rdid - cur_] = true;
flush(false, false); // don't force; already have lock
} else {
// obuf_ is the OutFileBuf for the output file
obuf_.writeString(rec);
nfinished_++;
nflushed_++;
}
}
/**
* Write already-finished lines starting from cur_.
*/
void OutputQueue::flush(bool force, bool getLock) {
if(!reorder_) {
return;
}
ThreadSafe t(&mutex_m, getLock && threadSafe_);
size_t nflush = 0;
while(nflush < finished_.size() && finished_[nflush]) {
assert(started_[nflush]);
nflush++;
}
// Waiting until we have several in a row to flush cuts down on copies
// (but requires more buffering)
if(force || nflush >= NFLUSH_THRESH) {
for(size_t i = 0; i < nflush; i++) {
assert(started_[i]);
assert(finished_[i]);
obuf_.writeString(lines_[i]);
}
lines_.erase(0, nflush);
started_.erase(0, nflush);
finished_.erase(0, nflush);
cur_ += nflush;
nflushed_ += nflush;
}
}
#ifdef OUTQ_MAIN
#include <iostream>
using namespace std;
int main(void) {
cerr << "Case 1 (one thread) ... ";
{
OutFileBuf ofb;
OutputQueue oq(ofb, false);
assert_eq(0, oq.numFlushed());
assert_eq(0, oq.numStarted());
assert_eq(0, oq.numFinished());
oq.beginRead(1);
assert_eq(0, oq.numFlushed());
assert_eq(1, oq.numStarted());
assert_eq(0, oq.numFinished());
oq.beginRead(3);
assert_eq(0, oq.numFlushed());
assert_eq(2, oq.numStarted());
assert_eq(0, oq.numFinished());
oq.beginRead(2);
assert_eq(0, oq.numFlushed());
assert_eq(3, oq.numStarted());
assert_eq(0, oq.numFinished());
oq.flush();
assert_eq(0, oq.numFlushed());
assert_eq(3, oq.numStarted());
assert_eq(0, oq.numFinished());
oq.beginRead(0);
assert_eq(0, oq.numFlushed());
assert_eq(4, oq.numStarted());
assert_eq(0, oq.numFinished());
oq.flush();
assert_eq(0, oq.numFlushed());
assert_eq(4, oq.numStarted());
assert_eq(0, oq.numFinished());
oq.finishRead(0);
assert_eq(0, oq.numFlushed());
assert_eq(4, oq.numStarted());
assert_eq(1, oq.numFinished());
oq.flush();
assert_eq(0, oq.numFlushed());
assert_eq(4, oq.numStarted());
assert_eq(1, oq.numFinished());
oq.flush(true);
assert_eq(1, oq.numFlushed());
assert_eq(4, oq.numStarted());
assert_eq(1, oq.numFinished());
oq.finishRead(2);
assert_eq(1, oq.numFlushed());
assert_eq(4, oq.numStarted());
assert_eq(2, oq.numFinished());
oq.flush(true);
assert_eq(1, oq.numFlushed());
assert_eq(4, oq.numStarted());
assert_eq(2, oq.numFinished());
oq.finishRead(1);
assert_eq(1, oq.numFlushed());
assert_eq(4, oq.numStarted());
assert_eq(3, oq.numFinished());
oq.flush(true);
assert_eq(3, oq.numFlushed());
assert_eq(4, oq.numStarted());
assert_eq(3, oq.numFinished());
}
cerr << "PASSED" << endl;
cerr << "Case 2 (one thread) ... ";
{
OutFileBuf ofb;
OutputQueue oq(ofb, false);
BTString& buf1 = oq.beginRead(0);
BTString& buf2 = oq.beginRead(1);
BTString& buf3 = oq.beginRead(2);
BTString& buf4 = oq.beginRead(3);
BTString& buf5 = oq.beginRead(4);
assert_eq(5, oq.numStarted());
assert_eq(0, oq.numFinished());
buf1.install("A\n");
buf2.install("B\n");
buf3.install("C\n");
buf4.install("D\n");
buf5.install("E\n");
oq.finishRead(4);
oq.finishRead(1);
oq.finishRead(0);
oq.finishRead(2);
oq.finishRead(3);
oq.flush(true);
assert_eq(5, oq.numFlushed());
assert_eq(5, oq.numStarted());
assert_eq(5, oq.numFinished());
ofb.flush();
}
cerr << "PASSED" << endl;
return 0;
}
#endif /*def ALN_SINK_MAIN*/