mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
79fa9765ca
We now use AK::Error and AK::ErrorOr<T> in both kernel and userspace! This was a slightly tedious refactoring that took a long time, so it's not unlikely that some bugs crept in. Nevertheless, it does pass basic functionality testing, and it's just real nice to finally see the same pattern in all contexts. :^)
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2019-2020, Jesse Buhagiar <jooster669@gmail.com>
|
|
* Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <Kernel/Forward.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class Coredump {
|
|
public:
|
|
static ErrorOr<NonnullOwnPtr<Coredump>> try_create(NonnullRefPtr<Process>, StringView output_path);
|
|
|
|
~Coredump() = default;
|
|
ErrorOr<void> write();
|
|
|
|
private:
|
|
Coredump(NonnullRefPtr<Process>, NonnullRefPtr<OpenFileDescription>);
|
|
static ErrorOr<NonnullRefPtr<OpenFileDescription>> try_create_target_file(Process const&, StringView output_path);
|
|
|
|
ErrorOr<void> write_elf_header();
|
|
ErrorOr<void> write_program_headers(size_t notes_size);
|
|
ErrorOr<void> write_regions();
|
|
ErrorOr<void> write_notes_segment(ReadonlyBytes);
|
|
|
|
ErrorOr<void> create_notes_segment_data(auto&) const;
|
|
ErrorOr<void> create_notes_process_data(auto&) const;
|
|
ErrorOr<void> create_notes_threads_data(auto&) const;
|
|
ErrorOr<void> create_notes_regions_data(auto&) const;
|
|
ErrorOr<void> create_notes_metadata_data(auto&) const;
|
|
|
|
NonnullRefPtr<Process> m_process;
|
|
NonnullRefPtr<OpenFileDescription> m_description;
|
|
size_t m_num_program_headers { 0 };
|
|
};
|
|
|
|
}
|