|
| 1 | +// |
| 2 | +// This is a derivative work. originally part of the LLVM Project. |
| 3 | +// Licensed under the Apache License v2.0 with LLVM Exceptions. |
| 4 | +// See https://llvm.org/LICENSE.txt for license information. |
| 5 | +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | +// |
| 7 | +// Copyright (c) 2023 Vinnie Falco ([email protected]) |
| 8 | +// |
| 9 | +// Official repository: https://github.com/cppalliance/mrdox |
| 10 | +// |
| 11 | + |
| 12 | +#ifndef MRDOX_ERRORCODE_HPP |
| 13 | +#define MRDOX_ERRORCODE_HPP |
| 14 | + |
| 15 | +#include <mrdox/detail/access.hpp> |
| 16 | +#include <llvm/Support/Error.h> |
| 17 | +#include <llvm/Support/raw_ostream.h> |
| 18 | +#include <source_location> |
| 19 | +#include <system_error> |
| 20 | + |
| 21 | +namespace clang { |
| 22 | +namespace mrdox { |
| 23 | + |
| 24 | +//------------------------------------------------ |
| 25 | + |
| 26 | +namespace detail { |
| 27 | +CONST_FUNCTION_ACCESS(callGetPtr, llvm::Error, getPtr, llvm::ErrorInfoBase*); |
| 28 | +} // detail |
| 29 | + |
| 30 | +/** Holds a portable error code |
| 31 | +*/ |
| 32 | +class ErrorCode |
| 33 | +{ |
| 34 | + std::error_code ec_; |
| 35 | + std::source_location loc_; |
| 36 | + |
| 37 | + static |
| 38 | + llvm::ErrorInfoBase const* |
| 39 | + getPtr(llvm::Error const& e) noexcept |
| 40 | + { |
| 41 | + return access::callFunction<detail::callGetPtr>(e); |
| 42 | + } |
| 43 | + |
| 44 | + static |
| 45 | + std::error_code |
| 46 | + getErrorCode( |
| 47 | + llvm::Error const& e) noexcept |
| 48 | + { |
| 49 | + auto const p = getPtr(e); |
| 50 | + if(! p) |
| 51 | + return std::error_code(); |
| 52 | + return p->convertToErrorCode(); |
| 53 | + } |
| 54 | + |
| 55 | +public: |
| 56 | + ErrorCode() = default; |
| 57 | + ErrorCode(ErrorCode const&) = default; |
| 58 | + ErrorCode& operator=(ErrorCode const&) = default; |
| 59 | + |
| 60 | + ErrorCode( |
| 61 | + llvm::Error& e, |
| 62 | + std::source_location const& loc = |
| 63 | + std::source_location::current()) noexcept |
| 64 | + : ec_(getErrorCode(e)) |
| 65 | + , loc_(loc) |
| 66 | + { |
| 67 | + e.operator bool(); |
| 68 | + } |
| 69 | + |
| 70 | + ErrorCode( |
| 71 | + llvm::Error&& e, |
| 72 | + std::source_location const& loc = |
| 73 | + std::source_location::current()) noexcept |
| 74 | + : ec_(getErrorCode(e)) |
| 75 | + , loc_(loc) |
| 76 | + { |
| 77 | + llvm::Error e_(std::move(e)); |
| 78 | + e_.operator bool(); |
| 79 | + } |
| 80 | + |
| 81 | + std::string |
| 82 | + message() const |
| 83 | + { |
| 84 | + return ec_.message(); |
| 85 | + } |
| 86 | + |
| 87 | + std::source_location const& |
| 88 | + where() const noexcept |
| 89 | + { |
| 90 | + return loc_; |
| 91 | + } |
| 92 | + |
| 93 | + bool failed() const noexcept |
| 94 | + { |
| 95 | + return ec_.operator bool(); |
| 96 | + } |
| 97 | + |
| 98 | + operator bool() const noexcept |
| 99 | + { |
| 100 | + return failed(); |
| 101 | + } |
| 102 | + |
| 103 | + friend |
| 104 | + llvm::raw_ostream& |
| 105 | + operator<<( |
| 106 | + llvm::raw_ostream& os, |
| 107 | + ErrorCode const& ec) |
| 108 | + { |
| 109 | + ec.write(os); |
| 110 | + return os; |
| 111 | + } |
| 112 | + |
| 113 | +private: |
| 114 | + void write(llvm::raw_ostream& os) const; |
| 115 | +}; |
| 116 | + |
| 117 | +} // mrdox |
| 118 | +} // clang |
| 119 | + |
| 120 | +#endif |
0 commit comments