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 {
|
2019-07-25 19:49:28 +02:00
|
|
|
C_OBJECT(CFile)
|
2019-04-10 20:22:23 +02:00
|
|
|
public:
|
2019-08-18 12:55:56 +02:00
|
|
|
CFile(CObject* parent = nullptr)
|
|
|
|
|
: CIODevice(parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
explicit CFile(const StringView&, CObject* parent = nullptr);
|
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-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:
|
|
|
|
|
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
|
|
|
};
|