mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			729 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			729 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/Function.h>
 | |
| #include <LibCore/CObject.h>
 | |
| 
 | |
| class CNotifier : public CObject {
 | |
|     C_OBJECT(CNotifier)
 | |
| public:
 | |
|     enum Event {
 | |
|         None = 0,
 | |
|         Read = 1,
 | |
|         Write = 2,
 | |
|         Exceptional = 4,
 | |
|     };
 | |
| 
 | |
|     virtual ~CNotifier() override;
 | |
| 
 | |
|     void set_enabled(bool);
 | |
| 
 | |
|     Function<void()> on_ready_to_read;
 | |
|     Function<void()> on_ready_to_write;
 | |
| 
 | |
|     int fd() const { return m_fd; }
 | |
|     unsigned event_mask() const { return m_event_mask; }
 | |
|     void set_event_mask(unsigned event_mask) { m_event_mask = event_mask; }
 | |
| 
 | |
|     void event(CEvent&) override;
 | |
| 
 | |
| private:
 | |
|     CNotifier(int fd, unsigned event_mask, CObject* parent = nullptr);
 | |
| 
 | |
|     int m_fd { -1 };
 | |
|     unsigned m_event_mask { 0 };
 | |
| };
 | 
