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
|
/***************************************************************************
File : OriginParser.h
--------------------------------------------------------------------
Copyright : (C) 2008 Alex Kargovsky (kargovsky@yumr.phys.msu.su)
Copyright : (C) 2017 Stefan Gerlach (stefan.gerlach@uni.kn)
Description : Origin file parser base class
***************************************************************************/
/***************************************************************************
* *
* 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; either version 2 of the License, or *
* (at your option) any later version. *
* *
* 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 should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin Street, Fifth Floor, *
* Boston, MA 02110-1301 USA *
* *
***************************************************************************/
#ifndef ORIGIN_PARSER_H
#define ORIGIN_PARSER_H
#include "OriginObj.h"
#include "tree.hh"
#ifdef GENERATE_CODE_FOR_LOG
#define LOG_PRINT( logfile, ... ) { fprintf(logfile, __VA_ARGS__); }
#else // !GENERATE_CODE_FOR_LOG
#define LOG_PRINT( logfile, ... ) {};
#endif
class OriginParser
{
public:
virtual ~OriginParser() = default;
virtual bool parse() = 0;
vector<Origin::SpreadSheet>::difference_type findSpreadByName(const string& name) const;
vector<Origin::Matrix>::difference_type findMatrixByName(const string& name) const;
vector<Origin::Function>::difference_type findFunctionByName(const string& name) const;
vector<Origin::Excel>::difference_type findExcelByName(const string& name) const;
protected:
vector<Origin::SpreadColumn>::difference_type findSpreadColumnByName(vector<Origin::SpreadSheet>::size_type spread, const string& name) const;
vector<Origin::SpreadColumn>::difference_type findExcelColumnByName(vector<Origin::Excel>::size_type excel, vector<Origin::SpreadSheet>::size_type sheet, const string& name) const;
pair<string, string> findDataByIndex(unsigned int index) const;
pair<Origin::ProjectNode::NodeType, string> findObjectByIndex(unsigned int index) const;
pair<Origin::ProjectNode::NodeType, Origin::Window> findWindowObjectByIndex(unsigned int index) const;
void convertSpreadToExcel(vector<Origin::SpreadSheet>::size_type spread);
int findColumnByName(int spread, const string& name);
private:
bool iequals(const string&, const string&, const std::locale& = std::locale()) const;
public:
vector<Origin::SpreadColumn> datasets;
vector<Origin::SpreadSheet> spreadSheets;
vector<Origin::Matrix> matrixes;
vector<Origin::Excel> excels;
vector<Origin::Function> functions;
vector<Origin::Graph> graphs;
vector<Origin::Note> notes;
tree<Origin::ProjectNode> projectTree;
string resultsLog;
unsigned int windowsCount;
unsigned int fileVersion, buildVersion;
};
OriginParser* createOriginAnyParser(const string& fileName);
#endif // ORIGIN_PARSER_H
|