mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
425195e93f
This is the overwhelming standard in the project, but there were some cases in the kernel which were not following it, lets fix those cases!
35 lines
1.0 KiB
C++
35 lines
1.0 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Kernel/Devices/CharacterDevice.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class RandomDevice final : public CharacterDevice {
|
|
AK_MAKE_ETERNAL
|
|
public:
|
|
static NonnullRefPtr<RandomDevice> must_create();
|
|
virtual ~RandomDevice() override;
|
|
|
|
// ^Device
|
|
virtual mode_t required_mode() const override { return 0666; }
|
|
virtual String device_name() const override { return "random"; }
|
|
|
|
private:
|
|
RandomDevice();
|
|
|
|
// ^CharacterDevice
|
|
virtual KResultOr<size_t> read(FileDescription&, u64, UserOrKernelBuffer&, size_t) override;
|
|
virtual KResultOr<size_t> write(FileDescription&, u64, const UserOrKernelBuffer&, size_t) override;
|
|
virtual bool can_read(const FileDescription&, size_t) const override;
|
|
virtual bool can_write(const FileDescription&, size_t) const override { return true; }
|
|
virtual StringView class_name() const override { return "RandomDevice"; }
|
|
};
|
|
|
|
}
|