2019-03-17 14:54:43 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/ByteBuffer.h>
|
2019-06-02 10:05:06 +00:00
|
|
|
#include <AK/StringView.h>
|
2019-05-28 09:53:16 +00:00
|
|
|
#include <LibCore/CObject.h>
|
2019-03-17 14:54:43 +00:00
|
|
|
|
2019-04-10 18:22:23 +00:00
|
|
|
class CIODevice : public CObject {
|
2019-07-25 17:49:28 +00:00
|
|
|
C_OBJECT(CIODevice)
|
2019-03-17 14:54:43 +00:00
|
|
|
public:
|
2019-06-07 15:13:23 +00:00
|
|
|
enum OpenMode {
|
2019-05-28 09:53:16 +00:00
|
|
|
NotOpen = 0,
|
|
|
|
ReadOnly = 1,
|
|
|
|
WriteOnly = 2,
|
|
|
|
ReadWrite = 3,
|
|
|
|
Append = 4,
|
|
|
|
Truncate = 8,
|
|
|
|
MustBeNew = 16,
|
2019-03-17 14:54:43 +00:00
|
|
|
};
|
|
|
|
|
2019-04-10 18:22:23 +00:00
|
|
|
virtual ~CIODevice() override;
|
2019-03-17 14:54:43 +00:00
|
|
|
|
|
|
|
int fd() const { return m_fd; }
|
|
|
|
unsigned mode() const { return m_mode; }
|
2019-09-04 13:13:55 +00:00
|
|
|
bool is_open() const { return m_mode != NotOpen; }
|
2019-03-17 14:54:43 +00:00
|
|
|
bool eof() const { return m_eof; }
|
|
|
|
|
|
|
|
int error() const { return m_error; }
|
|
|
|
const char* error_string() const;
|
|
|
|
|
|
|
|
bool has_error() const { return m_error != 0; }
|
|
|
|
|
2019-07-27 14:37:48 +00:00
|
|
|
|
|
|
|
int read(u8* buffer, int length);
|
|
|
|
|
2019-03-17 14:54:43 +00:00
|
|
|
ByteBuffer read(int max_size);
|
|
|
|
ByteBuffer read_line(int max_size);
|
2019-03-18 13:38:30 +00:00
|
|
|
ByteBuffer read_all();
|
2019-03-17 14:54:43 +00:00
|
|
|
|
2019-07-03 19:17:35 +00:00
|
|
|
bool write(const u8*, int size);
|
2019-07-08 13:38:44 +00:00
|
|
|
bool write(const StringView& v) { return write((const u8*)v.characters_without_null_termination(), v.length()); }
|
2019-05-08 02:38:41 +00:00
|
|
|
|
2019-03-18 13:09:58 +00:00
|
|
|
// FIXME: I would like this to be const but currently it needs to call populate_read_buffer().
|
|
|
|
bool can_read_line();
|
|
|
|
|
|
|
|
bool can_read() const;
|
|
|
|
|
2019-06-07 15:13:23 +00:00
|
|
|
enum class SeekMode {
|
2019-05-16 13:02:17 +00:00
|
|
|
SetPosition,
|
|
|
|
FromCurrentPosition,
|
|
|
|
FromEndPosition,
|
|
|
|
};
|
|
|
|
|
2019-07-03 19:17:35 +00:00
|
|
|
bool seek(i64, SeekMode = SeekMode::SetPosition, off_t* = nullptr);
|
2019-04-15 22:51:05 +00:00
|
|
|
|
2019-04-10 18:22:23 +00:00
|
|
|
virtual bool open(CIODevice::OpenMode) = 0;
|
2019-03-18 13:09:58 +00:00
|
|
|
virtual bool close();
|
2019-03-17 14:54:43 +00:00
|
|
|
|
2019-05-08 02:38:41 +00:00
|
|
|
int printf(const char*, ...);
|
|
|
|
|
2019-03-17 14:54:43 +00:00
|
|
|
protected:
|
2019-04-10 18:22:23 +00:00
|
|
|
explicit CIODevice(CObject* parent = nullptr);
|
2019-03-17 14:54:43 +00:00
|
|
|
|
2019-07-27 08:47:46 +00:00
|
|
|
void set_fd(int);
|
2019-03-17 14:54:43 +00:00
|
|
|
void set_mode(OpenMode mode) { m_mode = mode; }
|
|
|
|
void set_error(int error) { m_error = error; }
|
|
|
|
void set_eof(bool eof) { m_eof = eof; }
|
|
|
|
|
2019-07-27 08:47:46 +00:00
|
|
|
virtual void did_update_fd(int) {}
|
|
|
|
|
2019-03-17 14:54:43 +00:00
|
|
|
private:
|
|
|
|
bool populate_read_buffer();
|
2019-03-18 13:38:30 +00:00
|
|
|
bool can_read_from_fd() const;
|
2019-03-17 14:54:43 +00:00
|
|
|
|
|
|
|
int m_fd { -1 };
|
|
|
|
int m_error { 0 };
|
|
|
|
bool m_eof { false };
|
|
|
|
OpenMode m_mode { NotOpen };
|
2019-07-03 19:17:35 +00:00
|
|
|
Vector<u8> m_buffered_data;
|
2019-03-17 14:54:43 +00:00
|
|
|
};
|