mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:52:44 +00:00 
			
		
		
		
	 08cd75ac4b
			
		
	
	
		08cd75ac4b
		
	
	
	
	
		
			
			After reading a bunch of POSIX specs, I've learned that a file descriptor is the number that refers to a file description, not the description itself. So this patch renames FileDescriptor to FileDescription, and Process now has FileDescription* file_description(int fd).
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/CircularQueue.h>
 | |
| #include <Kernel/File.h>
 | |
| #include <Kernel/UnixTypes.h>
 | |
| 
 | |
| class ProcessTracer : public File {
 | |
| public:
 | |
|     static Retained<ProcessTracer> create(pid_t pid) { return adopt(*new ProcessTracer(pid)); }
 | |
|     virtual ~ProcessTracer() override;
 | |
| 
 | |
|     bool is_dead() const { return m_dead; }
 | |
|     void set_dead() { m_dead = true; }
 | |
| 
 | |
|     virtual bool can_read(FileDescription&) const override { return !m_calls.is_empty() || m_dead; }
 | |
|     virtual int read(FileDescription&, byte*, int) override;
 | |
| 
 | |
|     virtual bool can_write(FileDescription&) const override { return true; }
 | |
|     virtual int write(FileDescription&, const byte*, int) override { return -EIO; }
 | |
| 
 | |
|     virtual String absolute_path(const FileDescription&) const override;
 | |
| 
 | |
|     void did_syscall(dword function, dword arg1, dword arg2, dword arg3, dword result);
 | |
|     pid_t pid() const { return m_pid; }
 | |
| 
 | |
| private:
 | |
|     virtual const char* class_name() const override { return "ProcessTracer"; }
 | |
|     explicit ProcessTracer(pid_t);
 | |
| 
 | |
|     struct CallData {
 | |
|         dword function;
 | |
|         dword arg1;
 | |
|         dword arg2;
 | |
|         dword arg3;
 | |
|         dword result;
 | |
|     };
 | |
| 
 | |
|     pid_t m_pid;
 | |
|     bool m_dead { false };
 | |
|     CircularQueue<CallData, 200> m_calls;
 | |
| };
 |