/* Copyright 2013 Statoil ASA. This file is part of the Open Porous Media project (OPM). OPM 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. OPM 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 OPM. If not, see . */ #ifndef PARSER_KEYWORD_H #define PARSER_KEYWORD_H #include #include #include #include #include #include namespace Json { class JsonObject; } namespace Opm { class Deck; class DeckKeyword; class ParseContext; class ErrorGuard; class ParserDoubleItem; class RawKeyword; class ErrorGuard; /* Small helper struct to assemble the information needed to infer the size of a keyword based on another keyword in the deck. */ struct KeywordSize { KeywordSize(const std::string& in_keyword, const std::string& in_item, int in_shift) : keyword(in_keyword), item(in_item), shift(in_shift) {} KeywordSize() {} bool operator==(const KeywordSize& other) const { return ((this->keyword == other.keyword) && (this->item == other.item) && (this->shift == other.shift)); } bool operator!=(const KeywordSize& other) const { return !(*this == other); } std::string keyword; std::string item; int shift; }; class ParserKeyword { public: ParserKeyword(const std::string& name , const std::string& sizeKeyword , const std::string& sizeItem, int size_shift, bool _isTableCollection = false); explicit ParserKeyword(const std::string& name); explicit ParserKeyword(const Json::JsonObject& jsonConfig); void setFixedSize( size_t keywordSize); void setSizeType( ParserKeywordSizeEnum sizeType ); void setTableCollection(bool _isTableCollection); void initSizeKeyword( const std::string& sizeKeyword, const std::string& sizeItem, int size_shift); typedef std::set DeckNameSet; typedef std::set SectionNameSet; static bool validInternalName(const std::string& name); static bool validDeckName(const std::string_view& name); bool hasMatchRegex() const; void setMatchRegex(const std::string& deckNameRegexp); bool matches(const std::string_view& ) const; bool hasDimension() const; void addRecord( ParserRecord ); void addDataRecord( ParserRecord ); const ParserRecord& getRecord(size_t recordIndex) const; ParserRecord& getRecord(size_t recordIndex); std::vector< ParserRecord >::const_iterator begin() const; std::vector< ParserRecord >::const_iterator end() const; const std::string className() const; const std::string& getName() const; size_t getFixedSize() const; bool hasFixedSize() const; bool isTableCollection() const; std::string getDescription() const; void setDescription(const std::string &description); bool hasMultipleDeckNames() const; void clearDeckNames(); void addDeckName( const std::string& deckName ); void setCodeEnd(const std::string& end); const std::string& codeEnd() const; DeckNameSet::const_iterator deckNamesBegin() const; DeckNameSet::const_iterator deckNamesEnd() const; void clearValidSectionNames(); void addValidSectionName(const std::string& sectionName); bool isValidSection(const std::string& sectionName) const; SectionNameSet::const_iterator validSectionNamesBegin() const; SectionNameSet::const_iterator validSectionNamesEnd() const; DeckKeyword parse(const ParseContext& parseContext, ErrorGuard& errors, RawKeyword& rawKeyword, UnitSystem& active_unitsystem, UnitSystem& default_unitsystem, const std::string& filename) const; enum ParserKeywordSizeEnum getSizeType() const; const KeywordSize& getKeywordSize() const; bool isDataKeyword() const; bool rawStringKeyword() const; bool isCodeKeyword() const; bool isAlternatingKeyword() const; bool isDoubleRecordKeyword() const; void setAlternatingKeyword(bool alternating); void setDoubleRecordsKeyword(bool double_rec); std::string createDeclaration(const std::string& indent) const; std::string createDecl() const; std::string createCode() const; bool operator==( const ParserKeyword& ) const; bool operator!=( const ParserKeyword& ) const; private: KeywordSize keyword_size; std::string m_name; DeckNameSet m_deckNames; DeckNameSet m_validSectionNames; std::string m_matchRegexString; std::regex m_matchRegex; std::vector< ParserRecord > m_records; enum ParserKeywordSizeEnum m_keywordSizeType; size_t m_fixedSize; bool m_isTableCollection; std::string m_Description; bool raw_string_keyword = false; bool alternating_keyword = false; bool double_records = false; std::string code_end; static bool validNameStart(const std::string_view& name); void initDeckNames( const Json::JsonObject& jsonConfig ); void initSectionNames( const Json::JsonObject& jsonConfig ); void initMatchRegex( const Json::JsonObject& jsonObject ); void initCode( const Json::JsonObject& jsonConfig ); void initData( const Json::JsonObject& jsonConfig ); void initSize( const Json::JsonObject& jsonConfig ); void initSizeKeyword(const Json::JsonObject& sizeObject); void commonInit(const std::string& name, ParserKeywordSizeEnum sizeType); void addItems( const Json::JsonObject& jsonConfig); void parseRecords( const Json::JsonObject& recordsConfig); }; std::ostream& operator<<( std::ostream&, const ParserKeyword& ); } #endif