milvus/internal/core/src/exceptions/EasyAssert.cpp
FluorineDog d972a0361d
Weaken debug message (#6324)
Signed-off-by: fluorinedog <fluorinedog@gmail.com>
2021-07-08 15:50:57 +08:00

62 lines
2.0 KiB
C++

// Copyright (C) 2019-2020 Zilliz. 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
#include <iostream>
#include "EasyAssert.h"
// #define BOOST_STACKTRACE_USE_BACKTRACE
#include <boost/stacktrace.hpp>
#include <sstream>
namespace milvus::impl {
std::string
EasyStackTrace() {
std::string output;
#ifdef BOOST_STACKTRACE_USE_BACKTRACE
auto stack_info = boost::stacktrace::stacktrace();
std::ostringstream ss;
ss << stack_info;
output = std::string(ss.str());
#endif
return output;
}
void
EasyAssertInfo(bool value,
std::string_view expr_str,
std::string_view filename,
int lineno,
std::string_view extra_info,
ErrorCodeEnum error_code) {
// enable error code
if (!value) {
std::string info;
info += "Assert \"" + std::string(expr_str) + "\"";
info += " at " + std::string(filename) + ":" + std::to_string(lineno) + "\n";
if (!extra_info.empty()) {
info += " => " + std::string(extra_info);
}
std::cout << info << std::endl;
throw SegcoreError(error_code, std::string(extra_info));
}
}
[[noreturn]] void
ThrowWithTrace(const std::exception& exception) {
if (typeid(exception) == typeid(SegcoreError)) {
throw exception;
}
auto err_msg = exception.what() + std::string("\n") + EasyStackTrace();
throw SegcoreError(ErrorCodeEnum::UnexpectedError, err_msg);
}
} // namespace milvus::impl