kwin/src/session_direct.h
Vlad Zahorodnii ade861d6de Refactor session code
At the moment, the session code is far from being extensible. If we
decide to add support for libseatd, it will be a challenging task with
the current design of session management code. The goal of this
refactoring is to fix that.

Another motivation behind this change is to prepare session related code
for upstreaming to kwayland-server where it belongs.
2021-03-23 08:01:19 +00:00

57 lines
1.2 KiB
C++

/*
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include "session.h"
#include <QSocketNotifier>
#include <sys/types.h>
namespace KWin
{
struct DirectSessionDevice
{
int fd;
dev_t id;
};
class DirectSession : public Session
{
Q_OBJECT
public:
static DirectSession *create(QObject *parent = nullptr);
~DirectSession() override;
bool isActive() const override;
Capabilities capabilities() const override;
QString seat() const override;
uint terminal() const override;
int openRestricted(const QString &fileName) override;
void closeRestricted(int fileDescriptor) override;
void switchTo(uint terminal) override;
private:
explicit DirectSession(QObject *parent = nullptr);
bool setupTerminal();
void restoreTerminal();
void updateActive(bool active);
void processSignals();
QSocketNotifier *m_signalNotifier = nullptr;
QString m_seat;
QVector<DirectSessionDevice> m_devices;
uint m_terminal = 0;
int m_ttyFd = -1;
int m_keyboardMode = 0;
bool m_isActive = false;
};
} // namespace KWin