/* * Copyright (c) 2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #if defined(AK_OS_SERENITY) && defined(KERNEL) # include #else # include # include #endif namespace AK { class Error { public: [[nodiscard]] static Error from_errno(int code) { return Error(code); } [[nodiscard]] static Error from_syscall(StringView syscall_name, int rc) { return Error(syscall_name, rc); } [[nodiscard]] static Error from_string_view(StringView string_literal) { return Error(string_literal); } // NOTE: Prefer `from_string_literal` when directly typing out an error message: // // return Error::from_string_literal("Class: Some failure"); // // If you need to return a static string based on a dynamic condition (like // picking an error from an array), then prefer `from_string_view` instead. template [[nodiscard]] ALWAYS_INLINE static Error from_string_literal(char const (&string_literal)[N]) { return from_string_view(StringView { string_literal, N - 1 }); } // Note: Don't call this from C++; it's here for Jakt interop (as the name suggests). template T> ALWAYS_INLINE static Error __jakt_from_string_literal(T string) { return from_string_view(string); } bool operator==(Error const& other) const { return m_code == other.m_code && m_string_literal == other.m_string_literal && m_syscall == other.m_syscall; } bool is_errno() const { return m_code != 0; } bool is_syscall() const { return m_syscall; } int code() const { return m_code; } StringView string_literal() const { return m_string_literal; } protected: Error(int code) : m_code(code) { } private: Error(StringView string_literal) : m_string_literal(string_literal) { } Error(StringView syscall_name, int rc) : m_string_literal(syscall_name) , m_code(-rc) , m_syscall(true) { } StringView m_string_literal; int m_code { 0 }; bool m_syscall { false }; }; template class [[nodiscard]] ErrorOr { template friend class ErrorOr; public: using ResultType = T; using ErrorType = E; ErrorOr() requires(IsSame) : m_value_or_error(Empty {}) { } ALWAYS_INLINE ErrorOr(ErrorOr&&) = default; ALWAYS_INLINE ErrorOr(ErrorOr const&) = default; ALWAYS_INLINE ErrorOr& operator=(ErrorOr&&) = default; ALWAYS_INLINE ErrorOr& operator=(ErrorOr const&) = default; template ALWAYS_INLINE ErrorOr(ErrorOr const& value) requires(IsConvertible) : m_value_or_error(value.m_value_or_error.visit([](U const& v) -> Variant { return v; }, [](ErrorType const& error) -> Variant { return error; })) { } template ALWAYS_INLINE ErrorOr(ErrorOr& value) requires(IsConvertible) : m_value_or_error(value.m_value_or_error.visit([](U& v) { return Variant(move(v)); }, [](ErrorType& error) { return Variant(move(error)); })) { } template ALWAYS_INLINE ErrorOr(ErrorOr&& value) requires(IsConvertible) : m_value_or_error(value.m_value_or_error.visit([](U& v) { return Variant(move(v)); }, [](ErrorType& error) { return Variant(move(error)); })) { } template ALWAYS_INLINE ErrorOr(U&& value) requires( requires { T(declval()); } || requires { ErrorType(declval>()); }) : m_value_or_error(forward(value)) { } #ifdef AK_OS_SERENITY ErrorOr(ErrnoCode code) : m_value_or_error(Error::from_errno(code)) { } #endif T& value() { return m_value_or_error.template get(); } T const& value() const { return m_value_or_error.template get(); } ErrorType& error() { return m_value_or_error.template get(); } ErrorType const& error() const { return m_value_or_error.template get(); } bool is_error() const { return m_value_or_error.template has(); } T release_value() { return move(value()); } ErrorType release_error() { return move(error()); } T release_value_but_fixme_should_propagate_errors() { VERIFY(!is_error()); return release_value(); } private: Variant m_value_or_error; }; template class [[nodiscard]] ErrorOr : public ErrorOr { public: using ResultType = void; using ErrorOr::ErrorOr; }; } #if USING_AK_GLOBALLY using AK::Error; using AK::ErrorOr; #endif