mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#4416 First implementation of gRPC-based Python interface
First implementation with Asynchronous gRPC server, a few services and some client python code.
This commit is contained in:
366
ApplicationCode/GrpcInterface/RiaGrpcServer.cpp
Normal file
366
ApplicationCode/GrpcInterface/RiaGrpcServer.cpp
Normal file
@@ -0,0 +1,366 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "RiaGrpcServer.h"
|
||||
|
||||
#include "RiaApplication.h"
|
||||
#include "RiaDefines.h"
|
||||
|
||||
#include "RiaGrpcCallbacks.h"
|
||||
#include "RiaGrpcServiceInterface.h"
|
||||
#include "RiaGrpcGridInfoService.h"
|
||||
|
||||
#include "RigCaseCellResultsData.h"
|
||||
#include "RigMainGrid.h"
|
||||
#include "RimEclipseCase.h"
|
||||
#include "RimProject.h"
|
||||
|
||||
#include "cafAssert.h"
|
||||
|
||||
#include <grpc/support/log.h>
|
||||
#include <grpcpp/grpcpp.h>
|
||||
|
||||
#include <QTcpServer>
|
||||
|
||||
using grpc::CompletionQueue;
|
||||
using grpc::Server;
|
||||
using grpc::ServerAsyncResponseWriter;
|
||||
using grpc::ServerBuilder;
|
||||
using grpc::ServerCompletionQueue;
|
||||
using grpc::ServerContext;
|
||||
using grpc::Status;
|
||||
|
||||
//==================================================================================================
|
||||
//
|
||||
// The GRPC server implementation
|
||||
//
|
||||
//==================================================================================================
|
||||
class RiaGrpcServerImpl
|
||||
{
|
||||
public:
|
||||
RiaGrpcServerImpl(int portNumber);
|
||||
~RiaGrpcServerImpl();
|
||||
int portNumber() const;
|
||||
bool isRunning() const;
|
||||
void run();
|
||||
void runInThread();
|
||||
void initialize();
|
||||
void processOneRequest();
|
||||
void quit();
|
||||
int currentPortNumber;
|
||||
|
||||
private:
|
||||
void waitForNextRequest();
|
||||
void process(RiaAbstractGrpcCallback* method);
|
||||
|
||||
private:
|
||||
int m_portNumber;
|
||||
std::unique_ptr<grpc::ServerCompletionQueue> m_completionQueue;
|
||||
std::unique_ptr<grpc::Server> m_server;
|
||||
std::list<std::shared_ptr<RiaGrpcServiceInterface>> m_services;
|
||||
std::list<RiaAbstractGrpcCallback*> m_unprocessedRequests;
|
||||
std::mutex m_requestMutex;
|
||||
std::thread m_thread;
|
||||
};
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RiaGrpcServerImpl::RiaGrpcServerImpl(int portNumber)
|
||||
: m_portNumber(portNumber)
|
||||
{}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RiaGrpcServerImpl::~RiaGrpcServerImpl()
|
||||
{
|
||||
quit();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
int RiaGrpcServerImpl::portNumber() const
|
||||
{
|
||||
return m_portNumber;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RiaGrpcServerImpl::isRunning() const
|
||||
{
|
||||
return m_server != nullptr;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServerImpl::run()
|
||||
{
|
||||
initialize();
|
||||
while (true)
|
||||
{
|
||||
waitForNextRequest();
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServerImpl::runInThread()
|
||||
{
|
||||
initialize();
|
||||
m_thread = std::thread(&RiaGrpcServerImpl::waitForNextRequest, this);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServerImpl::initialize()
|
||||
{
|
||||
CAF_ASSERT(m_portNumber > 0 && m_portNumber <= (int) std::numeric_limits<quint16>::max());
|
||||
|
||||
QString serverAddress = QString("localhost:%1").arg(m_portNumber);
|
||||
|
||||
ServerBuilder builder;
|
||||
builder.AddListeningPort(serverAddress.toStdString(), grpc::InsecureServerCredentials());
|
||||
|
||||
for (auto key : RiaGrpcServiceFactory::instance()->allKeys())
|
||||
{
|
||||
std::shared_ptr<RiaGrpcServiceInterface> service(RiaGrpcServiceFactory::instance()->create(key));
|
||||
builder.RegisterService(dynamic_cast<grpc::Service*>(service.get()));
|
||||
m_services.push_back(service);
|
||||
}
|
||||
|
||||
m_completionQueue = builder.AddCompletionQueue();
|
||||
m_server = builder.BuildAndStart();
|
||||
|
||||
CVF_ASSERT(m_server);
|
||||
RiaLogging::info(QString("Server listening on %1").arg(serverAddress));
|
||||
|
||||
// Spawn new CallData instances to serve new clients.
|
||||
for (auto service : m_services)
|
||||
{
|
||||
for (auto callback : service->createCallbacks())
|
||||
{
|
||||
process(callback);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServerImpl::processOneRequest()
|
||||
{
|
||||
std::lock_guard<std::mutex> requestLock(m_requestMutex);
|
||||
if (!m_unprocessedRequests.empty())
|
||||
{
|
||||
RiaAbstractGrpcCallback* method = m_unprocessedRequests.front();
|
||||
m_unprocessedRequests.pop_front();
|
||||
process(method);
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
/// Gracefully shut down the GRPC server. The internal order is important.
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServerImpl::quit()
|
||||
{
|
||||
if (m_server)
|
||||
{
|
||||
RiaLogging::info("Shutting down gRPC server");
|
||||
// Clear unhandled requests
|
||||
while (!m_unprocessedRequests.empty())
|
||||
{
|
||||
RiaAbstractGrpcCallback* method = m_unprocessedRequests.front();
|
||||
m_unprocessedRequests.pop_front();
|
||||
delete method;
|
||||
}
|
||||
|
||||
// Shutdown server and queue
|
||||
m_server->Shutdown();
|
||||
m_completionQueue->Shutdown();
|
||||
|
||||
// Wait for thread to join after handling the shutdown call
|
||||
m_thread.join();
|
||||
|
||||
// Must destroy server before services
|
||||
m_server.reset();
|
||||
m_completionQueue.reset();
|
||||
|
||||
// Finally clear services
|
||||
m_services.clear();
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServerImpl::waitForNextRequest()
|
||||
{
|
||||
void* tag;
|
||||
bool ok = false;
|
||||
|
||||
while (m_completionQueue->Next(&tag, &ok))
|
||||
{
|
||||
RiaAbstractGrpcCallback* method = static_cast<RiaAbstractGrpcCallback*>(tag);
|
||||
if (ok)
|
||||
{
|
||||
std::lock_guard<std::mutex> requestLock(m_requestMutex);
|
||||
m_unprocessedRequests.push_back(method);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServerImpl::process(RiaAbstractGrpcCallback* method)
|
||||
{
|
||||
if (method->callState() == RiaAbstractGrpcCallback::CREATE_HANDLER)
|
||||
{
|
||||
RiaLogging::debug(QString("Initialising request handler for: %1").arg(method->name()));
|
||||
method->createRequestHandler(m_completionQueue.get());
|
||||
}
|
||||
else if (method->callState() == RiaAbstractGrpcCallback::INIT_REQUEST)
|
||||
{
|
||||
// Perform initialization and immediately process the first request
|
||||
// The initialization is necessary for streaming services.
|
||||
RiaLogging::info(QString("Starting handling: %1").arg(method->name()));
|
||||
method->initRequest();
|
||||
method->processRequest();
|
||||
}
|
||||
else if (method->callState() == RiaAbstractGrpcCallback::PROCESS_REQUEST)
|
||||
{
|
||||
method->processRequest();
|
||||
}
|
||||
else
|
||||
{
|
||||
RiaLogging::info(QString("Finished handling: %1").arg(method->name()));
|
||||
method->finishRequest();
|
||||
process(method->createNewFromThis());
|
||||
delete method;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RiaGrpcServer::RiaGrpcServer(int portNumber)
|
||||
{
|
||||
m_serverImpl = new RiaGrpcServerImpl(portNumber);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
RiaGrpcServer::~RiaGrpcServer()
|
||||
{
|
||||
delete m_serverImpl;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
int RiaGrpcServer::portNumber() const
|
||||
{
|
||||
if (m_serverImpl) return m_serverImpl->portNumber();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool RiaGrpcServer::isRunning() const
|
||||
{
|
||||
if (m_serverImpl) return m_serverImpl->isRunning();
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServer::run()
|
||||
{
|
||||
m_serverImpl->run();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServer::runInThread()
|
||||
{
|
||||
m_serverImpl->runInThread();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServer::initialize()
|
||||
{
|
||||
m_serverImpl->initialize();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServer::processOneRequest()
|
||||
{
|
||||
m_serverImpl->processOneRequest();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiaGrpcServer::quit()
|
||||
{
|
||||
if (m_serverImpl)
|
||||
m_serverImpl->quit();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
int RiaGrpcServer::findAvailablePortNumber(int defaultPortNumber)
|
||||
{
|
||||
int startPort = 50051;
|
||||
|
||||
if (defaultPortNumber > 0 && defaultPortNumber < (int)std::numeric_limits<quint16>::max())
|
||||
{
|
||||
startPort = defaultPortNumber;
|
||||
}
|
||||
|
||||
int endPort = std::min(startPort + 100, (int)std::numeric_limits<quint16>::max());
|
||||
|
||||
QTcpServer serverTest;
|
||||
quint16 port = static_cast<quint16>(startPort);
|
||||
for (; port <= static_cast<quint16>(endPort); ++port)
|
||||
{
|
||||
if (serverTest.listen(QHostAddress::LocalHost, port))
|
||||
{
|
||||
return static_cast<int>(port);
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
Reference in New Issue
Block a user