forked from DaehwanKimLab/centrifuge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outq.h
149 lines (130 loc) · 3.24 KB
/
outq.h
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
/*
* 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/>.
*/
#ifndef OUTQ_H_
#define OUTQ_H_
#include "assert_helpers.h"
#include "ds.h"
#include "sstring.h"
#include "read.h"
#include "threading.h"
#include "mem_ids.h"
/**
* Encapsulates a list of lines of output. If the earliest as-yet-unreported
* read has id N and Bowtie 2 wants to write a record for read with id N+1, we
* resize the lines_ and committed_ lists to have at least 2 elements (1 for N,
* 1 for N+1) and return the BTString * associated with the 2nd element. When
* the user calls commit() for the read with id N,
*/
class OutputQueue {
static const size_t NFLUSH_THRESH = 8;
public:
OutputQueue(
OutFileBuf& obuf,
bool reorder,
size_t nthreads,
bool threadSafe,
TReadId rdid = 0) :
obuf_(obuf),
cur_(rdid),
nstarted_(0),
nfinished_(0),
nflushed_(0),
lines_(RES_CAT),
started_(RES_CAT),
finished_(RES_CAT),
reorder_(reorder),
threadSafe_(threadSafe),
mutex_m()
{
assert(nthreads <= 1 || threadSafe);
}
/**
* Caller is telling us that they're about to write output record(s) for
* the read with the given id.
*/
void beginRead(TReadId rdid, size_t threadId);
/**
* Writer is finished writing to
*/
void finishRead(const BTString& rec, TReadId rdid, size_t threadId);
/**
* Return the number of records currently being buffered.
*/
size_t size() const {
return lines_.size();
}
/**
* Return the number of records that have been flushed so far.
*/
TReadId numFlushed() const {
return nflushed_;
}
/**
* Return the number of records that have been started so far.
*/
TReadId numStarted() const {
return nstarted_;
}
/**
* Return the number of records that have been finished so far.
*/
TReadId numFinished() const {
return nfinished_;
}
/**
* Write already-committed lines starting from cur_.
*/
void flush(bool force = false, bool getLock = true);
protected:
OutFileBuf& obuf_;
TReadId cur_;
TReadId nstarted_;
TReadId nfinished_;
TReadId nflushed_;
EList<BTString> lines_;
EList<bool> started_;
EList<bool> finished_;
bool reorder_;
bool threadSafe_;
MUTEX_T mutex_m;
};
class OutputQueueMark {
public:
OutputQueueMark(
OutputQueue& q,
const BTString& rec,
TReadId rdid,
size_t threadId) :
q_(q),
rec_(rec),
rdid_(rdid),
threadId_(threadId)
{
q_.beginRead(rdid, threadId);
}
~OutputQueueMark() {
q_.finishRead(rec_, rdid_, threadId_);
}
protected:
OutputQueue& q_;
const BTString& rec_;
TReadId rdid_;
size_t threadId_;
};
#endif