mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:02:45 +00:00 
			
		
		
		
	 1b2ef8582c
			
		
	
	
		1b2ef8582c
		
	
	
	
	
		
			
			Asking a File if we could possibly read or write it will never mutate the asking FileDescription&, so it should be const.
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "FullDevice.h"
 | |
| #include <AK/StdLibExtras.h>
 | |
| #include <AK/kstdio.h>
 | |
| #include <LibC/errno_numbers.h>
 | |
| 
 | |
| FullDevice::FullDevice()
 | |
|     : CharacterDevice(1, 7)
 | |
| {
 | |
| }
 | |
| 
 | |
| FullDevice::~FullDevice()
 | |
| {
 | |
| }
 | |
| 
 | |
| bool FullDevice::can_read(const FileDescription&) const
 | |
| {
 | |
|     return true;
 | |
| }
 | |
| 
 | |
| ssize_t FullDevice::read(FileDescription&, u8* buffer, ssize_t size)
 | |
| {
 | |
|     ssize_t count = min(PAGE_SIZE, size);
 | |
|     memset(buffer, 0, (size_t)count);
 | |
|     return count;
 | |
| }
 | |
| 
 | |
| ssize_t FullDevice::write(FileDescription&, const u8*, ssize_t size)
 | |
| {
 | |
|     if (size == 0)
 | |
|         return 0;
 | |
|     return -ENOSPC;
 | |
| }
 |