kwin/src/udev.h
Vlad Zahorodnii 8d9e47ee22 platforms/drm: Introduce KWIN_DRM_DEVICES
This allows to instruct kwin what drm devices must be used explicitly.

BUG: 435467
2021-05-01 12:14:34 +00:00

97 lines
1.8 KiB
C++

/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KWIN_UDEV_H
#define KWIN_UDEV_H
#include <memory>
#include <kwin_export.h>
#include <vector>
#include <QVector>
#include <sys/types.h>
struct udev;
struct udev_device;
struct udev_monitor;
namespace KWin
{
class Udev;
class KWIN_EXPORT UdevDevice
{
public:
UdevDevice(udev_device *device);
~UdevDevice();
QString devNode() const;
dev_t devNum() const;
const char *property(const char *key);
bool hasProperty(const char *key, const char *value);
QString action() const;
QMap<QByteArray, QByteArray> properties() const;
bool isBootVga() const;
operator udev_device*() const {
return m_device;
}
operator udev_device*() {
return m_device;
}
typedef std::unique_ptr<UdevDevice> Ptr;
private:
udev_device *const m_device;
};
class KWIN_EXPORT UdevMonitor
{
public:
explicit UdevMonitor(Udev *udev);
~UdevMonitor();
int fd() const;
bool isValid() const {
return m_monitor != nullptr;
}
void filterSubsystemDevType(const char *subSystem, const char *devType = nullptr);
void enable();
UdevDevice::Ptr getDevice();
private:
udev_monitor *m_monitor;
};
class KWIN_EXPORT Udev
{
public:
Udev();
~Udev();
bool isValid() const {
return m_udev != nullptr;
}
std::vector<UdevDevice::Ptr> listGPUs();
std::vector<UdevDevice::Ptr> listFramebuffers();
UdevDevice::Ptr deviceFromSyspath(const char *syspath);
UdevMonitor *monitor();
operator udev*() const {
return m_udev;
}
operator udev*() {
return m_udev;
}
private:
struct udev *m_udev;
};
}
#endif