123 virtual void init ( );
127 virtual vector< string >
ifExist( );
193 virtual void set (
bool rpl_per,
bool gen_per,
int rpl_occ,
int gen_occ,
int rank,
string path) {
197 virtual void set_multi (
bool rpl_per,
bool gen_per,
int rpl_occ,
TMatrix* Occ,
string path) {
205 virtual void FHread (
string& filename) = 0;
227 virtual void FHread (
string& filename) = 0;
229 virtual void set (
bool rpl_per,
bool gen_per,
int rpl_occ,
int gen_occ,
int rank,
string path, TP* trait_proto);
233FileHandler(ext), _FHLinkedTrait(trait_proto), _FHLinkedTraitIndex(trait_proto->get_index())
236template <
class TP>
void TraitFileHandler<TP>::set(
bool rpl_per,
bool gen_per,
int rpl_occ,
int gen_occ,
int rank,
string path, TP* trait_proto)
239 _FHLinkedTrait = trait_proto;
240 _FHLinkedTraitIndex = trait_proto->get_index();
256 virtual void FHread (
string& filename) = 0;
258 virtual void set (
bool rpl_per,
bool gen_per,
int rpl_occ,
int gen_occ,
int rank,
string path, LCE* event);
268 _FHLinkedEvent = event;
278 virtual void FHread (
string& filename) {}
Template class for the LCEs StatHandler classes.
Definition: filehandler.h:247
LCE * _FHLinkedEvent
Definition: filehandler.h:249
virtual void set(bool rpl_per, bool gen_per, int rpl_occ, int gen_occ, int rank, string path, LCE *event)
Definition: filehandler.h:265
EventFileHandler(LCE *event, const char *ext)
Definition: filehandler.h:261
virtual ~EventFileHandler()
Definition: filehandler.h:252
virtual void FHread(string &filename)=0
File Handler used to save the simulation parameters to a log file.
Definition: filehandler.h:272
void save_simparams(list< ParamSet * > ¶ms)
Definition: filehandler.cc:193
virtual void FHread(string &filename)
Definition: filehandler.h:278
virtual void FHwrite()
Definition: filehandler.h:277
void log_message(string &logstr)
Definition: filehandler.cc:258
FHLogWriter()
Definition: filehandler.h:274
virtual ~FHLogWriter()
Definition: filehandler.h:275
void createInitFile(list< ParamSet * > ¶ms)
Definition: filehandler.cc:222
void open_logfile4writing(ofstream &FH, ios_base::openmode flag=ios_base::out)
Definition: filehandler.cc:272
Interface to handle file input/output for any SimComponent.
Definition: filehandler.h:53
void set_extension(const char *ext)
Definition: filehandler.h:145
void set_OccMatrix(TMatrix *occ)
Definition: filehandler.h:170
FileServices * _service
Link to the files manager.
Definition: filehandler.h:57
void set_isMasterExec(bool is)
Definition: filehandler.h:182
bool _isGenerationPeriodic
Flag setting the per generation periodicity behaviour of the file.
Definition: filehandler.h:71
bool get_isMasterExec()
Definition: filehandler.h:178
list< int > _generations
Definition: filehandler.h:85
bool _isInputHandler
Writing mode flag.
Definition: filehandler.h:67
Metapop * get_pop_ptr()
Returns the pointer to the current metapop through the FileServices interface.
Definition: filehandler.h:131
unsigned int _ExecRank
unused... yet
Definition: filehandler.h:88
std::string _path
File path as set during initialization.
Definition: filehandler.h:90
void set_ExecRank(int val)
Definition: filehandler.h:166
std::string _extension
File extension, should be specific to the implementation.
Definition: filehandler.h:93
virtual void init()
Called by notifier during simulation setup, performs file checking.
Definition: filehandler.cc:51
virtual void set_multi(bool rpl_per, bool gen_per, int rpl_occ, TMatrix *Occ, string path)
Definition: filehandler.h:197
std::string & get_filename()
Builds and returns the current file name depending on the periodicity of the file.
Definition: filehandler.cc:151
void set_pop_ptr(Metapop *pop_ptr)
Definition: filehandler.h:133
std::string & get_extension()
Definition: filehandler.h:143
void set_ReplicateOccurrence(unsigned int val)
Definition: filehandler.h:157
virtual void FHread(string &filename)=0
Default input function.
virtual void FHwrite()=0
Default behavior of the class, called by Handler::update().
TMatrix * get_OccMatrix()
Definition: filehandler.h:168
void set_GenerationOccurrence(unsigned int val)
Definition: filehandler.h:163
virtual ~FileHandler()
Definition: filehandler.h:121
void set_service(FileServices *srv)
Definition: filehandler.h:137
unsigned int _GenerationOccurrence
Tells every what generation the file should be written.
Definition: filehandler.h:75
bool get_isGenerationPeriodic()
Definition: filehandler.h:159
bool get_isInputHandler()
Definition: filehandler.h:150
void set_path()
Definition: filehandler.cc:112
bool _isMasterExec
Flag telling if the file must be written by the master or the worker node.
Definition: filehandler.h:65
virtual void set(bool rpl_per, bool gen_per, int rpl_occ, int gen_occ, int rank, string path)
Sets the hanlder parameters.
Definition: filehandler.h:193
std::string _current_filename
The current filename as set by FileHandler::get_filename().
Definition: filehandler.h:99
TMatrix _multipleOccurences
Multiple occurences.
Definition: filehandler.h:82
Metapop * _pop
Pointer to the current metapop, set during initialization within the init function.
Definition: filehandler.h:103
unsigned int get_ReplicateOccurrence()
Definition: filehandler.h:156
FileHandler(const char *ext)
Definition: filehandler.h:107
bool get_isReplicatePeriodic()
Definition: filehandler.h:153
std::string & get_path()
Definition: filehandler.h:139
list< int >::const_iterator _genITER
Definition: filehandler.h:84
unsigned int get_GenerationOccurrence()
Definition: filehandler.h:162
unsigned int _ReplicateOccurrence
Tells every what replicate the file should be written.
Definition: filehandler.h:73
unsigned int _current_generation
The current generation number of the simulation.
Definition: filehandler.h:79
unsigned int _current_replicate
The current replicate number of the simulation.
Definition: filehandler.h:77
unsigned int get_ExecRank()
unused yet...
Definition: filehandler.h:165
virtual void update()
Updates the inner replicate and generation counters and calls FHwrite if needed by the the periodicit...
Definition: filehandler.cc:166
FileServices * get_service()
Returns pointer to the FileServices.
Definition: filehandler.h:135
void set_isGenerationPeriodic(bool val)
Definition: filehandler.h:160
void set_isInputHandler(bool val)
Definition: filehandler.h:151
bool _isReplicatePeriodic
Flag telling if the file should be written each replicate.
Definition: filehandler.h:69
void set_isReplicatePeriodic(bool val)
Definition: filehandler.h:154
virtual vector< string > ifExist()
Checks if any file associated with the current file name already exists on disk.
Definition: filehandler.cc:70
A class to manage the files associated with each components of the simulation.
Definition: fileservices.h:52
Service handler (an observer).
Definition: handler.h:36
A class to handle matrix in params, coerces matrix into a vector of same total size.
Definition: tmatrix.h:49
void reset(unsigned int rows, unsigned int cols)
Re-allocate the existing matrix with assigned rows and cols dimensions.
Definition: tmatrix.h:116
double * getValArray() const
Definition: tmatrix.h:156
unsigned int ncols()
Definition: tmatrix.h:170
double get(unsigned int i, unsigned int j)
Accessor to element at row i and column j.
Definition: tmatrix.h:147
unsigned int nrows()
Definition: tmatrix.h:167
Template class for the trait's FileHandler.
Definition: filehandler.h:217
virtual ~TraitFileHandler()
Definition: filehandler.h:223
int _FHLinkedTraitIndex
Definition: filehandler.h:220
TraitFileHandler(TP *trait_proto, const char *ext)
Definition: filehandler.h:232
virtual void FHread(string &filename)=0
TP * _FHLinkedTrait
Definition: filehandler.h:219
virtual void set(bool rpl_per, bool gen_per, int rpl_occ, int gen_occ, int rank, string path, TP *trait_proto)
Definition: filehandler.h:236