blob: 169f6e5079d3389fe37ad59c4c724ec42c9213ac (
plain)
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
|
// Copyright (C) 2021 The Qt Company Ltd.
// Copyright (C) 2019 Luxoft Sweden AB
// Copyright (C) 2018 Pelagicore AG
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#pragma once
#include <QMutex>
#include <QList>
#include <QSet>
#include <QThread>
#include <QtAppManManager/packagemanager.h>
#include <QtAppManApplication/packagedatabase.h>
#include <QtAppManManager/asynchronoustask.h>
#include <QtAppManCommon/global.h>
QT_BEGIN_NAMESPACE_AM
bool removeRecursiveHelper(const QString &path);
class PackageManagerPrivate
{
public:
PackageDatabase *database = nullptr;
QVector<Package *> packages;
QMap<Package *, PackageInfo *> pendingPackageInfoUpdates;
#if defined(AM_DISABLE_INSTALLER)
static constexpr
#endif
bool disableInstaller = true;
bool developmentMode = false;
bool allowInstallationOfUnsignedPackages = false;
bool userIdSeparation = false;
uint minUserId = uint(-1);
uint maxUserId = uint(-1);
uint commonGroupId = uint(-1);
QString installationPath;
QString documentPath;
QString error;
QString hardwareId;
QList<QByteArray> chainOfTrust;
bool cleanupBrokenInstallationsDone = false;
QList<AsynchronousTask *> incomingTaskList; // incoming queue
QList<AsynchronousTask *> installationTaskList; // installation jobs in state >= AwaitingAcknowledge
AsynchronousTask *activeTask = nullptr; // currently active
QList<AsynchronousTask *> allTasks() const
{
QList<AsynchronousTask *> all = incomingTaskList;
if (!installationTaskList.isEmpty())
all += installationTaskList;
if (activeTask)
all += activeTask;
return all;
}
};
QT_END_NAMESPACE_AM
// We mean it. Dummy comment since syncqt needs this also for completely private Qt modules.
|