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
|
/* inputDataItemIO.h
*
* Copyright (C) 2009 Marcel Schumann
*
* This file is part of QuEasy -- A Toolbox for Automated QSAR Model
* Construction and Validation.
* QuEasy 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.
*
* QuEasy 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 this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef INPUTDATAITEMIO_H
#define INPUTDATAITEMIO_H
#include <dataItemView.h>
#include <CSVInputDataItem.h>
#include <SDFInputDataItem.h>
#include <partitioningItem.h>
#include <BALL/DATATYPE/string.h>
#include <map>
#include <set>
namespace BALL
{
namespace VIEW
{
/** @class InputDataItemIO
* @brief Helper class for creation of InputSDFItems and CSVInputItems from config-file sections
*/
class InputDataItemIO
{
public:
InputDataItemIO(DataItemView* view);
/** reads the given config-file section, creates all neccessary SDFInputDataItems and CSVInputDataItems, registers them in the view and in the Pipeline-QSets of MainWindow and creates edges between those input items */
void readConfigSection(String& configfile_section, std::map<String, DataItem*>& filenames_map, std::list<std::pair<double,double> >* item_positions, const String& directory);
void writeConfigSection(SDFInputDataItem* sd_item, std::ofstream& out, std::ostringstream& item_positions, const String& directory);
void writeConfigSection(CSVInputDataItem* sd_item, std::ofstream& out, const String& directory);
void writeConfigSection(PartitioningItem* item, std::ofstream& out, std::ostringstream& item_positions);
private:
/** restore a PartitioningItem. This function is called automatically from readConfigSection() if an InputPartitioner-section is observed. */
void readPartitionerSection(String& configfile_section, std::map<String, DataItem*>& filenames_map, std::list<std::pair<double,double> >* item_positions);
DataItemView* view_;
std::set<CSVInputDataItem*> saved_csv_;
std::set<CSVInputDataItem*> written_csv_;
};
}
}
#endif // INPUTDATAITEMIO_H
|