| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/AKString.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 { | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  |     CFile() {} | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  |     explicit CFile(const String&); | 
					
						
							|  |  |  |     virtual ~CFile() override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     String filename() const { return m_filename; } | 
					
						
							|  |  |  |     void set_filename(const String& filename) { m_filename = filename; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     virtual bool open(CIODevice::OpenMode) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-28 11:53:16 +02:00
										 |  |  |     enum class ShouldCloseFileDescriptor | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         No = 0, | 
					
						
							|  |  |  |         Yes | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2019-04-26 02:22:21 +02:00
										 |  |  |     bool open(int fd, CIODevice::OpenMode, ShouldCloseFileDescriptor); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  |     virtual const char* class_name() const override { return "CFile"; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     String m_filename; | 
					
						
							| 
									
										
										
										
											2019-04-26 02:22:21 +02:00
										 |  |  |     ShouldCloseFileDescriptor m_should_close_file_descriptor { ShouldCloseFileDescriptor::Yes }; | 
					
						
							| 
									
										
										
										
											2019-04-10 20:22:23 +02:00
										 |  |  | }; |