mirror of https://gitee.com/bigwinds/arangodb
140 lines
4.5 KiB
C++
140 lines
4.5 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
/// DISCLAIMER
|
|
///
|
|
/// Copyright 2014-2016 ArangoDB GmbH, Cologne, Germany
|
|
/// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany
|
|
///
|
|
/// 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.
|
|
///
|
|
/// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
///
|
|
/// @author Dr. Frank Celler
|
|
/// @author Jan Steemann
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef ARANGODB_BASICS_EXCEPTIONS_H
|
|
#define ARANGODB_BASICS_EXCEPTIONS_H 1
|
|
|
|
#include "Basics/Common.h"
|
|
#include "Basics/Result.h"
|
|
|
|
#include <errno.h>
|
|
|
|
/// @brief diagnostic output
|
|
#define DIAGNOSTIC_INFORMATION(e) e.what()
|
|
|
|
/// @brief throws an arango exception with an error code
|
|
#define THROW_ARANGO_EXCEPTION(code) \
|
|
throw arangodb::basics::Exception(code, __FILE__, __LINE__)
|
|
|
|
/// @brief throws an arango exception with an error code and arbitrary
|
|
/// arguments (to be inserted in printf-style manner)
|
|
#define THROW_ARANGO_EXCEPTION_PARAMS(code, ...) \
|
|
throw arangodb::basics::Exception( \
|
|
code, \
|
|
arangodb::basics::Exception::FillExceptionString(code, __VA_ARGS__), \
|
|
__FILE__, __LINE__)
|
|
|
|
/// @brief throws an arango exception with an error code and arbitrary
|
|
/// arguments (to be inserted in printf-style manner)
|
|
#define THROW_ARANGO_EXCEPTION_FORMAT(code, format, ...) \
|
|
throw arangodb::basics::Exception( \
|
|
code, arangodb::basics::Exception::FillFormatExceptionString( \
|
|
"%s: " format, TRI_errno_string(code), __VA_ARGS__), \
|
|
__FILE__, __LINE__)
|
|
|
|
/// @brief throws an arango exception with an error code and an already-built
|
|
/// error message
|
|
#define THROW_ARANGO_EXCEPTION_MESSAGE(code, message) \
|
|
throw arangodb::basics::Exception(code, message, __FILE__, __LINE__)
|
|
|
|
/// @brief throws an arango result if the result fails
|
|
#define THROW_ARANGO_EXCEPTION_IF_FAIL(reSUlt) \
|
|
do { \
|
|
if ((reSUlt).fail()) { \
|
|
throw arangodb::basics::Exception((reSUlt), __FILE__, __LINE__); \
|
|
} \
|
|
} while(0);
|
|
|
|
namespace arangodb {
|
|
namespace basics {
|
|
|
|
/// @brief arango exception type
|
|
class Exception final : public virtual std::exception {
|
|
public:
|
|
static std::string FillExceptionString(int, ...);
|
|
static std::string FillFormatExceptionString(char const* format, ...);
|
|
static void SetVerbose(bool);
|
|
|
|
public:
|
|
Exception(int code, char const* file, int line);
|
|
Exception(Result const&, char const* file, int line);
|
|
Exception(Result&&, char const* file, int line);
|
|
|
|
Exception(int code, std::string const& errorMessage, char const* file,
|
|
int line);
|
|
|
|
Exception(int code, std::string&& errorMessage, char const* file,
|
|
int line);
|
|
|
|
Exception(int code, char const* errorMessage, char const* file, int line);
|
|
|
|
~Exception();
|
|
|
|
public:
|
|
char const* what() const noexcept override;
|
|
std::string const& message() const noexcept;
|
|
int code() const noexcept;
|
|
void addToMessage(std::string const&);
|
|
private:
|
|
void appendLocation() noexcept;
|
|
|
|
protected:
|
|
std::string _errorMessage;
|
|
char const* _file;
|
|
int const _line;
|
|
int const _code;
|
|
};
|
|
|
|
template<typename F>
|
|
Result catchToResult(F&& fn, int defaultError = TRI_ERROR_INTERNAL) {
|
|
// TODO check whether there are other specific exceptions we should catch
|
|
Result result{TRI_ERROR_NO_ERROR};
|
|
try {
|
|
result = std::forward<F>(fn)();
|
|
} catch (arangodb::basics::Exception const& e) {
|
|
result.reset(e.code(), e.message());
|
|
} catch (std::bad_alloc const&) {
|
|
result.reset(TRI_ERROR_OUT_OF_MEMORY);
|
|
} catch (std::exception const& e) {
|
|
result.reset(defaultError, e.what());
|
|
} catch (...) {
|
|
result.reset(defaultError);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
template<typename F>
|
|
Result catchVoidToResult(F&& fn, int defaultError = TRI_ERROR_INTERNAL) {
|
|
auto wrapped = [&fn]() -> Result {
|
|
std::forward<F>(fn)();
|
|
return Result{TRI_ERROR_NO_ERROR};
|
|
};
|
|
return catchToResult(wrapped, defaultError);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|