File: SequencesIndexer.h

package info (click to toggle)
ray 2.3.1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,008 kB
  • sloc: cpp: 49,973; sh: 339; makefile: 281; python: 168
file content (129 lines) | stat: -rw-r--r-- 3,627 bytes parent folder | download | duplicates (5)
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
/*
 	Ray
    Copyright (C) 2010, 2011, 2012 Sébastien Boisvert

	http://DeNovoAssembler.SourceForge.Net/

    This program 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, version 3 of the License.

    This program 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 have received a copy of the GNU General Public License
    along with this program (gpl-3.0.txt).  
	see <http://www.gnu.org/licenses/>

*/

#ifndef _SequencesIndexer
#define _SequencesIndexer

#include "IndexerWorker.h"

#include <code/Mock/Parameters.h>
#include <code/Mock/common_functions.h>
#include <code/SequencesLoader/ArrayOfReads.h>
#include <code/SequencesLoader/Read.h>

#include <RayPlatform/profiling/Derivative.h>
#include <RayPlatform/core/ComputeCore.h>
#include <RayPlatform/communication/Message.h>
#include <RayPlatform/memory/MyAllocator.h>
#include <RayPlatform/memory/RingAllocator.h>
#include <RayPlatform/structures/SplayTree.h>
#include <RayPlatform/structures/SplayTreeIterator.h>
#include <RayPlatform/structures/StaticVector.h>
#include <RayPlatform/communication/BufferedData.h>
#include <RayPlatform/communication/VirtualCommunicator.h>

#include <map>
#include <vector>
#include <fstream>
using namespace std;

__DeclarePlugin(SequencesIndexer);

__DeclareSlaveModeAdapter(SequencesIndexer,RAY_SLAVE_MODE_INDEX_SEQUENCES);

/*
 * Computes optimal read markers using workers.
 * \author Sébastien Boisvert
 */
class SequencesIndexer: public CorePlugin{

	__AddAdapter(SequencesIndexer,RAY_SLAVE_MODE_INDEX_SEQUENCES);

	MessageTag RAY_MPI_TAG_GET_READ_MARKERS_REPLY;
	MessageTag RAY_MPI_TAG_GET_READ_MATE_REPLY;
	MessageTag RAY_MPI_TAG_REQUEST_VERTEX_READS_REPLY;
	MessageTag RAY_MPI_TAG_VERTEX_READS_FROM_LIST_REPLY;
	MessageTag RAY_MPI_TAG_VERTEX_READS_REPLY;

	MessageTag RAY_MPI_TAG_MASTER_IS_DONE_ATTACHING_READS_REPLY;
	MessageTag RAY_MPI_TAG_ATTACH_SEQUENCE;
	MessageTag RAY_MPI_TAG_REQUEST_VERTEX_COVERAGE;

	SlaveMode RAY_SLAVE_MODE_INDEX_SEQUENCES;
	SlaveMode RAY_SLAVE_MODE_DO_NOTHING;


	Derivative m_derivative;

	ofstream m_readMarkerFile;

	map<int,map<int,int> >m_forwardStatistics;
	map<int,map<int,int> >m_reverseStatistics;

	/** for checkpointing */
	bool m_checkedCheckpoint;

	int m_rank;
	int m_size;
	Parameters*m_parameters;
	MyAllocator m_allocator;
	MyAllocator m_workAllocator;
	int m_pendingMessages;
	int m_completedJobs;
	int m_maximumAliveWorkers;
	int m_maximumWorkers;

	SlaveMode*m_mode;
	StaticVector*m_outbox;

	VirtualCommunicator*m_virtualCommunicator;
	SplayTree<WorkerHandle,char> m_activeWorkers;
	SplayTreeIterator<WorkerHandle,char> m_activeWorkerIterator;

	SplayTree<WorkerHandle,IndexerWorker> m_aliveWorkers;
	
	bool m_communicatorWasTriggered;
	vector<WorkerHandle> m_workersDone;
	vector<WorkerHandle> m_waitingWorkers;
	vector<WorkerHandle> m_activeWorkersToRestore;

	ArrayOfReads*m_myReads;
	RingAllocator*m_outboxAllocator;

	bool m_initiatedIterator;
	int m_theSequenceId;
	void updateStates();

public:

	void call_RAY_SLAVE_MODE_INDEX_SEQUENCES();

	void constructor(Parameters*parameters,RingAllocator*outboxAllocator,StaticVector*inbox,StaticVector*outbox,
	VirtualCommunicator*vc,SlaveMode*mode,ArrayOfReads*myReads);

	void setReadiness();
	MyAllocator*getAllocator();

	void registerPlugin(ComputeCore*core);
	void resolveSymbols(ComputeCore*core);
};

#endif