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
|
/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 2006, 2007 Thomas Braxton <kde.braxton@gmail.com>
SPDX-FileCopyrightText: 1999 Preston Brown <pbrown@kde.org>
SPDX-FileCopyrightText: 1997 Matthias Kalle Dalheimer <kalle@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KCONFIGINI_P_H
#define KCONFIGINI_P_H
#include <kconfigbackend_p.h>
#include <kconfigcore_export.h>
class QLockFile;
class QIODevice;
class KConfigIniBackend : public KConfigBackend
{
Q_OBJECT
private:
QLockFile *lockFile;
public:
class BufferFragment;
KConfigIniBackend();
~KConfigIniBackend() override;
ParseInfo parseConfig(const QByteArray &locale, KEntryMap &entryMap, ParseOptions options) override;
ParseInfo parseConfig(const QByteArray &locale, KEntryMap &entryMap, ParseOptions options, bool merging);
bool writeConfig(const QByteArray &locale, KEntryMap &entryMap, WriteOptions options) override;
bool isWritable() const override;
QString nonWritableErrorMessage() const override;
KConfigBase::AccessMode accessMode() const override;
void createEnclosing() override;
void setFilePath(const QString &path) override;
bool lock() override;
void unlock() override;
bool isLocked() const override;
protected:
enum StringType {
GroupString = 0,
KeyString = 1,
ValueString = 2,
};
// Warning: this modifies data in-place. Other BufferFragment objects referencing the same buffer
// fragment will get their data modified too.
static void printableToString(BufferFragment *aString, const QFile &file, int line);
static QByteArray stringToPrintable(const QByteArray &aString, StringType type);
static char charFromHex(const char *str, const QFile &file, int line);
static QString warningProlog(const QFile &file, int line);
void writeEntries(const QByteArray &locale, QIODevice &file, const KEntryMap &map);
void writeEntries(const QByteArray &locale, QIODevice &file, const KEntryMap &map, bool defaultGroup, bool &firstEntry);
};
#endif // KCONFIGINI_P_H
|