| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-06 15:34:26 +02:00
										 |  |  | #include <AK/String.h>
 | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  | #include <LibCore/CIODevice.h>
 | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | class CFile final : public CIODevice { | 
					
						
							| 
									
										
										
										
											2019-07-25 19:49:28 +02:00
										 |  |  |     C_OBJECT(CFile) | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  | public: | 
					
						
							|  |  |  |     virtual ~CFile() override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     String filename() const { return m_filename; } | 
					
						
							| 
									
										
										
										
											2019-06-02 12:26:28 +02:00
										 |  |  |     void set_filename(const StringView& filename) { m_filename = filename; } | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     virtual bool open(CIODevice::OpenMode) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-07 17:13:23 +02:00
										 |  |  |     enum class ShouldCloseFileDescription { | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  |         No = 0, | 
					
						
							|  |  |  |         Yes | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2019-06-07 09:36:51 +02:00
										 |  |  |     bool open(int fd, CIODevice::OpenMode, ShouldCloseFileDescription); | 
					
						
							| 
									
										
										
										
											2019-04-26 02:22:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2019-09-21 20:50:06 +02:00
										 |  |  |     CFile(CObject* parent = nullptr) | 
					
						
							|  |  |  |         : CIODevice(parent) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     explicit CFile(const StringView&, CObject* parent = nullptr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  |     String m_filename; | 
					
						
							| 
									
										
										
										
											2019-06-07 09:36:51 +02:00
										 |  |  |     ShouldCloseFileDescription m_should_close_file_descriptor { ShouldCloseFileDescription::Yes }; | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  | }; |