2019-05-21 06:40:42 -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 "RiaGrpcServiceInterface.h"
|
|
|
|
|
|
|
|
#include "Properties.grpc.pb.h"
|
|
|
|
|
|
|
|
#include <grpcpp/grpcpp.h>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-05-21 09:33:41 -05:00
|
|
|
class RiaActiveCellResultsStateHandler;
|
|
|
|
class RiaGridCellResultsStateHandler;
|
2019-05-21 06:40:42 -05:00
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
//
|
|
|
|
// gRPC-service answering requests about property information for a given case and time step
|
|
|
|
//
|
|
|
|
//==================================================================================================
|
|
|
|
class RiaGrpcPropertiesService final : public rips::Properties::AsyncService, public RiaGrpcServiceInterface
|
|
|
|
{
|
|
|
|
public:
|
2019-05-22 12:58:12 -05:00
|
|
|
grpc::Status GetAvailableProperties(grpc::ServerContext* context,
|
2019-05-21 06:40:42 -05:00
|
|
|
const rips::PropertiesRequest* request,
|
2019-05-22 12:58:12 -05:00
|
|
|
rips::AvailableProperties* reply) override;
|
2019-05-21 06:40:42 -05:00
|
|
|
grpc::Status GetActiveCellResults(grpc::ServerContext* context,
|
|
|
|
const rips::ResultRequest* request,
|
2019-05-22 12:58:12 -05:00
|
|
|
rips::ResultArray* reply,
|
2019-05-21 06:40:42 -05:00
|
|
|
RiaActiveCellResultsStateHandler* stateHandler);
|
2019-05-21 09:33:41 -05:00
|
|
|
grpc::Status GetGridResults(grpc::ServerContext* context,
|
|
|
|
const rips::ResultRequest* request,
|
2019-05-22 12:58:12 -05:00
|
|
|
rips::ResultArray* reply,
|
2019-05-21 09:33:41 -05:00
|
|
|
RiaGridCellResultsStateHandler* stateHandler);
|
2019-05-22 08:30:09 -05:00
|
|
|
grpc::Status SetActiveCellResults(grpc::ServerContext* context,
|
|
|
|
const rips::ResultRequestChunk* request,
|
|
|
|
rips::Empty* reply,
|
|
|
|
RiaActiveCellResultsStateHandler* stateHandler);
|
2019-05-22 12:58:12 -05:00
|
|
|
grpc::Status SetGridResults(grpc::ServerContext* context,
|
|
|
|
const rips::ResultRequestChunk* request,
|
|
|
|
rips::Empty* reply,
|
|
|
|
RiaGridCellResultsStateHandler* stateHandler);
|
|
|
|
|
2019-05-21 06:40:42 -05:00
|
|
|
std::vector<RiaAbstractGrpcCallback*> createCallbacks() override;
|
|
|
|
};
|