mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 00:31:14 +00:00
100 lines
2.9 KiB
C++
100 lines
2.9 KiB
C++
/********************************************************************************
|
|
* Copyright (C) 2018-2022 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
|
|
* *
|
|
* This software is distributed under the terms of the *
|
|
* GNU Lesser General Public Licence (LGPL) version 3, *
|
|
* copied verbatim in the file "LICENSE" *
|
|
********************************************************************************/
|
|
|
|
#ifndef FAIR_MQ_TEST_EXCEPTIONS_H
|
|
#define FAIR_MQ_TEST_EXCEPTIONS_H
|
|
|
|
#include <fairmq/Device.h>
|
|
#include <fairlogger/Logger.h>
|
|
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
|
|
namespace fair::mq::test
|
|
{
|
|
|
|
class Exceptions : public Device
|
|
{
|
|
public:
|
|
auto Init() -> void override
|
|
{
|
|
std::string state("Init");
|
|
if (std::string::npos != GetId().find("_" + state + "_")) {
|
|
throw std::runtime_error("exception in " + state + "()");
|
|
}
|
|
}
|
|
|
|
auto Bind() -> void override
|
|
{
|
|
std::string state("Bind");
|
|
if (std::string::npos != GetId().find("_" + state + "_")) {
|
|
throw std::runtime_error("exception in " + state + "()");
|
|
}
|
|
}
|
|
|
|
auto Connect() -> void override
|
|
{
|
|
std::string state("Connect");
|
|
if (std::string::npos != GetId().find("_" + state + "_")) {
|
|
throw std::runtime_error("exception in " + state + "()");
|
|
}
|
|
}
|
|
|
|
auto InitTask() -> void override
|
|
{
|
|
std::string state("InitTask");
|
|
if (std::string::npos != GetId().find("_" + state + "_")) {
|
|
throw std::runtime_error("exception in " + state + "()");
|
|
}
|
|
}
|
|
|
|
auto PreRun() -> void override
|
|
{
|
|
std::string state("PreRun");
|
|
if (std::string::npos != GetId().find("_" + state + "_")) {
|
|
throw std::runtime_error("exception in " + state + "()");
|
|
}
|
|
}
|
|
|
|
auto Run() -> void override
|
|
{
|
|
std::string state("Run");
|
|
if (std::string::npos != GetId().find("_" + state + "_")) {
|
|
throw std::runtime_error("exception in " + state + "()");
|
|
}
|
|
}
|
|
|
|
auto PostRun() -> void override
|
|
{
|
|
std::string state("PostRun");
|
|
if (std::string::npos != GetId().find("_" + state + "_")) {
|
|
throw std::runtime_error("exception in " + state + "()");
|
|
}
|
|
}
|
|
|
|
auto ResetTask() -> void override
|
|
{
|
|
std::string state("ResetTask");
|
|
if (std::string::npos != GetId().find("_" + state + "_")) {
|
|
throw std::runtime_error("exception in " + state + "()");
|
|
}
|
|
}
|
|
|
|
auto Reset() -> void override
|
|
{
|
|
std::string state("Reset");
|
|
if (std::string::npos != GetId().find("_" + state + "_")) {
|
|
throw std::runtime_error("exception in " + state + "()");
|
|
}
|
|
}
|
|
};
|
|
|
|
} // namespace fair::mq::test
|
|
|
|
#endif /* FAIR_MQ_TEST_EXCEPTIONS_H */
|