2021-11-06 00:18:43 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/StringView.h>
|
2021-11-07 23:35:58 +00:00
|
|
|
#include <AK/Try.h>
|
2021-12-14 22:02:23 +00:00
|
|
|
#include <AK/Variant.h>
|
2021-11-06 00:18:43 +00:00
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#if defined(AK_OS_SERENITY) && defined(KERNEL)
|
2021-09-12 11:29:28 +00:00
|
|
|
# include <LibC/errno_codes.h>
|
2021-11-06 00:18:43 +00:00
|
|
|
#else
|
|
|
|
# include <errno.h>
|
2021-12-20 10:55:32 +00:00
|
|
|
# include <string.h>
|
2021-11-06 00:18:43 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
|
|
|
class Error {
|
|
|
|
public:
|
|
|
|
static Error from_errno(int code) { return Error(code); }
|
2021-11-22 15:00:53 +00:00
|
|
|
static Error from_syscall(StringView syscall_name, int rc) { return Error(syscall_name, rc); }
|
2022-07-11 17:57:32 +00:00
|
|
|
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<size_t N>
|
|
|
|
ALWAYS_INLINE static Error from_string_literal(char const (&string_literal)[N])
|
|
|
|
{
|
|
|
|
return from_string_view(StringView { string_literal, N - 1 });
|
|
|
|
}
|
2021-11-06 00:18:43 +00:00
|
|
|
|
2022-06-08 13:56:21 +00:00
|
|
|
bool operator==(Error const& other) const
|
|
|
|
{
|
|
|
|
return m_code == other.m_code && m_string_literal == other.m_string_literal && m_syscall == other.m_syscall;
|
|
|
|
}
|
|
|
|
|
2021-11-06 00:18:43 +00:00
|
|
|
bool is_errno() const { return m_code != 0; }
|
2021-11-22 15:00:53 +00:00
|
|
|
bool is_syscall() const { return m_syscall; }
|
2021-11-06 00:18:43 +00:00
|
|
|
|
|
|
|
int code() const { return m_code; }
|
|
|
|
StringView string_literal() const { return m_string_literal; }
|
|
|
|
|
2021-11-07 00:30:35 +00:00
|
|
|
protected:
|
2021-11-06 00:18:43 +00:00
|
|
|
Error(int code)
|
|
|
|
: m_code(code)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-11-07 00:30:35 +00:00
|
|
|
private:
|
2021-11-06 00:18:43 +00:00
|
|
|
Error(StringView string_literal)
|
|
|
|
: m_string_literal(string_literal)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-11-22 15:00:53 +00:00
|
|
|
Error(StringView syscall_name, int rc)
|
|
|
|
: m_code(-rc)
|
|
|
|
, m_string_literal(syscall_name)
|
|
|
|
, m_syscall(true)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-11-06 00:18:43 +00:00
|
|
|
int m_code { 0 };
|
|
|
|
StringView m_string_literal;
|
2021-11-22 15:00:53 +00:00
|
|
|
bool m_syscall { false };
|
2021-11-06 00:18:43 +00:00
|
|
|
};
|
|
|
|
|
2021-11-15 23:41:28 +00:00
|
|
|
template<typename T, typename ErrorType>
|
2022-10-07 12:52:47 +00:00
|
|
|
class [[nodiscard]] ErrorOr {
|
2021-11-06 00:18:43 +00:00
|
|
|
public:
|
2022-10-16 22:06:11 +00:00
|
|
|
ErrorOr()
|
|
|
|
requires(IsSame<T, Empty>)
|
2022-10-07 12:52:47 +00:00
|
|
|
: m_value_or_error(Empty {})
|
|
|
|
{
|
|
|
|
}
|
2021-11-06 00:18:43 +00:00
|
|
|
|
2021-11-07 23:36:35 +00:00
|
|
|
template<typename U>
|
2022-10-16 22:06:11 +00:00
|
|
|
ALWAYS_INLINE ErrorOr(U&& value)
|
|
|
|
requires(!IsSame<RemoveCVReference<U>, ErrorOr<T, ErrorType>>)
|
2022-10-07 12:52:47 +00:00
|
|
|
: m_value_or_error(forward<U>(value))
|
2021-11-07 23:36:35 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2021-11-06 21:16:50 +00:00
|
|
|
ErrorOr(ErrnoCode code)
|
2022-10-07 12:52:47 +00:00
|
|
|
: m_value_or_error(Error::from_errno(code))
|
2021-11-06 00:18:43 +00:00
|
|
|
{
|
|
|
|
}
|
2021-11-06 21:16:50 +00:00
|
|
|
#endif
|
2021-11-06 00:18:43 +00:00
|
|
|
|
2021-12-14 22:02:23 +00:00
|
|
|
T& value()
|
2021-11-06 00:18:43 +00:00
|
|
|
{
|
2022-10-07 12:52:47 +00:00
|
|
|
return m_value_or_error.template get<T>();
|
2021-11-06 00:18:43 +00:00
|
|
|
}
|
2022-10-07 12:52:47 +00:00
|
|
|
T const& value() const { return m_value_or_error.template get<T>(); }
|
2021-11-06 00:18:43 +00:00
|
|
|
|
2022-10-07 12:52:47 +00:00
|
|
|
ErrorType& error() { return m_value_or_error.template get<ErrorType>(); }
|
|
|
|
ErrorType const& error() const { return m_value_or_error.template get<ErrorType>(); }
|
|
|
|
|
|
|
|
bool is_error() const { return m_value_or_error.template has<ErrorType>(); }
|
2021-11-06 00:18:43 +00:00
|
|
|
|
2021-12-14 22:02:23 +00:00
|
|
|
T release_value() { return move(value()); }
|
|
|
|
ErrorType release_error() { return move(error()); }
|
2021-11-06 00:18:43 +00:00
|
|
|
|
2022-02-06 12:49:51 +00:00
|
|
|
T release_value_but_fixme_should_propagate_errors()
|
|
|
|
{
|
|
|
|
VERIFY(!is_error());
|
|
|
|
return release_value();
|
|
|
|
}
|
2021-11-06 10:29:32 +00:00
|
|
|
|
2021-11-06 00:18:43 +00:00
|
|
|
private:
|
2022-10-07 12:52:47 +00:00
|
|
|
Variant<T, ErrorType> m_value_or_error;
|
2021-11-06 00:18:43 +00:00
|
|
|
};
|
|
|
|
|
2021-11-07 00:30:35 +00:00
|
|
|
template<typename ErrorType>
|
2022-10-07 12:52:47 +00:00
|
|
|
class [[nodiscard]] ErrorOr<void, ErrorType> : public ErrorOr<Empty, ErrorType> {
|
2021-11-06 00:18:43 +00:00
|
|
|
public:
|
2022-10-07 12:52:47 +00:00
|
|
|
using ErrorOr<Empty, ErrorType>::ErrorOr;
|
2021-11-06 00:18:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-11-26 11:18:30 +00:00
|
|
|
#if USING_AK_GLOBALLY
|
2021-11-06 09:34:14 +00:00
|
|
|
using AK::Error;
|
2021-11-06 00:18:43 +00:00
|
|
|
using AK::ErrorOr;
|
2022-11-26 11:18:30 +00:00
|
|
|
#endif
|