mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:22:46 +00:00 
			
		
		
		
	 f5de4f24b2
			
		
	
	
		f5de4f24b2
		
	
	
	
	
		
			
			Instead of doing so in the constructor, let's do immediately after the constructor, so we can safely pass a reference of a Device, so the SysFSDeviceComponent constructor can use that object to identify whether it's a block device or a character device. This allows to us to not hold a device in SysFSDeviceComponent with a RefPtr. Also, we also call the before_removing method in both SlavePTY::unref and File::unref, so because Device has that method being overrided, it can ensure the device is removed always cleanly.
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <AK/StringView.h>
 | |
| #include <AK/Userspace.h>
 | |
| #include <Kernel/FileSystem/File.h>
 | |
| #include <Kernel/FileSystem/OpenFileDescription.h>
 | |
| #include <Kernel/Process.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| File::File()
 | |
| {
 | |
| }
 | |
| 
 | |
| File::~File()
 | |
| {
 | |
| }
 | |
| 
 | |
| bool File::unref() const
 | |
| {
 | |
|     if (deref_base())
 | |
|         return false;
 | |
|     const_cast<File&>(*this).before_removing();
 | |
|     delete this;
 | |
|     return true;
 | |
| }
 | |
| 
 | |
| KResultOr<NonnullRefPtr<OpenFileDescription>> File::open(int options)
 | |
| {
 | |
|     auto description = OpenFileDescription::try_create(*this);
 | |
|     if (!description.is_error()) {
 | |
|         description.value()->set_rw_mode(options);
 | |
|         description.value()->set_file_flags(options);
 | |
|     }
 | |
|     return description;
 | |
| }
 | |
| 
 | |
| KResult File::close()
 | |
| {
 | |
|     return KSuccess;
 | |
| }
 | |
| 
 | |
| KResult File::ioctl(OpenFileDescription&, unsigned, Userspace<void*>)
 | |
| {
 | |
|     return ENOTTY;
 | |
| }
 | |
| 
 | |
| KResultOr<Memory::Region*> File::mmap(Process&, OpenFileDescription&, Memory::VirtualRange const&, u64, int, bool)
 | |
| {
 | |
|     return ENODEV;
 | |
| }
 | |
| 
 | |
| KResult File::attach(OpenFileDescription&)
 | |
| {
 | |
|     m_attach_count++;
 | |
|     return KSuccess;
 | |
| }
 | |
| 
 | |
| void File::detach(OpenFileDescription&)
 | |
| {
 | |
|     m_attach_count--;
 | |
| }
 | |
| }
 |