mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 12:25:06 +00:00

We should work towards a pattern where we take StringView as function arguments, and store String as member, to push the String construction to the last possible moment.
29 lines
746 B
C++
29 lines
746 B
C++
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
#include <LibCore/CIODevice.h>
|
|
|
|
class CFile final : public CIODevice {
|
|
public:
|
|
CFile() {}
|
|
explicit CFile(const StringView&);
|
|
virtual ~CFile() override;
|
|
|
|
String filename() const { return m_filename; }
|
|
void set_filename(const StringView& filename) { m_filename = filename; }
|
|
|
|
virtual bool open(CIODevice::OpenMode) override;
|
|
|
|
enum class ShouldCloseFileDescriptor
|
|
{
|
|
No = 0,
|
|
Yes
|
|
};
|
|
bool open(int fd, CIODevice::OpenMode, ShouldCloseFileDescriptor);
|
|
|
|
virtual const char* class_name() const override { return "CFile"; }
|
|
|
|
private:
|
|
String m_filename;
|
|
ShouldCloseFileDescriptor m_should_close_file_descriptor { ShouldCloseFileDescriptor::Yes };
|
|
};
|