ColumnDataReader.hpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #ifndef _COLUMNDATAREADER_HPP_
00037 #define _COLUMNDATAREADER_HPP_
00038
00039 #include "AbstractDataReader.hpp"
00040
00041 #include <string>
00042 #include <vector>
00043 #include <map>
00044
00045 #include "FileFinder.hpp"
00046
00050 class ColumnDataReader : public AbstractDataReader
00051 {
00052 private:
00053
00054 std::map<std::string, int> mVariablesToColumns;
00055 std::map<std::string, std::string> mVariablesToUnits;
00056 int mNumFixedDimensions;
00057 bool mHasUnlimitedDimension;
00058 int mNumVariables;
00059 std::string mInfoFilename;
00060 std::string mDataFilename;
00061 std::string mAncillaryFilename;
00062 std::vector<double> mValues;
00063 unsigned mFieldWidth;
00070 void PushColumnEntryFromLine(const std::string& rLine, int col);
00071
00078 void ReadColumnFromFile(const std::string& rFilename, int col);
00079
00087 void ReadValueFromFile(const std::string& rFilename, int col, int row);
00088
00096 void CheckFiles(const std::string& rDirectory, const std::string& rBaseName);
00097
00098 public:
00099
00117 ColumnDataReader(const std::string& rDirectory,
00118 const std::string& rBaseName,
00119 bool makeAbsolute=true);
00120
00128 ColumnDataReader(const FileFinder& rDirectory,
00129 const std::string& rBaseName);
00130
00136 std::vector<double> GetValues(const std::string& rVariableName);
00137
00144 std::vector<double> GetValues(const std::string& rVariableName, int fixedDimension);
00145
00149 std::vector<double> GetUnlimitedDimensionValues();
00150
00156 bool HasValues(const std::string& rVariableName);
00157
00161 unsigned GetFieldWidth();
00162 };
00163
00164 #endif //_COLUMNDATAREADER_HPP_