forked from KDE/okteta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilebytearraymodel.hpp
73 lines (56 loc) · 1.91 KB
/
filebytearraymodel.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
This file is part of the Okteta Core library, made within the KDE community.
SPDX-FileCopyrightText: 2003, 2007 Friedrich W. H. Kossebau <[email protected]>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#ifndef OKTETA_FILEBYTEARRAYMODEL_HPP
#define OKTETA_FILEBYTEARRAYMODEL_HPP
// lib
#include "abstractbytearraymodel.hpp"
namespace Okteta {
class FileByteArrayModelPrivate;
/**
* @author Friedrich W. H. Kossebau
*/
class OKTETACORE_EXPORT FileByteArrayModel : public AbstractByteArrayModel
{
friend class FileByteArrayModelPrivate;
Q_OBJECT
public:
/** default is only 50*4k = 200k memory image */
explicit FileByteArrayModel(int pageNumber = 50, int pageSize = 4096, QObject* parent = nullptr);
~FileByteArrayModel() override;
public: // AbstractByteArrayModel API
[[nodiscard]]
Byte byte(Address offset) const override;
[[nodiscard]]
Size size() const override;
[[nodiscard]]
bool isReadOnly() const override;
[[nodiscard]]
bool isModified() const override;
[[nodiscard]]
Size insert(Address offset, const Byte* insertData, int insertLength) override;
[[nodiscard]]
Size remove(const AddressRange& removeRange) override;
[[nodiscard]]
Size replace(const AddressRange& removeRange, const Byte* insertData, int insertLength) override;
[[nodiscard]]
bool swap(Address firstStart, const AddressRange& secondRange) override;
[[nodiscard]]
Size fill(Byte fillByte, Address offset = 0, Size fillLength = -1) override;
void setByte(Address offset, Byte byte) override;
void setModified(bool modified = true) override;
public:
void setReadOnly(bool readOnly = true) override;
[[nodiscard]]
bool isOpen() const;
[[nodiscard]]
bool open(const QString& filename);
[[nodiscard]]
bool close();
private:
Q_DECLARE_PRIVATE(FileByteArrayModel)
};
}
#endif