mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:32:45 +00:00 
			
		
		
		
	 1c3346e3ce
			
		
	
	
		1c3346e3ce
		
	
	
	
	
		
			
			Previously the VirtualConsole::on_tty_write() method would return an incorrect value when an error had occurred. This prompted me to update the TTY subsystem to use KResultOr<size_t> everywhere.
		
			
				
	
	
		
			52 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <Kernel/FileSystem/InodeIdentifier.h>
 | |
| #include <Kernel/TTY/TTY.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| class MasterPTY;
 | |
| 
 | |
| class SlavePTY final : public TTY {
 | |
| public:
 | |
|     virtual ~SlavePTY() override;
 | |
| 
 | |
|     void on_master_write(const UserOrKernelBuffer&, size_t);
 | |
|     unsigned index() const { return m_index; }
 | |
| 
 | |
|     time_t time_of_last_write() const { return m_time_of_last_write; }
 | |
| 
 | |
|     virtual FileBlockCondition& block_condition() override;
 | |
| 
 | |
| private:
 | |
|     // ^TTY
 | |
|     virtual String const& tty_name() const override;
 | |
|     virtual KResultOr<size_t> on_tty_write(const UserOrKernelBuffer&, size_t) override;
 | |
|     virtual void echo(u8) override;
 | |
| 
 | |
|     // ^CharacterDevice
 | |
|     virtual bool can_read(const FileDescription&, size_t) const override;
 | |
|     virtual KResultOr<size_t> read(FileDescription&, u64, UserOrKernelBuffer&, size_t) override;
 | |
|     virtual bool can_write(const FileDescription&, size_t) const override;
 | |
|     virtual const char* class_name() const override { return "SlavePTY"; }
 | |
|     virtual KResult close() override;
 | |
| 
 | |
|     // ^Device
 | |
|     virtual String device_name() const override;
 | |
| 
 | |
|     friend class MasterPTY;
 | |
|     SlavePTY(MasterPTY&, unsigned index);
 | |
| 
 | |
|     RefPtr<MasterPTY> m_master;
 | |
|     time_t m_time_of_last_write { 0 };
 | |
|     unsigned m_index { 0 };
 | |
|     String m_tty_name;
 | |
| };
 | |
| 
 | |
| }
 |