126 lines
3.7 KiB
C++
126 lines
3.7 KiB
C++
/* Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License. */
|
|
|
|
#pragma once
|
|
|
|
#if defined(_MSVC_LANG)
|
|
#define PD_CPLUSPLUS _MSVC_LANG
|
|
#else
|
|
#define PD_CPLUSPLUS __cplusplus
|
|
#endif
|
|
|
|
#include <iostream>
|
|
#if PD_CPLUSPLUS >= 201703L
|
|
#include <optional>
|
|
#define PD_HAS_STD_OPTIONAL 1
|
|
#endif
|
|
#include <sstream>
|
|
#include <string>
|
|
|
|
namespace common {
|
|
|
|
//////////////// Exception handling and Error Message /////////////////
|
|
#if !defined(_WIN32)
|
|
#define PD_UNLIKELY(expr) (__builtin_expect(static_cast<bool>(expr), 0))
|
|
#define PD_LIKELY(expr) (__builtin_expect(static_cast<bool>(expr), 1))
|
|
#else
|
|
#define PD_UNLIKELY(expr) (expr)
|
|
#define PD_LIKELY(expr) (expr)
|
|
#endif
|
|
|
|
struct PD_Exception : public std::exception {
|
|
public:
|
|
template <typename... Args>
|
|
explicit PD_Exception(const std::string& msg,
|
|
const char* file,
|
|
int line,
|
|
const char* default_msg) {
|
|
std::ostringstream sout;
|
|
if (msg.empty()) {
|
|
sout << default_msg << "\n [" << file << ":" << line << "]";
|
|
} else {
|
|
sout << msg << "\n [" << file << ":" << line << "]";
|
|
}
|
|
err_msg_ = sout.str();
|
|
}
|
|
|
|
const char* what() const noexcept override { return err_msg_.c_str(); }
|
|
|
|
private:
|
|
std::string err_msg_;
|
|
};
|
|
|
|
class ErrorMessage {
|
|
public:
|
|
template <typename... Args>
|
|
explicit ErrorMessage(const Args&... args) {
|
|
build_string(args...);
|
|
}
|
|
|
|
void build_string() { oss << ""; }
|
|
|
|
template <typename T>
|
|
void build_string(const T& t) {
|
|
oss << t;
|
|
}
|
|
|
|
#ifdef PD_HAS_STD_OPTIONAL
|
|
template <typename T>
|
|
void build_string(const std::optional<T>& t) {
|
|
if (t.has_value()) {
|
|
build_string(*t);
|
|
} else {
|
|
oss << "nullopt";
|
|
}
|
|
}
|
|
#endif
|
|
|
|
template <typename T, typename... Args>
|
|
void build_string(const T& t, const Args&... args) {
|
|
build_string(t);
|
|
build_string(args...);
|
|
}
|
|
|
|
std::string to_string() { return oss.str(); }
|
|
|
|
private:
|
|
std::ostringstream oss;
|
|
};
|
|
|
|
#define PD_CHECK(COND, ...) \
|
|
do { \
|
|
if (PD_UNLIKELY(!(COND))) { \
|
|
auto __message__ = ::common::ErrorMessage(__VA_ARGS__).to_string(); \
|
|
throw ::common::PD_Exception(__message__, \
|
|
__FILE__, \
|
|
__LINE__, \
|
|
"Expected " #COND \
|
|
", but it's not satisfied."); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define PD_THROW(...) \
|
|
do { \
|
|
auto __message__ = ::common::ErrorMessage(__VA_ARGS__).to_string(); \
|
|
throw ::common::PD_Exception( \
|
|
__message__, __FILE__, __LINE__, "An error occurred."); \
|
|
} while (0)
|
|
|
|
#ifdef PD_HAS_STD_OPTIONAL
|
|
#undef PD_HAS_STD_OPTIONAL
|
|
#endif
|
|
#undef PD_CPLUSPLUS
|
|
|
|
} // namespace common
|