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
|
/*
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 _SequencesLoader
#define _SequencesLoader
#include "Read.h"
#include <code/Mock/Parameters.h>
#include <code/SequencesLoader/Loader.h>
#include <code/SeedExtender/BubbleData.h>
#include <RayPlatform/memory/RingAllocator.h>
#include <RayPlatform/memory/MyAllocator.h>
#include <RayPlatform/structures/StaticVector.h>
#include <RayPlatform/communication/Message.h>
#include <RayPlatform/core/ComputeCore.h>
#include <time.h>
#include <vector>
using namespace std;
__DeclarePlugin(SequencesLoader);
__DeclareSlaveModeAdapter(SequencesLoader,RAY_SLAVE_MODE_LOAD_SEQUENCES);
__DeclareMessageTagAdapter(SequencesLoader,RAY_MPI_TAG_LOAD_SEQUENCES);
__DeclareMessageTagAdapter(SequencesLoader,RAY_MPI_TAG_SET_FILE_ENTRIES);
/*
* Computes the partition on reads (MASTER_RANK).
* Loads the appropriate slice of reads (all MPI ranks).
*
* \author Sébastien Boisvert
*/
class SequencesLoader : public CorePlugin{
__AddAdapter(SequencesLoader,RAY_SLAVE_MODE_LOAD_SEQUENCES);
__AddAdapter(MessageProcessor,RAY_MPI_TAG_LOAD_SEQUENCES);
__AddAdapter(MessageProcessor,RAY_MPI_TAG_SET_FILE_ENTRIES);
MessageTag RAY_MPI_TAG_SEQUENCES_READY;
MessageTag RAY_MPI_TAG_SET_FILE_ENTRIES_REPLY;
MessageTag RAY_MPI_TAG_LOAD_SEQUENCES;
MessageTag RAY_MPI_TAG_SET_FILE_ENTRIES;
SlaveMode RAY_SLAVE_MODE_LOAD_SEQUENCES;
SlaveMode RAY_SLAVE_MODE_DO_NOTHING;
MyAllocator*m_persistentAllocator;
ArrayOfReads*m_myReads;
Parameters*m_parameters;
LargeIndex m_distribution_currentSequenceId;
LargeCount m_totalNumberOfSequences;
int m_distribution_file_id;
LargeIndex m_distribution_sequence_id;
bool m_LOADER_isLeftFile;
bool m_LOADER_isRightFile;
Loader m_loader;
bool m_isInterleavedFile;
Rank m_rank;
int m_size;
StaticVector*m_outbox;
SlaveMode*m_mode;
void registerSequence();
public:
bool call_RAY_SLAVE_MODE_LOAD_SEQUENCES();
void call_RAY_MPI_TAG_LOAD_SEQUENCES(Message*message);
void call_RAY_MPI_TAG_SET_FILE_ENTRIES(Message*message);
bool writeSequencesToAMOSFile(int rank,int size,StaticVector*m_outbox,
RingAllocator*m_outboxAllocator,
bool*m_loadSequenceStep,
BubbleData*m_bubbleData,
time_t*m_lastTime,
Parameters*m_parameters,int*m_master_mode,int*m_mode);
void constructor(int size,MyAllocator*m_persistentAllocator,ArrayOfReads*m_myReads,
Parameters*parameters,StaticVector*outbox,SlaveMode*mode);
void registerPlugin(ComputeCore*core);
void resolveSymbols(ComputeCore*core);
};
#endif
|