-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathOccPlugin.cxx
More file actions
92 lines (80 loc) · 3.15 KB
/
OccPlugin.cxx
File metadata and controls
92 lines (80 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
* === This file is part of ALICE O² ===
*
* Copyright 2018 CERN and copyright holders of ALICE O².
* Author: Teo Mrnjavac <teo.mrnjavac@cern.ch>
*
* This program 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.
*
* This program 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* In applying this license CERN does not waive the privileges and
* immunities granted to it by virtue of its status as an
* Intergovernmental Organization or submit itself to any jurisdiction.
*/
#include "OccPlugin.h"
#include "OccPluginServer.h"
#include "util/Logger.h"
#include <fairmq/PluginManager.h>
OccPlugin::OccPlugin(const std::string& name,
const fair::mq::Plugin::Version& version,
const std::string& maintainer,
const std::string& homepage,
fair::mq::PluginServices* pluginServices)
: Plugin(name, version, maintainer, homepage, pluginServices)
{
// Debug: list of FairMQ property keys
// auto pk = GetPropertyKeys();
// std::for_each( pk.begin(), pk.end(), [](auto it){OLOG(DEBUG) << "\t" << it; } );
auto controlPort = std::to_string(OCC_DEFAULT_PORT);
try {
controlPort = GetPropertyAsString(OCC_CONTROL_PORT_ARG);
}
catch (std::exception& e) {
OLOG(INFO) << "O² control port not specified, defaulting to " << OCC_DEFAULT_PORT;
}
try {
TakeDeviceControl();
}
catch (fair::mq::PluginServices::DeviceControlError& e) {
// If we are here, it means another plugin has taken control.
OLOG(ERROR) << "Cannot take device control" << e.what();
}
m_grpcThread = std::thread(&OccPlugin::runServer, this, pluginServices, controlPort);
}
OccPlugin::~OccPlugin()
{
std::for_each(m_teardownTasks.begin(),
m_teardownTasks.end(),
[](std::function<void()>& func) { func(); });
m_grpcThread.join();
}
void OccPlugin::runServer(fair::mq::PluginServices* pluginServices, const std::string& controlPort)
{
std::string serverAddress("0.0.0.0:"s + controlPort);
OccPluginServer service(pluginServices);
grpc::ServerBuilder builder;
builder.AddListeningPort(serverAddress, grpc::InsecureServerCredentials());
builder.RegisterService(&service);
std::unique_ptr<grpc::Server> server(builder.BuildAndStart());
OLOG(INFO) << "gRPC server listening on port " << controlPort;
std::function<void()> teardown = [&server]() {
server->Shutdown();
};
addTeardownTask(teardown);
server->Wait();
OLOG(INFO) << "gRPC server stopped";
}
void OccPlugin::addTeardownTask(std::function<void()>& func)
{
m_teardownTasks.push_back(func);
}