mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 11:00:29 +00:00
21b6d84ff0
These methods are no longer needed because SystemServer is able to populate the DevFS on its own. Device absolute_path no longer assume a path to the /dev location, because it really should not assume any path to a Device node. Because StorageManagement still needs to know the storage name, we declare a virtual method only for StorageDevices to override, but this technique should really be removed later on.
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/CircularQueue.h>
|
|
#include <AK/Vector.h>
|
|
#include <Kernel/Devices/CharacterDevice.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class ConsoleDevice final : public CharacterDevice {
|
|
AK_MAKE_ETERNAL
|
|
public:
|
|
static ConsoleDevice& the();
|
|
static void initialize();
|
|
static bool is_initialized();
|
|
|
|
ConsoleDevice();
|
|
virtual ~ConsoleDevice() override;
|
|
|
|
// ^CharacterDevice
|
|
virtual bool can_read(const Kernel::OpenFileDescription&, size_t) const override;
|
|
virtual bool can_write(const Kernel::OpenFileDescription&, size_t) const override { return true; }
|
|
virtual Kernel::KResultOr<size_t> read(OpenFileDescription&, u64, Kernel::UserOrKernelBuffer&, size_t) override;
|
|
virtual Kernel::KResultOr<size_t> write(OpenFileDescription&, u64, const Kernel::UserOrKernelBuffer&, size_t) override;
|
|
virtual StringView class_name() const override { return "Console"; }
|
|
|
|
void put_char(char);
|
|
|
|
const CircularQueue<char, 16384>& logbuffer() const { return m_logbuffer; }
|
|
|
|
private:
|
|
CircularQueue<char, 16384> m_logbuffer;
|
|
};
|
|
|
|
}
|