| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/ByteBuffer.h>
 | 
					
						
							| 
									
										
										
										
											2019-06-02 12:05:06 +02:00
										 |  |  | #include <AK/StringView.h>
 | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  | #include <LibCore/CObject.h>
 | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  | class CIODevice : public CObject { | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2019-06-07 17:13:23 +02:00
										 |  |  |     enum OpenMode { | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  |         NotOpen = 0, | 
					
						
							|  |  |  |         ReadOnly = 1, | 
					
						
							|  |  |  |         WriteOnly = 2, | 
					
						
							|  |  |  |         ReadWrite = 3, | 
					
						
							|  |  |  |         Append = 4, | 
					
						
							|  |  |  |         Truncate = 8, | 
					
						
							|  |  |  |         MustBeNew = 16, | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  |     virtual ~CIODevice() override; | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int fd() const { return m_fd; } | 
					
						
							|  |  |  |     unsigned mode() const { return m_mode; } | 
					
						
							|  |  |  |     bool eof() const { return m_eof; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int error() const { return m_error; } | 
					
						
							|  |  |  |     const char* error_string() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bool has_error() const { return m_error != 0; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ByteBuffer read(int max_size); | 
					
						
							|  |  |  |     ByteBuffer read_line(int max_size); | 
					
						
							| 
									
										
										
										
											2019-03-18 14:38:30 +01:00
										 |  |  |     ByteBuffer read_all(); | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 21:17:35 +02:00
										 |  |  |     bool write(const u8*, int size); | 
					
						
							| 
									
										
										
										
											2019-07-08 15:38:44 +02:00
										 |  |  |     bool write(const StringView& v) { return write((const u8*)v.characters_without_null_termination(), v.length()); } | 
					
						
							| 
									
										
										
										
											2019-05-08 04:38:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-18 14:09:58 +01:00
										 |  |  |     // FIXME: I would like this to be const but currently it needs to call populate_read_buffer().
 | 
					
						
							|  |  |  |     bool can_read_line(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bool can_read() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-07 17:13:23 +02:00
										 |  |  |     enum class SeekMode { | 
					
						
							| 
									
										
										
										
											2019-05-16 15:02:17 +02:00
										 |  |  |         SetPosition, | 
					
						
							|  |  |  |         FromCurrentPosition, | 
					
						
							|  |  |  |         FromEndPosition, | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 21:17:35 +02:00
										 |  |  |     bool seek(i64, SeekMode = SeekMode::SetPosition, off_t* = nullptr); | 
					
						
							| 
									
										
										
										
											2019-04-16 00:51:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  |     virtual bool open(CIODevice::OpenMode) = 0; | 
					
						
							| 
									
										
										
										
											2019-03-18 14:09:58 +01:00
										 |  |  |     virtual bool close(); | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 04:38:41 +02:00
										 |  |  |     int printf(const char*, ...); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  |     virtual const char* class_name() const override { return "CIODevice"; } | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  |     explicit CIODevice(CObject* parent = nullptr); | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     void set_fd(int fd) { m_fd = fd; } | 
					
						
							|  |  |  |     void set_mode(OpenMode mode) { m_mode = mode; } | 
					
						
							|  |  |  |     void set_error(int error) { m_error = error; } | 
					
						
							|  |  |  |     void set_eof(bool eof) { m_eof = eof; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     bool populate_read_buffer(); | 
					
						
							| 
									
										
										
										
											2019-03-18 14:38:30 +01:00
										 |  |  |     bool can_read_from_fd() const; | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int m_fd { -1 }; | 
					
						
							|  |  |  |     int m_error { 0 }; | 
					
						
							|  |  |  |     bool m_eof { false }; | 
					
						
							|  |  |  |     OpenMode m_mode { NotOpen }; | 
					
						
							| 
									
										
										
										
											2019-07-03 21:17:35 +02:00
										 |  |  |     Vector<u8> m_buffered_data; | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | }; |