2014-02-06 18:52:13 +00:00
|
|
|
/*
|
|
|
|
* ParserState.hpp, part of LatAnalyze 3
|
|
|
|
*
|
2020-01-13 09:57:06 +00:00
|
|
|
* Copyright (C) 2013 - 2020 Antonin Portelli
|
2014-02-06 18:52:13 +00:00
|
|
|
*
|
|
|
|
* 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_ParserState_hpp_
|
|
|
|
#define Latan_ParserState_hpp_
|
2013-09-15 18:39:22 +01:00
|
|
|
|
2014-03-13 18:51:01 +00:00
|
|
|
#include <LatAnalyze/Global.hpp>
|
2013-09-15 18:39:22 +01:00
|
|
|
|
2015-01-28 17:15:05 +00:00
|
|
|
BEGIN_LATAN_NAMESPACE
|
2013-09-15 18:39:22 +01:00
|
|
|
|
|
|
|
template <typename DataObj>
|
|
|
|
class ParserState
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
2014-03-03 14:21:37 +00:00
|
|
|
ParserState(std::istream *streamPt, std::string *namePt, DataObj *dataPt);
|
2013-09-15 18:39:22 +01:00
|
|
|
// destructor
|
2014-02-20 22:54:11 +00:00
|
|
|
virtual ~ParserState(void) = default;
|
2014-01-22 15:57:47 +00:00
|
|
|
private:
|
|
|
|
// scanner allocation/deallocation
|
|
|
|
virtual void initScanner(void) = 0;
|
|
|
|
virtual void destroyScanner(void) = 0;
|
|
|
|
public:
|
2014-02-13 19:23:39 +00:00
|
|
|
DataObj *data;
|
|
|
|
void *scanner;
|
|
|
|
std::istream *stream;
|
|
|
|
std::string *streamName;
|
2014-01-22 15:57:47 +00:00
|
|
|
|
2013-09-15 18:39:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename DataObj>
|
2014-01-22 15:57:47 +00:00
|
|
|
ParserState<DataObj>::ParserState(std::istream *streamPt, std::string *namePt,
|
|
|
|
DataObj *dataPt)
|
|
|
|
: data(dataPt)
|
2014-02-13 19:23:39 +00:00
|
|
|
, scanner(nullptr)
|
2014-01-22 15:57:47 +00:00
|
|
|
, stream(streamPt)
|
|
|
|
, streamName(namePt)
|
2013-09-15 18:39:22 +01:00
|
|
|
{}
|
|
|
|
|
2015-01-28 17:15:05 +00:00
|
|
|
END_LATAN_NAMESPACE
|
2013-09-15 18:39:22 +01:00
|
|
|
|
2014-02-06 18:52:13 +00:00
|
|
|
#endif // Latan_ParserState_hpp_
|