2014-02-20 23:52:45 +00:00
|
|
|
/*
|
|
|
|
* AsciiFile.hpp, part of LatAnalyze 3
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 - 2014 Antonin Portelli
|
|
|
|
*
|
|
|
|
* LatAnalyze 3 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.
|
|
|
|
*
|
|
|
|
* LatAnalyze 3 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 LatAnalyze 3. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef Latan_AsciiFile_hpp_
|
|
|
|
#define Latan_AsciiFile_hpp_
|
|
|
|
|
|
|
|
#include <latan/Global.hpp>
|
|
|
|
#include <latan/File.hpp>
|
|
|
|
#include <latan/Mat.hpp>
|
2014-03-12 19:23:22 +00:00
|
|
|
#include <latan/MatSample.hpp>
|
2014-02-20 23:52:45 +00:00
|
|
|
#include <latan/RandGen.hpp>
|
2014-03-03 14:21:37 +00:00
|
|
|
#include <fstream>
|
2014-02-20 23:52:45 +00:00
|
|
|
|
|
|
|
BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* ASCII datafile class *
|
|
|
|
******************************************************************************/
|
|
|
|
class AsciiFile: public File
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
class AsciiParserState: public ParserState<IoDataTable>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
2014-03-03 14:21:37 +00:00
|
|
|
AsciiParserState(std::istream *stream, std::string *name,
|
|
|
|
IoDataTable *data);
|
2014-02-20 23:52:45 +00:00
|
|
|
// destructor
|
|
|
|
virtual ~AsciiParserState(void);
|
|
|
|
// first element reference
|
|
|
|
bool isFirst;
|
|
|
|
std::string first;
|
|
|
|
// parsing buffers
|
|
|
|
RandGenState stateBuf;
|
|
|
|
DMatSample dMatSampleBuf;
|
|
|
|
std::queue<DMat> dMatQueue;
|
|
|
|
std::queue<double> doubleQueue;
|
|
|
|
std::queue<int> intQueue;
|
|
|
|
private:
|
|
|
|
// allocation/deallocation functions defined in IoAsciiLexer.lpp
|
|
|
|
virtual void initScanner(void);
|
|
|
|
virtual void destroyScanner(void);
|
|
|
|
};
|
|
|
|
public:
|
|
|
|
// constructors
|
2014-03-03 14:21:37 +00:00
|
|
|
AsciiFile(void) = default;
|
2014-02-20 23:52:45 +00:00
|
|
|
AsciiFile(const std::string &name, const unsigned int mode);
|
|
|
|
// destructor
|
|
|
|
virtual ~AsciiFile(void);
|
|
|
|
// access
|
|
|
|
virtual void save(const DMat &m, const std::string &name);
|
|
|
|
virtual void save(const DMatSample &s, const std::string &name);
|
|
|
|
virtual void save(const RandGenState &state, const std::string &name);
|
|
|
|
// tests
|
|
|
|
virtual bool isOpen(void) const;
|
|
|
|
// IO
|
|
|
|
virtual void close(void);
|
|
|
|
virtual void open(const std::string &name, const unsigned int mode);
|
|
|
|
private:
|
|
|
|
// IO
|
|
|
|
virtual std::string load(const std::string &name = "");
|
|
|
|
// parser
|
|
|
|
void parse(void);
|
|
|
|
private:
|
|
|
|
std::fstream fileStream_;
|
2014-03-03 14:21:37 +00:00
|
|
|
bool isParsed_{false};
|
|
|
|
std::unique_ptr<AsciiParserState> state_{nullptr};
|
2014-02-20 23:52:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // Latan_AsciiFile_hpp_
|