mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
feat(tools): Move the error code to the Tools target
This commit is contained in:
parent
db727092c5
commit
9cbaf7e0fd
|
@ -33,10 +33,12 @@ if(BUILD_FAIRMQ OR BUILD_SDK)
|
||||||
tools/Strings.h
|
tools/Strings.h
|
||||||
tools/Unique.h
|
tools/Unique.h
|
||||||
tools/Version.h
|
tools/Version.h
|
||||||
|
Error.h
|
||||||
Tools.h
|
Tools.h
|
||||||
)
|
)
|
||||||
|
|
||||||
set(TOOLS_SOURCE_FILES
|
set(TOOLS_SOURCE_FILES
|
||||||
|
Error.cxx
|
||||||
tools/Network.cxx
|
tools/Network.cxx
|
||||||
tools/Process.cxx
|
tools/Process.cxx
|
||||||
tools/Semaphore.cxx
|
tools/Semaphore.cxx
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* Copyright (C) 2019 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
|
* Copyright (C) 2019-2021 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
|
||||||
* *
|
* *
|
||||||
* This software is distributed under the terms of the *
|
* This software is distributed under the terms of the *
|
||||||
* GNU Lesser General Public Licence (LGPL) version 3, *
|
* GNU Lesser General Public Licence (LGPL) version 3, *
|
||||||
|
@ -8,13 +8,9 @@
|
||||||
|
|
||||||
#include "Error.h"
|
#include "Error.h"
|
||||||
|
|
||||||
namespace fair::mq
|
namespace fair::mq {
|
||||||
{
|
|
||||||
|
|
||||||
const char* ErrorCategory::name() const noexcept
|
const char* ErrorCategory::name() const noexcept { return "fairmq"; }
|
||||||
{
|
|
||||||
return "fairmq";
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string ErrorCategory::message(int ev) const
|
std::string ErrorCategory::message(int ev) const
|
||||||
{
|
{
|
54
fairmq/Error.h
Normal file
54
fairmq/Error.h
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
/********************************************************************************
|
||||||
|
* Copyright (C) 2021 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_ERROR_H
|
||||||
|
#define FAIR_MQ_ERROR_H
|
||||||
|
|
||||||
|
#include <fairmq/tools/Strings.h>
|
||||||
|
#include <stdexcept>
|
||||||
|
#include <system_error>
|
||||||
|
|
||||||
|
namespace fair::mq {
|
||||||
|
|
||||||
|
struct RuntimeError : ::std::runtime_error
|
||||||
|
{
|
||||||
|
template<typename... T>
|
||||||
|
explicit RuntimeError(T&&... t)
|
||||||
|
: ::std::runtime_error::runtime_error(tools::ToString(std::forward<T>(t)...))
|
||||||
|
{}
|
||||||
|
};
|
||||||
|
|
||||||
|
enum class ErrorCode
|
||||||
|
{
|
||||||
|
OperationInProgress = 10,
|
||||||
|
OperationTimeout,
|
||||||
|
OperationCanceled,
|
||||||
|
DeviceChangeStateFailed,
|
||||||
|
DeviceGetPropertiesFailed,
|
||||||
|
DeviceSetPropertiesFailed
|
||||||
|
};
|
||||||
|
|
||||||
|
std::error_code MakeErrorCode(ErrorCode);
|
||||||
|
|
||||||
|
struct ErrorCategory : std::error_category
|
||||||
|
{
|
||||||
|
const char* name() const noexcept override;
|
||||||
|
std::string message(int ev) const override;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace fair::mq
|
||||||
|
|
||||||
|
namespace std {
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct is_error_code_enum<fair::mq::ErrorCode> : true_type
|
||||||
|
{};
|
||||||
|
|
||||||
|
} // namespace std
|
||||||
|
|
||||||
|
#endif /* FAIR_MQ_ERROR_H */
|
|
@ -36,7 +36,6 @@ set(SDK_SOURCE_FILES
|
||||||
DDSEnvironment.cxx
|
DDSEnvironment.cxx
|
||||||
DDSSession.cxx
|
DDSSession.cxx
|
||||||
DDSTopology.cxx
|
DDSTopology.cxx
|
||||||
Error.cxx
|
|
||||||
Topology.cxx
|
Topology.cxx
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* Copyright (C) 2019 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
|
* Copyright (C) 2019-2021 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
|
||||||
* *
|
* *
|
||||||
* This software is distributed under the terms of the *
|
* This software is distributed under the terms of the *
|
||||||
* GNU Lesser General Public Licence (LGPL) version 3, *
|
* GNU Lesser General Public Licence (LGPL) version 3, *
|
||||||
|
@ -9,53 +9,12 @@
|
||||||
#ifndef FAIR_MQ_SDK_ERROR_H
|
#ifndef FAIR_MQ_SDK_ERROR_H
|
||||||
#define FAIR_MQ_SDK_ERROR_H
|
#define FAIR_MQ_SDK_ERROR_H
|
||||||
|
|
||||||
#include <fairmq/tools/Strings.h>
|
#include <fairmq/Error.h>
|
||||||
#include <stdexcept>
|
|
||||||
#include <system_error>
|
|
||||||
|
|
||||||
namespace fair::mq
|
namespace fair::mq::sdk {
|
||||||
{
|
|
||||||
|
|
||||||
namespace sdk
|
using RuntimeError = fair::mq::RuntimeError;
|
||||||
{
|
|
||||||
|
|
||||||
struct RuntimeError : ::std::runtime_error
|
} /* namespace fair::mq::sdk */
|
||||||
{
|
|
||||||
template<typename... T>
|
|
||||||
explicit RuntimeError(T&&... t)
|
|
||||||
: ::std::runtime_error::runtime_error(tools::ToString(std::forward<T>(t)...))
|
|
||||||
{}
|
|
||||||
};
|
|
||||||
|
|
||||||
} /* namespace sdk */
|
|
||||||
|
|
||||||
enum class ErrorCode
|
|
||||||
{
|
|
||||||
OperationInProgress = 10,
|
|
||||||
OperationTimeout,
|
|
||||||
OperationCanceled,
|
|
||||||
DeviceChangeStateFailed,
|
|
||||||
DeviceGetPropertiesFailed,
|
|
||||||
DeviceSetPropertiesFailed
|
|
||||||
};
|
|
||||||
|
|
||||||
std::error_code MakeErrorCode(ErrorCode);
|
|
||||||
|
|
||||||
struct ErrorCategory : std::error_category
|
|
||||||
{
|
|
||||||
const char* name() const noexcept override;
|
|
||||||
std::string message(int ev) const override;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace fair::mq
|
|
||||||
|
|
||||||
namespace std
|
|
||||||
{
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct is_error_code_enum<fair::mq::ErrorCode> : true_type
|
|
||||||
{};
|
|
||||||
|
|
||||||
} // namespace std
|
|
||||||
|
|
||||||
#endif /* FAIR_MQ_SDK_ERROR_H */
|
#endif /* FAIR_MQ_SDK_ERROR_H */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user