mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-05-08 07:32:04 +02:00
bb1a73d718
Build and Deploy on local RHEL9 / build (push) Successful in 2m0s
Build on RHEL9 docker image / build (push) Successful in 3m34s
Build on RHEL8 docker image / build (push) Successful in 4m46s
Build and Deploy on local RHEL8 / build (push) Successful in 5m3s
Run Simulator Tests on local RHEL9 / build (push) Successful in 14m43s
Run Simulator Tests on local RHEL8 / build (push) Successful in 18m15s
* added fetch fmt server library * added first draft of matterhorn * added enum ReturnCode * added cpp TCP Interface to slsDetectorServer * added fmt to workflows * bug: added std::signal for proper handling of ctr+c * added compile option to set log level * WIP * dont use c project settings when building matterhornserver * updated logger * WIP * WIP * linked fmt to slsProjectOptions * solved merge conflict * some refactoring * cleaned up logs * added fmt to workflow * WIP * generated register defs from csv file * oops given in hex * properly added fmt as a dependency * add fmt to conda recipe * some format changes * dont use public headers of fmt * WIP * used CRTP for virtual detector * WIP * added udp functions to matterhornserver * Matterhorn in tostring * warning unused variable from other PR * fixed build * updated cmake * added Server class usable for all detectors * removed stopserver * added some more functions * wrong overload * porper cleanup of matterhorn app * PR Review * refactored directory structure * used pause insetad of sleep --------- Co-authored-by: Dhanya Thattil <dhanya.thattil@psi.ch>
66 lines
2.0 KiB
C++
66 lines
2.0 KiB
C++
#include "sls/sls_detector_defs.h"
|
|
#include <array>
|
|
#include <cstdint>
|
|
#include <getopt.h>
|
|
#include <string>
|
|
|
|
namespace sls {
|
|
|
|
struct DetectorServerOptions {
|
|
// TODO: careful changed for other detectors
|
|
uint16_t port{DEFAULT_TCP_CNTRL_PORTNO};
|
|
/// @brief ignore firmware version compatibility
|
|
bool ignoreFirmwareCompatibility{false};
|
|
/// @brief safe startup - skip initial detector setup and checks
|
|
bool safeStartup{false};
|
|
bool versionRequested{false};
|
|
bool helpRequested{false};
|
|
};
|
|
|
|
template <typename Server>
|
|
struct SpecificDetectorServerOptions : DetectorServerOptions {};
|
|
|
|
// template specialization
|
|
// template <>
|
|
// struct SpecificDetectorServerOptions<BaseMatterhornServer> {};
|
|
|
|
// TODO should be a general server specific class or even shared with
|
|
// CommandLIneOptions in Receiver
|
|
class CommandLineOptions {
|
|
|
|
public:
|
|
CommandLineOptions() = default;
|
|
|
|
~CommandLineOptions() = default;
|
|
|
|
DetectorServerOptions parse(int argc, char *argv[]);
|
|
|
|
std::string printOptions() const;
|
|
|
|
private:
|
|
std::string getHelpMessage(const std::string &executable) const;
|
|
|
|
uint16_t parsePort(const char *optarg) const;
|
|
|
|
void parse_deprecated(const int &opt, char *argv[]);
|
|
|
|
DetectorServerOptions detectorserveroptions{};
|
|
|
|
static constexpr std::array<option, 8> options{
|
|
{{"help", no_argument, nullptr, 'h'},
|
|
{"version", no_argument, nullptr, 'v'},
|
|
{"port", required_argument, nullptr, 'p'},
|
|
{"ignore_fw_compatibility", no_argument, nullptr,
|
|
'f'}, // ignore firmware compatibility check
|
|
{"safe_startup", no_argument, nullptr, 's'}, // safe startup
|
|
// deprecated options for backward compatibility
|
|
{"devel", no_argument, nullptr, 'd'}, // safe_startup mode
|
|
{"update", no_argument, nullptr, 'u'}, // firmware compatibility check
|
|
|
|
{nullptr, 0, nullptr, 0}}};
|
|
|
|
inline static const char optstring[] = "hvp:fs"
|
|
"du"; // second part is deprecated
|
|
};
|
|
|
|
} // namespace sls
|