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-06-02 12:26:28 +02:00
|
|
|
explicit CFile(const StringView&);
|
2019-04-10 20:22:23 +02:00
|
|
|
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-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
|
|
|
};
|