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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
/*
SPDX-FileCopyrightText: 2019 David Edmundson <davidedmundson@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#pragma once
#include <KConfigWatcher>
#include <QObject>
#include "kworkspace_export.h"
#include "sessionmanagement.h"
class OrgFreedesktopLogin1ManagerInterface;
class OrgFreedesktopUPowerInterface;
class OrgFreedesktopConsoleKitManagerInterface;
/**
* Performs direct system actions that could kill the session
*
* Semi-internal. Symbols exported, but not the header
* To be used only by the daemon that performs logout (currently ksmserver)
*
* All other users should go via the public SessionManagement that prompts and logs out properly.
*/
class KWORKSPACE_EXPORT SessionBackend : public QObject
{
Q_OBJECT
public:
static SessionBackend *self();
virtual SessionManagement::State state() const = 0;
virtual void shutdown() = 0;
virtual void reboot() = 0;
virtual void suspend() = 0;
virtual void hybridSuspend() = 0;
virtual void hibernate() = 0;
virtual bool canShutdown() const = 0;
virtual bool canReboot() const = 0;
virtual bool canSuspend() const = 0;
virtual bool canHybridSuspend() const = 0;
virtual bool canHibernate() const = 0;
virtual bool canSwitchUser() const;
bool confirmLogout() const;
Q_SIGNALS:
void stateChanged();
void canShutdownChanged();
void canRebootChanged();
void canSuspendChanged();
void canHybridSuspendChanged();
void canHibernateChanged();
void aboutToSuspend();
void resumingFromSuspend();
protected:
SessionBackend();
~SessionBackend() override = default;
private:
KConfigWatcher::Ptr m_kserverConfig;
};
/*
* This class wraps both Logind and CK2
* Abstraction for that is handled in OrgFreedesktopLogin1ManagerInterface
*/
class LogindSessionBackend : public SessionBackend
{
Q_OBJECT
public:
static bool exists();
LogindSessionBackend();
SessionManagement::State state() const override;
void shutdown() override;
void reboot() override;
void suspend() override;
void hybridSuspend() override;
void hibernate() override;
bool canShutdown() const override;
bool canReboot() const override;
bool canSuspend() const override;
bool canHybridSuspend() const override;
bool canHibernate() const override;
private:
OrgFreedesktopLogin1ManagerInterface *m_login1;
SessionManagement::State m_state = SessionManagement::State::Loading;
bool m_canShutdown = false;
bool m_canReboot = false;
bool m_canSuspend = false;
bool m_canHybridSuspend = false;
bool m_canHibernate = false;
uint m_pendingJobs = 0;
};
/* Maybe misleadingly named, consolekit doesn't support suspend directly so it's
* suplemented with upower where available
*/
class ConsoleKitSessionBackend : public SessionBackend
{
Q_OBJECT
public:
static bool exists();
ConsoleKitSessionBackend();
SessionManagement::State state() const override;
void shutdown() override;
void reboot() override;
void suspend() override;
void hybridSuspend() override
{
}
void hibernate() override;
bool canShutdown() const override;
bool canReboot() const override;
bool canSuspend() const override;
bool canHybridSuspend() const override
{
return false;
}
bool canHibernate() const override;
private:
OrgFreedesktopUPowerInterface *m_upower;
OrgFreedesktopConsoleKitManagerInterface *m_ck;
SessionManagement::State m_state = SessionManagement::State::Loading;
bool m_canShutdown = false;
bool m_canReboot = false;
bool m_canSuspend = false;
bool m_canHibernate = false;
uint m_pendingJobs = 0;
};
class DummySessionBackend : public SessionBackend
{
Q_OBJECT
public:
DummySessionBackend();
SessionManagement::State state() const override
{
return SessionManagement::State::Error;
}
void shutdown() override
{
}
void reboot() override
{
}
void suspend() override
{
}
void hybridSuspend() override
{
}
void hibernate() override
{
}
bool canShutdown() const override
{
return false;
}
bool canReboot() const override
{
return false;
}
bool canSuspend() const override
{
return false;
}
bool canHybridSuspend() const override
{
return false;
}
bool canHibernate() const override
{
return false;
}
};
class TestSessionBackend : public SessionBackend
{
Q_OBJECT
public:
TestSessionBackend();
SessionManagement::State state() const override
{
return SessionManagement::State::Ready;
}
void shutdown() override;
void reboot() override;
void suspend() override;
void hybridSuspend() override;
void hibernate() override;
bool canShutdown() const override
{
return true;
}
bool canReboot() const override
{
return true;
}
bool canSuspend() const override
{
return true;
}
bool canHybridSuspend() const override
{
return true;
}
bool canHibernate() const override
{
return true;
}
};
|