ResInsight/ApplicationCode/GrpcInterface/RiaGrpcPropertiesService.h

59 lines
2.9 KiB
C
Raw Normal View History

/////////////////////////////////////////////////////////////////////////////////
//
// 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;
//==================================================================================================
//
// 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,
const rips::PropertiesRequest* request,
2019-05-22 12:58:12 -05:00
rips::AvailableProperties* reply) override;
grpc::Status GetActiveCellResults(grpc::ServerContext* context,
const rips::ResultRequest* request,
2019-05-22 12:58:12 -05:00
rips::ResultArray* reply,
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);
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);
std::vector<RiaAbstractGrpcCallback*> createCallbacks() override;
};