Some checks failed
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 11m5s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 11m6s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 13m47s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 14m9s
Build Packages / Generate python client (push) Successful in 49s
Build Packages / Unit tests (push) Has been skipped
Build Packages / Create release (push) Has been skipped
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 12m38s
Build Packages / build:rpm (rocky9_sls9) (push) Successful in 12m35s
Build Packages / build:rpm (rocky8) (push) Successful in 9m16s
Build Packages / build:rpm (rocky9) (push) Successful in 10m22s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 9m20s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 7m52s
Build Packages / Build documentation (push) Failing after 9s
This is an UNSTABLE release. The release has significant modifications and bug fixes, if things go wrong, it is better to revert to 1.0.0-rc.132. * jfjoch_broker: Use httplib for HTTP server instead of Pistache * jfjoch_broker: Drop OpenSSL support * jfjoch_broker: Base work for multi-lattice support in the future * Update dependencies to more recent versions (spdlog, HDF5, Catch2, httplib) Reviewed-on: #41
140 lines
4.1 KiB
C++
140 lines
4.1 KiB
C++
// SPDX-FileCopyrightText: 2024 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
// Using OpenAPI licensed with Apache License 2.0
|
|
|
|
#include <csignal>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
#include "../common/Logger.h"
|
|
#include "../common/print_license.h"
|
|
#include "../detector_control/DectrisSimplonClient.h"
|
|
#include "../writer/HDF5Objects.h"
|
|
|
|
#include "JFJochBrokerHttp.h"
|
|
#include "JFJochBrokerParser.h"
|
|
|
|
static httplib::Server *httpServer = nullptr;
|
|
|
|
static void sigHandler [[noreturn]] (int sig) {
|
|
switch (sig) {
|
|
case SIGINT:
|
|
case SIGQUIT:
|
|
case SIGTERM:
|
|
case SIGHUP:
|
|
default:
|
|
if (httpServer)
|
|
httpServer->stop();
|
|
break;
|
|
}
|
|
std::exit(0);
|
|
}
|
|
|
|
static void setUpUnixSignals(std::vector<int> quitSignals) {
|
|
sigset_t blocking_mask;
|
|
sigemptyset(&blocking_mask);
|
|
for (auto sig : quitSignals)
|
|
sigaddset(&blocking_mask, sig);
|
|
|
|
struct sigaction sa;
|
|
sa.sa_handler = sigHandler;
|
|
sa.sa_mask = blocking_mask;
|
|
sa.sa_flags = 0;
|
|
|
|
for (auto sig : quitSignals)
|
|
sigaction(sig, &sa, nullptr);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
RegisterHDF5Filter();
|
|
print_license("jfjoch_broker");
|
|
|
|
if ((argc == 1) || (argc > 3)) {
|
|
std::cout << "Usage ./jfjoch_broker <JSON config> {<TCP http port>}" << std::endl;
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
uint16_t http_port = 5232;
|
|
if (argc >= 3) http_port = static_cast<uint16_t>(std::atoi(argv[2]));
|
|
|
|
Logger logger("jfjoch_broker");
|
|
|
|
org::openapitools::server::model::Jfjoch_settings settings;
|
|
std::ifstream file(argv[1]);
|
|
try {
|
|
nlohmann::json input = nlohmann::json::parse(file);
|
|
settings = input;
|
|
settings.validate();
|
|
logger.Info("JSON configuration file read properly");
|
|
} catch (const std::exception &e) {
|
|
logger.Error("Error reading JSON configuration file: " + std::string(e.what()));
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
if (settings.verboseIsSet() && settings.isVerbose())
|
|
logger.Verbose(true);
|
|
else
|
|
logger.Verbose(false);
|
|
|
|
std::unique_ptr<ImagePusher> image_pusher = ParseImagePusher(settings);
|
|
if (image_pusher)
|
|
logger.Info(image_pusher->PrintSetup());
|
|
|
|
std::vector<DetectorSetup> det_setup;
|
|
for (const auto &d: settings.getDetector())
|
|
det_setup.push_back(ParseDetectorSetup(d));
|
|
|
|
if (det_setup.empty()) {
|
|
logger.Error("At least one detector need to be defined in the config file");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
DiffractionExperiment experiment(det_setup[0]);
|
|
ParseFacilityConfiguration(settings, experiment);
|
|
|
|
SpotFindingSettings spot_finding_settings = ParseSpotFindingSettings(settings);
|
|
|
|
AcquisitionDeviceGroup aq_devices;
|
|
ParseAcquisitionDeviceGroup(settings, aq_devices);
|
|
experiment.DataStreams(aq_devices.size());
|
|
|
|
int32_t send_buffer_size_MiB = settings.getImageBufferMiB();
|
|
std::unique_ptr<JFJochReceiverService> receiver =
|
|
std::make_unique<JFJochReceiverService>(aq_devices, logger, *image_pusher, send_buffer_size_MiB);
|
|
ParseReceiverSettings(settings, *receiver);
|
|
|
|
JFJochBrokerHttp broker(experiment, spot_finding_settings);
|
|
broker.FrontendDirectory(settings.getFrontendDirectory());
|
|
|
|
for (const auto &d: det_setup)
|
|
broker.AddDetectorSetup(d);
|
|
|
|
if (receiver)
|
|
broker.Services().Receiver(receiver.get());
|
|
|
|
httplib::Server server;
|
|
httpServer = &server;
|
|
|
|
server.Get("/", [](const httplib::Request &req, httplib::Response &res) {
|
|
res.status = 302; // Found (temporary redirect)
|
|
res.set_header("Location", "/frontend");
|
|
});
|
|
server.set_mount_point("/frontend", settings.getFrontendDirectory());
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
std::vector<int> sigs{SIGQUIT, SIGINT, SIGTERM, SIGHUP};
|
|
setUpUnixSignals(sigs);
|
|
|
|
broker.attach(server);
|
|
|
|
if (!server.listen("0.0.0.0", http_port)) {
|
|
logger.Error("Failed to start HTTP server");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|