2017-11-02 13:00:27 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017- Statoil ASA
|
|
|
|
//
|
|
|
|
// ResInsight 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.
|
|
|
|
//
|
|
|
|
// ResInsight 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 at <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "RifEclipseUserDataParserTools.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
|
|
|
class RifEclipseUserDataKeywordTools
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static std::vector<size_t> requiredItemsPerLineForKeyword(const std::string& identifier);
|
|
|
|
|
|
|
|
static std::vector<std::vector<std::string>> buildColumnHeaderText(const std::vector<std::string>& quantityNames,
|
|
|
|
const std::vector<std::vector<std::string>>& restOfHeaderRows,
|
|
|
|
std::vector<std::string>* errorText = nullptr);
|
|
|
|
|
2017-11-06 07:26:25 -06:00
|
|
|
static bool isTime(const std::string& identifier);
|
2017-11-02 13:00:27 -05:00
|
|
|
static bool isDate(const std::string& identifier);
|
2017-11-06 07:26:25 -06:00
|
|
|
static bool isDays(const std::string& identifier);
|
|
|
|
static bool isYears(const std::string& identifier);
|
|
|
|
static bool isYearX(const std::string& identifier);
|
2017-11-02 13:00:27 -05:00
|
|
|
|
|
|
|
static RifEclipseSummaryAddress makeAndFillAddress(const std::string quantityName, const std::vector<std::string>& columnHeaderText);
|
2017-11-06 03:53:46 -06:00
|
|
|
|
|
|
|
static bool isStepType(const std::string& identifier);
|
2017-11-06 14:20:53 -06:00
|
|
|
static size_t computeRequiredHeaderLineCount(const std::vector<std::string>& words);
|
|
|
|
|
|
|
|
static bool knownKeywordsWithZeroRequiredHeaderLines(const std::string& identifier);
|
|
|
|
static void extractThreeInts(int* i, int* j, int* k, const std::string& line);
|
2017-11-02 13:00:27 -05:00
|
|
|
};
|
|
|
|
|