forked from ErianArcher/RandomStringAssembly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
479 lines (422 loc) · 16.7 KB
/
main.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
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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
#include <iostream>
#include <mpi.h>
#include <sstream>
#include <pthread.h>
#include <fstream>
#include <thread>
#include <ctype.h>
#include "entity/idset.h"
#include "entity/read.h"
#include "entity/k_minus_mer.h"
#include "entity/k_mer.h"
#include "test.h"
#include "communicator.h"
#include "read_io.h"
#include "test.h"
#define TRESHOLD 1024*1024*256
using namespace std;
void joinThreads(pthread_t tids[], int tnum, int exceptIndex = -1) {
for (int i = 0; i < tnum; ++i) {
if (i == exceptIndex) continue;
//cout << "waiting sender/receiver #" << i << endl;
pthread_join(tids[i], NULL);
}
}
int main(int argc, char** argv) {
int startIndex = 0;
string *tmpstr = new string;
for (; startIndex < argc; ++startIndex) {
tmpstr->clear();
tmpstr->append(argv[startIndex]);
if (tmpstr->find("RandomStringAssembly") != string::npos) {
break;
}
}
int realargc = argc - startIndex;
int k = 3;
string folderPath = "./input/";
int fileNum = 1;
string *filenames = new string[realargc - 3];
if (realargc < 4) {
cout << "program k inputfolder filenames..." << endl;
}
tmpstr->clear();
tmpstr->append(argv[startIndex + 1]);
k = stoi(*tmpstr);
delete tmpstr;
folderPath = string(argv[startIndex + 2]);
if (*folderPath.cend() != '/') {
folderPath.append("/");
}
for (int i = 3; i < realargc; i++) {
filenames[i-3] = string(argv[startIndex + i]);
}
// Initialize the MPI environment
// Enable multithread
int provided;
MPI_Init_thread(NULL, NULL, MPI_THREAD_MULTIPLE, &provided);
// Get the number of processes
int world_size;
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
// Get the rank of the process
int currank;
MPI_Comm_rank(MPI_COMM_WORLD, &currank);
/* // Get the name of the processor
char processor_name[MPI_MAX_PROCESSOR_NAME];
int name_len;
MPI_Get_processor_name(processor_name, &name_len);*/
// Construct DBG
VertexList *vertexList = new VertexList;
SetOfID *tangleList = new SetOfID;
EdgeList *edgeList = new EdgeList;
/*VertexList *vertexList4Others = new VertexList;
EdgeList *edgeList4Others = new EdgeList;
SetOfID *tangleList4Others = new SetOfID;*/
int readNum = 1024 * 1024 * 1024;
setK(k); // 初始化k值
// Some temporary variables
string *curread = new string;
ReadId *readId = new ReadId;
size_t readpos;
char *tmpKMer = new char[k+1];
char *tmpKMinusMer1 = new char[k];
char *tmpKMinusMer2 = new char[k];
EdgeId tmpEdgeId;
VertexId tmpVertexId1;
VertexId tmpVertexId2;
KMERPOS_t edgeMode = NOT_INCLUDE_KMER;
// 开启线程
int sender_num = 1;
pthread_t sender_tid[sender_num], receiver_tid[world_size];
int sourceRank[world_size];
RecvArg *recvArg = new RecvArg[world_size];
mainThreadTellRunning();
for (int l = 0; l < sender_num; ++l) {
if (pthread_create(&sender_tid[l], NULL, senderRunner, NULL) != 0) {
cerr << "Cannot create sender thread";
exit(1);
}
// pthread_detach(sender_tid[l]);
}
for (int r = 0; r < world_size; ++r) {
sourceRank[r] = r;
if (r == currank) continue;
// TODO: 用receiverRunner 替换
recvArg[r].sourceRank = sourceRank[r];
recvArg[r].vertexList = vertexList;
recvArg[r].edgeList = edgeList;
recvArg[r].tangleList = tangleList;
if (pthread_create(&receiver_tid[r], NULL, receiverRunner, (void *) &recvArg[r]) != 0) {
cerr << "Cannot create receiver thread";
exit(1);
}
// cout << "sucessful" << r;
// pthread_detach(receiver_tid[r]);
}
/*char content[] = "hello world";
int lrank;
for (int l = 0; l < 100; ++l) {
lrank = l % world_size;
if (lrank != currank) {
//cout << "in" << l << endl;
requestRankToDoTest(currank, lrank, content);
}
}*/
// 初始化文件IO
if (readIOInit(currank, world_size, folderPath, filenames, fileNum) == -1) {
cerr << "Error: No files can be read." << endl;
exit(1);
}
while (getNextRead(curread, &readpos) != -1) {
// 传送read的文件名和文件指针到目标机器
int read4Rank = currank;
*readId = getId(*curread);
/*
if ((read4Rank = idBelongTo(world_size, readId)) == currank) {
// Create a thread to process
if (requestWriteRead(*curread) == 0) {
exit(1);
}
}
*/
// 先把全部read处理完之后再充分拍kmer和kminusmer
// 并行化处理read中的kmer
/*int totalKmerNum = curread->size()-k+1;
int kMerNum4Each = totalKmerNum / world_size;
int startKMer = kMerNum4Each * currank;
int end = (currank + 1 == world_size)? totalKmerNum: (startKMer + kMerNum4Each);*/
int startKMer = 0;
int end = curread->size() - getK() + 1;
string *tempStr = nullptr;
char tmp;
for (int i = startKMer; i < end; ++i) {
for (int j = 0; j < k; ++j) {
tmp = (*curread)[i + j];
if (!isalpha(tmp)) {
//cout << tmp << endl;
break;
}
tmpKMer[j] = tmp;
if (j < k -1)
tmpKMinusMer1[j] = tmp;
if (j > 0)
tmpKMinusMer2[j-1] = tmp;
}
if (!isalpha(tmp)) continue;
tmpKMer[k] = '\0';
tmpKMinusMer1[k-1] = '\0';
tmpKMinusMer2[k-1] = '\0';
// 判断kmer在read的哪个位置
if (i == 0) edgeMode = START_KMER;
else if (i == end - 1) edgeMode = END_KMER;
else edgeMode = INCLUDE_KMER;
tmpEdgeId = getId(tmpKMer);
tmpVertexId1 = getId(tmpKMinusMer1);
tmpVertexId2 = getId(tmpKMinusMer2);
// 创建开始Vertex
//cout << "index: " << i << "; content: " << tmpKMinusMer1 << endl;
if (idBelongTo(world_size, tmpVertexId1) != (VertexId) currank) {
requestOtherRanksToStoreVertex(currank, world_size, tmpVertexId1, tmpEdgeId, HEAD_VERTEX);
} else {
if ((addVertex(vertexList, tmpKMinusMer1, 0, tmpEdgeId, HEAD_VERTEX) & MULTI_OUT_DEGREE) == MULTI_OUT_DEGREE){
//tangleList->safe_insert(*tmpVertexId1);
}
}
// 创建终止Vertex
//cout << "index: " << i << "; content: " << tmpKMinusMer2 << endl;
if (idBelongTo(world_size, tmpVertexId2) != (VertexId) currank) {
requestOtherRanksToStoreVertex(currank, world_size, tmpVertexId2, tmpEdgeId, TAIL_VERTEX);
} else {
if ((addVertex(vertexList, tmpKMinusMer2, tmpEdgeId, 0, TAIL_VERTEX) & MULTI_OUT_DEGREE) == MULTI_OUT_DEGREE)
{
//tangleList->safe_insert(*tmpVertexId2);
}
}
// 创建Edge
if (idBelongTo(world_size, tmpEdgeId) != (EdgeId) currank)
requestOtherRanksToStoreEdge(currank, world_size, tmpKMer, tmpEdgeId, *readId, edgeMode);
else
addNewEdge(edgeList, tmpKMer, &tmpEdgeId, tmpVertexId1, tmpVertexId2, *readId, edgeMode);
}
}
MPI_Barrier(MPI_COMM_WORLD);
if (0 == currank) cout << "Finish constructing DBG" << endl;
// 等待线程
mainThreadTellFinished(currank, world_size);
joinThreads(sender_tid, sender_num);
//joinThreads(receiver_tid, world_size, currank);
if (0 == currank) cout << "Constructing contig" << endl;
// 在等待子线程结束之前
// 寻找source和sink
SetOfID *sourceList= new SetOfID;
SetOfID *sinkList= new SetOfID;
unordered_map<VertexId, string *> contigList;
stringstream superContigSS;
for (auto kv: *vertexList) {
auto vertex = kv.second;
if (vertex->inDegree == 0 && vertex->outDegree > 0) {
sourceList->insert(vertex->id);
}
if (vertex->outDegree == 0 && vertex->inDegree > 0) {
sinkList->insert(vertex->id);
}
}
int sourceListSize = sourceList->size();
int totalSourceListSize = 0;
int headrank = 0;
MPI_Reduce(&sourceListSize, &totalSourceListSize, 1, MPI_INT, MPI_SUM, headrank, MPI_COMM_WORLD);
// 若所有进程都没有符合条件的source,则由主节点随机选一个。
if (0 == totalSourceListSize) {
if (currank == headrank) {
VertexId randomVertexId = (*vertexList->begin()).second->id;
while (sinkList->count(randomVertexId) == 1) randomVertexId = (*vertexList->begin()).second->id;
sourceList->insert(randomVertexId);
}
}
/*if (headrank == currank)
cout << sourceList->size() << endl;*/
/*
* 重新开启线程以进行构建contig的工作
*/
mainThreadTellRunning();
sender_num = 1;
for (int l = 0; l < sender_num; ++l) {
if (pthread_create(&sender_tid[l], NULL, senderRunner, NULL) != 0) {
cerr << "Cannot create sender thread";
exit(1);
}
// pthread_detach(sender_tid[l]);
}
for (int r = 0; r < world_size; ++r) {
sourceRank[r] = r;
if (r == currank) continue;
// TODO: 用receiverRunner 替换
recvArg[r].sourceRank = sourceRank[r];
recvArg[r].vertexList = vertexList;
recvArg[r].edgeList = edgeList;
recvArg[r].tangleList = tangleList;
if (pthread_create(&receiver_tid[r], NULL, receiverRunner, (void *) &recvArg[r]) != 0) {
cerr << "Cannot create receiver thread";
exit(1);
}
//cout << "sucessful" << r;
// pthread_detach(receiver_tid[r]);
}
//cout << "debug" << endl;
// 遍历所有的source点
for (auto sourceId: *sourceList) {
// cout << "in source" << endl;
Vertex *sourceVertex = vertexList->at(sourceId);
Edge *tmp = nullptr;
string *edgeValue = new string;
VertexId nextVertexId;
EdgeId nextEdgeId;// = *sourceVertex->outKMer->begin(); // 倘若source点有多个出度则随机选取一个出度
//removeOutEdge(vertexList, sourceId, nextEdgeId); // 每次经过一个出度都要删除
getAndRemoveOutEdge(vertexList, sourceId, &nextEdgeId); // 保护并行环境下的删除节点
size_t vertexInRank;
size_t edgeInRank = idBelongTo(world_size, nextEdgeId);
if (edgeInRank != currank) { // edge不在这个机器上
// cout << "debug" << endl;
if (FAILED_QUERY == queryFullEdgeById(edgeValue, currank, edgeInRank, nextEdgeId)) {
// 查询失败,跳过这个vertex
cout << "Cannot queue the first out edge of this source vertex #" << sourceId << endl;
continue;
}
// cout << edgeValue << endl;
nextVertexId = getId(edgeValue->substr(1, getK() - 1)); // 初始化的时候edgeValue的长度应该是K
//cout << edgeValue.substr(1, getK() - 1) << endl;
} else {
if (edgeList->count(nextEdgeId) < 1) {
//cout << "debug3" << endl;
continue;
}
tmp = edgeList->at(nextEdgeId);
delete edgeValue;
edgeValue = new string(tmp->value, 0, getK());
nextVertexId = tmp->sinkKMinusMerId;
}
// 初始化完成,开始遍历直至遇到sink
while (true) {
// cout << "debug" << endl;
string *tmpEdge = new string("");
// 遍历vertex
vertexInRank = idBelongTo(world_size, nextVertexId);
if (vertexInRank != currank) {
int flag = queryOutEdgeOfVertexById(&nextEdgeId, currank, vertexInRank, nextVertexId); // nextEdgeId 在这已经赋值
if (FAILED_QUERY == flag || SINK_QUERY == flag) {
//cout << "Cannot queue vertex in rank #" << vertexInRank << endl;
break;
}
} else {
if (vertexList->count(nextVertexId) == 0) {
cerr << "Cannot query the vertex #" << nextVertexId << endl;
break;
} else {
// 不是tangle时
Vertex *thisVertex = vertexList->at(nextVertexId);
if (thisVertex->outDegree < 1) { // 当遇到sink点时
cout << "Sink point is reached." << endl;
break;
} else if(thisVertex->outDegree > 1) {
// tangle被检测到
// 并行环境下不能使用tangleList->count(vertexId) != 0来判断是否为tangle
Vertex *thisVertex = vertexList->at(nextVertexId);
/*nextEdgeId = *thisVertex->outKMer->begin();
// 删除vertex的一个出度
removeOutEdge(vertexList, nextVertexId, nextEdgeId);*/
getAndRemoveOutEdge(vertexList, nextVertexId, &nextEdgeId); // 保护并行环境下的删除节点
} else {
/*nextEdgeId = *thisVertex->outKMer->begin();
removeOutEdge(vertexList, nextVertexId, nextEdgeId);*/
getAndRemoveOutEdge(vertexList, nextVertexId, &nextEdgeId); // 保护并行环境下的删除节点
}
}
}
// 通过edge查询下一个vertex
// 添加的时候只添加一位char
edgeInRank = idBelongTo(world_size, nextEdgeId);
if (edgeInRank != currank) { // edge不在这个机器上
if (FAILED_QUERY == queryEdgeById(tmpEdge, currank, edgeInRank, nextEdgeId)) {
delete tmpEdge;
//cout << "debug1" << endl;
break;
}
//cout << "debug2" << endl;
// cout << tmpEdge << endl;
edgeValue->append(*tmpEdge);
string *tmpSubstring = new string(*edgeValue, edgeValue->size() - (getK() - 1), getK() - 1);
nextVertexId = getId(*tmpSubstring);
delete tmpSubstring;
} else {
if (edgeList->count(nextEdgeId) < 1) {
delete tmpEdge;
//cout << "debug2" << endl;
break;
}
tmp = edgeList->at(nextEdgeId);
*edgeValue += tmp->value[getK()-1]; // 把最后一位加上去
nextVertexId = tmp->sinkKMinusMerId;
}
delete tmpEdge;
}
// 在contig中添加元素
contigList[sourceId] = edgeValue;
}
// 构造super contig
for (auto kv: contigList) {
superContigSS << *kv.second;
delete kv.second;
}
contigList.clear();
// 进程间同步
MPI_Barrier(MPI_COMM_WORLD);
// 主线程结束操作
// 等待线程
mainThreadTellFinished(currank, world_size);
joinThreads(sender_tid, sender_num);
//joinThreads(receiver_tid, world_size, currank);
//std::chrono::milliseconds dura(10000);
//std::this_thread::sleep_for(dura);
// DEBUG
/*stringstream ss;
ss << "./input/debug_host" << currank << ".txt";
string debugFile = ss.str();
ofstream outfile(debugFile);
outfile << "===========Edges===========" << edgeList->size() << endl;
for (auto kv: *edgeList) {
outfile << edgeToString(kv.second) << endl;
}
outfile << "===========Vertices===========" << vertexList->size() << endl;
for (auto kv: *vertexList) {
outfile << vertexToString(kv.second) << endl;
}
outfile << "===========Tangles===========" << tangleList->size() << endl;
for (auto v: *tangleList) {
outfile << v << endl;
}*/
//cout << "reached" << endl;
// 同步各rank的super contig
string superContig;
string tmpContig;
if (0 == currank) {
tmpContig = superContigSS.str();
superContig = reduceSuperContigFromOthers(currank, world_size, tmpContig);
ofstream outfile("output");
outfile << superContig << endl;
outfile.close();
} else {
tmpContig = superContigSS.str();
sendSuperContigToRankHead(0, currank, tmpContig);
}
//cout << "reached2" << endl;
//pthread_join(sender_tid, NULL);
// !~delete the variables above.
delete[] recvArg;
// 最后delete的变量
delete vertexList;
delete edgeList;
delete tangleList;
// Finalize the MPI environment.
MPI_Finalize();
return 0;
}