mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 13:47:12 -05:00
Schedule-level keywords whose OPM ParserRecord is a single ALL-sized item
(RPTRST, RPTSCHED, ...) are not positional — they take a free-form list
of mnemonic tokens like `BASIC=2 DEN ROCKC NORST=1`. Previously each
`keyword_data` entry became its own DeckItem, and OPM emitted them
either as truncated positional values or as a quoted, space-collapsed
single string.
Detect that schema shape in `RifEventKeywordFormatter::formatKeyword`
and pack the user's entries into one RawString DeckItem of mnemonic
tokens: `KEY` for FLAG items, `KEY=VALUE` otherwise.
To distinguish flag mnemonics (`DEN`) from `KEY=1`-style entries, add a
new `FLAG` value to `RimWellEventKeywordItem::ItemType` plumbed end to
end (Python -> GRPC -> Rimc -> storage -> formatter). The Python API
now maps `bool True` to FLAG and silently drops `bool False`.
For positional keywords (WCONHIST etc.) FLAG items have no value to
emit and are rendered as default markers ("1*").
A `rawStringItem` helper is added to `RifOpmDeckTools` so the
mnemonic-list path can produce DeckItems whose OPM output is not
quoted.
65 lines
2.3 KiB
C++
65 lines
2.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2025- Equinor 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 "RimWellEvent.h"
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
#include <vector>
|
|
|
|
//==================================================================================================
|
|
///
|
|
/// Schedule-level keyword event - represents a schedule keyword with arbitrary keyword items
|
|
/// that is NOT tied to a specific well path (e.g., RPTRST, GRUPTREE, RPTSCHED)
|
|
///
|
|
//==================================================================================================
|
|
class RimKeywordEvent : public RimWellEvent
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
RimKeywordEvent();
|
|
~RimKeywordEvent() override;
|
|
|
|
// Keyword management
|
|
QString keywordName() const;
|
|
void setKeywordName( const QString& keyword );
|
|
|
|
// Item management
|
|
void addStringItem( const QString& name, const QString& value );
|
|
void addIntItem( const QString& name, int value );
|
|
void addDoubleItem( const QString& name, double value );
|
|
void addFlagItem( const QString& name );
|
|
|
|
std::vector<class RimWellEventKeywordItem*> items() const;
|
|
|
|
// Override from RimWellEvent
|
|
EventType eventType() const override { return EventType::SCHEDULE_KEYWORD; }
|
|
QString generateScheduleKeyword( const QString& wellName ) const override;
|
|
|
|
protected:
|
|
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
|
|
void defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName = "" ) override;
|
|
|
|
private:
|
|
caf::PdmField<QString> m_keywordName;
|
|
caf::PdmChildArrayField<class RimWellEventKeywordItem*> m_items;
|
|
};
|