| 
									
										
										
										
											2020-01-18 09:38:21 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  * modification, are permitted provided that the following conditions are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 1. Redistributions of source code must retain the above copyright notice, this | 
					
						
							|  |  |  |  *    list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 2. Redistributions in binary form must reproduce the above copyright notice, | 
					
						
							|  |  |  |  *    this list of conditions and the following disclaimer in the documentation | 
					
						
							|  |  |  |  *    and/or other materials provided with the distribution. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | 
					
						
							|  |  |  |  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
					
						
							|  |  |  |  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | 
					
						
							|  |  |  |  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
					
						
							|  |  |  |  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | 
					
						
							|  |  |  |  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 
					
						
							|  |  |  |  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
					
						
							|  |  |  |  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
					
						
							|  |  |  |  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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>
 | 
					
						
							| 
									
										
										
										
											2020-02-06 15:04:03 +01:00
										 |  |  | #include <LibCore/Object.h>
 | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 12:34:39 +01:00
										 |  |  | namespace Core { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class IODevice : public Object { | 
					
						
							|  |  |  |     C_OBJECT_ABSTRACT(IODevice) | 
					
						
							| 
									
										
										
										
											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
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 12:34:39 +01:00
										 |  |  |     virtual ~IODevice() override; | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int fd() const { return m_fd; } | 
					
						
							|  |  |  |     unsigned mode() const { return m_mode; } | 
					
						
							| 
									
										
										
										
											2019-09-04 15:13:55 +02:00
										 |  |  |     bool is_open() const { return m_mode != NotOpen; } | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  |     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; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-27 16:37:48 +02:00
										 |  |  |     int read(u8* buffer, int length); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  |     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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-02 12:34:39 +01:00
										 |  |  |     virtual bool open(IODevice::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-03-17 15:54:43 +01:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2020-02-02 12:34:39 +01:00
										 |  |  |     explicit IODevice(Object* parent = nullptr); | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-27 10:47:46 +02:00
										 |  |  |     void set_fd(int); | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  |     void set_mode(OpenMode mode) { m_mode = mode; } | 
					
						
							|  |  |  |     void set_error(int error) { m_error = error; } | 
					
						
							|  |  |  |     void set_eof(bool eof) { m_eof = eof; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-27 10:47:46 +02:00
										 |  |  |     virtual void did_update_fd(int) {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-17 15:54:43 +01:00
										 |  |  | 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
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2020-02-02 12:34:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | } |