2019-05-23 06:59:19 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2019- 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 "cafPdmObject.h"
|
|
|
|
#include "cafPdmPointer.h"
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
//
|
|
|
|
// Command response which contains status and possibly a result
|
|
|
|
//
|
|
|
|
//==================================================================================================
|
|
|
|
class RicfCommandResponse
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Status in order of severity from ok to critical
|
|
|
|
enum Status
|
|
|
|
{
|
|
|
|
COMMAND_OK,
|
|
|
|
COMMAND_WARNING,
|
|
|
|
COMMAND_ERROR
|
|
|
|
};
|
2019-09-06 03:40:57 -05:00
|
|
|
|
2019-05-23 06:59:19 -05:00
|
|
|
public:
|
2019-09-06 03:40:57 -05:00
|
|
|
RicfCommandResponse( Status status = COMMAND_OK, const QString& message = "" );
|
2019-10-09 02:21:28 -05:00
|
|
|
RicfCommandResponse( caf::PdmObject* ok_result );
|
2019-09-06 03:40:57 -05:00
|
|
|
|
|
|
|
Status status() const;
|
2019-10-09 02:21:28 -05:00
|
|
|
QString sanitizedResponseMessage() const;
|
2019-10-15 08:46:19 -05:00
|
|
|
QStringList messages() const;
|
2019-09-06 03:40:57 -05:00
|
|
|
caf::PdmObject* result() const;
|
|
|
|
void setResult( caf::PdmObject* result );
|
|
|
|
void updateStatus( Status status, const QString& message );
|
2019-05-23 06:59:19 -05:00
|
|
|
|
|
|
|
private:
|
2019-09-06 03:40:57 -05:00
|
|
|
static QString statusLabel( Status status );
|
|
|
|
|
2019-05-23 06:59:19 -05:00
|
|
|
private:
|
2019-09-06 03:40:57 -05:00
|
|
|
Status m_status;
|
|
|
|
QStringList m_messages;
|
2019-10-09 02:21:28 -05:00
|
|
|
std::unique_ptr<caf::PdmObject> m_result;
|
2019-05-23 06:59:19 -05:00
|
|
|
};
|