mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
860a3bbce3
This may seem like a no-op change, however it shrinks down the Kernel by a bit: .text -432 .unmap_after_init -60 .data -480 .debug_info -673 .debug_aranges 8 .debug_ranges -232 .debug_line -558 .debug_str -308 .debug_frame -40 With '= default', the compiler can do more inlining, hence the savings. I intentionally omitted some opportunities for '= default', because they would increase the Kernel size.
192 lines
5.1 KiB
C++
192 lines
5.1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Assertions.h>
|
|
#include <AK/Platform.h>
|
|
#include <AK/StdLibExtras.h>
|
|
#include <LibC/errno_numbers.h>
|
|
|
|
namespace Kernel {
|
|
|
|
enum KSuccessTag {
|
|
KSuccess
|
|
};
|
|
|
|
class [[nodiscard]] KResult {
|
|
public:
|
|
KResult(ErrnoCode error)
|
|
: m_error(-error)
|
|
{
|
|
}
|
|
KResult(KSuccessTag)
|
|
: m_error(0)
|
|
{
|
|
}
|
|
operator int() const { return m_error; }
|
|
[[nodiscard]] int error() const { return m_error; }
|
|
|
|
[[nodiscard]] bool is_success() const { return m_error == 0; }
|
|
[[nodiscard]] bool is_error() const { return !is_success(); }
|
|
|
|
private:
|
|
template<typename T>
|
|
friend class KResultOr;
|
|
KResult() = default;
|
|
|
|
int m_error { 0 };
|
|
};
|
|
|
|
template<typename T>
|
|
class alignas(T) [[nodiscard]] KResultOr {
|
|
public:
|
|
KResultOr(KResult error)
|
|
: m_error(error)
|
|
, m_is_error(true)
|
|
{
|
|
}
|
|
|
|
KResultOr(ErrnoCode error)
|
|
: m_error(error)
|
|
, m_is_error(true)
|
|
{
|
|
}
|
|
|
|
ALWAYS_INLINE KResultOr(T&& value)
|
|
{
|
|
new (&m_storage) T(move(value));
|
|
m_have_storage = true;
|
|
}
|
|
|
|
template<typename U>
|
|
ALWAYS_INLINE KResultOr(U&& value)
|
|
{
|
|
new (&m_storage) T(move(value));
|
|
m_have_storage = true;
|
|
}
|
|
|
|
// FIXME: clang-format gets confused about KResultOr. Why?
|
|
// clang-format off
|
|
KResultOr(KResultOr&& other)
|
|
// clang-format on
|
|
{
|
|
m_is_error = other.m_is_error;
|
|
if (m_is_error)
|
|
m_error = other.m_error;
|
|
else {
|
|
if (other.m_have_storage) {
|
|
new (&m_storage) T(move(other.value()));
|
|
m_have_storage = true;
|
|
other.value().~T();
|
|
other.m_have_storage = false;
|
|
}
|
|
}
|
|
other.m_is_error = true;
|
|
other.m_error = KSuccess;
|
|
}
|
|
|
|
KResultOr& operator=(KResultOr&& other)
|
|
{
|
|
if (&other == this)
|
|
return *this;
|
|
if (!m_is_error && m_have_storage) {
|
|
value().~T();
|
|
m_have_storage = false;
|
|
}
|
|
m_is_error = other.m_is_error;
|
|
if (m_is_error)
|
|
m_error = other.m_error;
|
|
else {
|
|
if (other.m_have_storage) {
|
|
new (&m_storage) T(move(other.value()));
|
|
m_have_storage = true;
|
|
other.value().~T();
|
|
other.m_have_storage = false;
|
|
}
|
|
}
|
|
other.m_is_error = true;
|
|
other.m_error = KSuccess;
|
|
return *this;
|
|
}
|
|
|
|
~KResultOr()
|
|
{
|
|
if (!m_is_error && m_have_storage)
|
|
value().~T();
|
|
}
|
|
|
|
[[nodiscard]] bool is_error() const { return m_is_error; }
|
|
|
|
[[nodiscard]] ALWAYS_INLINE KResult error() const
|
|
{
|
|
VERIFY(m_is_error);
|
|
return m_error;
|
|
}
|
|
|
|
[[nodiscard]] KResult result() const { return m_is_error ? m_error : KSuccess; }
|
|
|
|
[[nodiscard]] ALWAYS_INLINE T& value()
|
|
{
|
|
VERIFY(!m_is_error);
|
|
return *reinterpret_cast<T*>(&m_storage);
|
|
}
|
|
|
|
[[nodiscard]] ALWAYS_INLINE const T& value() const
|
|
{
|
|
VERIFY(!m_is_error);
|
|
return *reinterpret_cast<T*>(&m_storage);
|
|
}
|
|
|
|
[[nodiscard]] ALWAYS_INLINE T release_value()
|
|
{
|
|
VERIFY(!m_is_error);
|
|
VERIFY(m_have_storage);
|
|
T released_value(move(*reinterpret_cast<T*>(&m_storage)));
|
|
value().~T();
|
|
m_have_storage = false;
|
|
return released_value;
|
|
}
|
|
|
|
private:
|
|
union {
|
|
alignas(T) char m_storage[sizeof(T)];
|
|
KResult m_error;
|
|
};
|
|
bool m_is_error { false };
|
|
bool m_have_storage { false };
|
|
};
|
|
|
|
}
|
|
|
|
template<>
|
|
struct AK::Formatter<Kernel::KResult> : Formatter<int> {
|
|
void format(FormatBuilder& builder, Kernel::KResult value)
|
|
{
|
|
return Formatter<int>::format(builder, value);
|
|
}
|
|
};
|