mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-13 10:27:05 +02:00
This change has many improvements: - We don't use `LockRefPtr` to hold instances of many base devices as with the DeviceManagement class. Instead, we have a saner pattern of holding them in a `NonnullRefPtr<T> const`, in a small-text footprint class definition in the `Device.cpp` file. - The awkwardness of using `::the()` each time we need to get references to mostly-static objects (like the Event queue) in runtime is now gone in the migration to using the `Device` class. - Acquiring a device feel more obvious because we use now the Device class for this method. The method name is improved as well.
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Singleton.h>
|
|
#include <Kernel/API/MajorNumberAllocation.h>
|
|
#include <Kernel/Devices/Device.h>
|
|
#include <Kernel/Devices/Generic/NullDevice.h>
|
|
#include <Kernel/Sections.h>
|
|
|
|
namespace Kernel {
|
|
|
|
UNMAP_AFTER_INIT NonnullLockRefPtr<NullDevice> NullDevice::must_initialize()
|
|
{
|
|
auto null_device_or_error = Device::try_create_device<NullDevice>();
|
|
// FIXME: Find a way to propagate errors
|
|
VERIFY(!null_device_or_error.is_error());
|
|
return null_device_or_error.release_value();
|
|
}
|
|
|
|
UNMAP_AFTER_INIT NullDevice::NullDevice()
|
|
: CharacterDevice(MajorAllocation::CharacterDeviceFamily::Generic, 3)
|
|
{
|
|
}
|
|
|
|
UNMAP_AFTER_INIT NullDevice::~NullDevice() = default;
|
|
|
|
bool NullDevice::can_read(OpenFileDescription const&, u64) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
ErrorOr<size_t> NullDevice::read(OpenFileDescription&, u64, UserOrKernelBuffer&, size_t)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
ErrorOr<size_t> NullDevice::write(OpenFileDescription&, u64, UserOrKernelBuffer const&, size_t buffer_size)
|
|
{
|
|
return buffer_size;
|
|
}
|
|
|
|
}
|