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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
|
/* -*- Mode: C++; indent-tabs-mode: nil; tab-width: 4 -*-
* -*- coding: utf-8 -*-
*
* Copyright (C) 2012 by Alejandro Fiestas Olivares <afiestas@kde.org>
* Copyright 2016 by Sebastian Kügler <sebas@kde.org>
* Copyright (c) 2018 Kai Uwe Broulik <kde@broulik.de>
* Work sponsored by the LiMux project of
* the city of Munich.
* Copyright (C) 2023 KylinSoft Co., Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "xrandr-output.h"
#include <QStringList>
#include <QFile>
#include <QJsonDocument>
#include <QDir>
#include <QLoggingCategory>
#include <QRect>
#include <QStandardPaths>
#include <QtXml>
#include <KF6/KScreen/kscreen/config.h>
#include <KF6/KScreen/kscreen/mode.h>
#include <KF6/KScreen/kscreen/log.h>
#include <KF6/KScreen/kscreen/output.h>
#include <KF6/KScreen/kscreen/edid.h>
#include <KF6/KScreen/kscreen/configmonitor.h>
#include <KF6/KScreen/kscreen/getconfigoperation.h>
#include <KF6/KScreen/kscreen/setconfigoperation.h>
#include "xrandr-config.h"
#include "clib-syslog.h"
#include "usd_base_class.h"
QString xrandrOutput::mDirName = QStringLiteral("outputs/");
QString xrandrOutput::dirPath()
{
return QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) %
QStringLiteral("/kscreen/") % mDirName;
}
QString xrandrOutput::globalFileName(const QString &hash)
{
return QString();//dir % hash;
}
void xrandrOutput::readInGlobalPartFromInfo(KScreen::OutputPtr output, const QVariantMap &info)
{
output->setRotation(static_cast<KScreen::Output::Rotation>(info.value(QStringLiteral("rotation"), 1).toInt()));
bool scaleOk;
const qreal scale = info.value(QStringLiteral("scale"), 1.).toDouble(&scaleOk);
if (scaleOk) {
output->setScale(scale);
}
const QVariantMap modeInfo = info[QStringLiteral("mode")].toMap();
const QVariantMap modeSize = modeInfo[QStringLiteral("size")].toMap();
const QSize size = QSize(modeSize[QStringLiteral("width")].toInt(), modeSize[QStringLiteral("height")].toInt());
const KScreen::ModeList modes = output->modes();
KScreen::ModePtr matchingMode;
if (modes.count()<1) {
USD_LOG(LOG_DEBUG, "%s mode count = 0.",output->name().toLatin1().data());
}
for(const KScreen::ModePtr &mode : modes) {
if (mode->size() != size) {
continue;
}
if (!qFuzzyCompare(mode->refreshRate(), modeInfo[QStringLiteral("refresh")].toFloat())) {
continue;
}
USD_LOG(LOG_DEBUG,"find mode id:%s %dx%d@%f", mode->id().toLatin1().data(), mode->size().height(), mode->size().width(),mode->refreshRate());
matchingMode = mode;
break;
}
if (!matchingMode) {
USD_LOG(LOG_DEBUG,"Failed to find a matching mode - this means that our config is corrupted");
matchingMode = output->preferredMode();
}
if (!matchingMode) {
USD_LOG(LOG_DEBUG,"Failed to get a preferred mode, falling back to biggest mode.");
}
if (!matchingMode) {
USD_LOG(LOG_DEBUG,"Failed to get biggest mode. Which means there are no modes. Turning off the screen.");
output->setEnabled(false);
return;
}
output->setCurrentModeId(matchingMode->id());
}
QVariantMap xrandrOutput::getGlobalData(KScreen::OutputPtr output)
{
QFile file(globalFileName(output->hashMd5()));
if (!file.open(QIODevice::ReadOnly)) {
return QVariantMap();
}
QJsonDocument parser;
return parser.fromJson(file.readAll()).toVariant().toMap();
}
bool xrandrOutput::readInGlobal(KScreen::OutputPtr output)
{
const QVariantMap info = getGlobalData(output);
if (info.empty()) {
// if info is empty, the global file does not exists, or is in an unreadable state
return false;
}
readInGlobalPartFromInfo(output, info);
return true;
}
// TODO: move this into the Layouter class.
void xrandrOutput::adjustPositions(KScreen::ConfigPtr config, const QVariantList &outputsInfo)
{
typedef QPair<int, QPoint> Out;
KScreen::OutputList outputs = config->outputs();
QVector<Out> sortedOutputs; // <id, pos>
for (const KScreen::OutputPtr &output : outputs) {
sortedOutputs.append(Out(output->id(), output->pos()));
}
// go from left to right, top to bottom
std::sort(sortedOutputs.begin(), sortedOutputs.end(), [](const Out &o1, const Out &o2) {
const int x1 = o1.second.x();
const int x2 = o2.second.x();
return x1 < x2 || (x1 == x2 && o1.second.y() < o2.second.y());
});
for (int cnt = 1; cnt < sortedOutputs.length(); cnt++) {
auto getOutputInfoProperties = [outputsInfo](KScreen::OutputPtr output, QRect &geo) -> bool {
if (!output) {
return false;
}
const auto hash = output->hash();
auto it = std::find_if(outputsInfo.begin(), outputsInfo.end(),
[hash](QVariant v) {
const QVariantMap info = v.toMap();
return info[QStringLiteral("id")].toString() == hash;
}
);
if (it == outputsInfo.end()) {
return false;
}
auto isPortrait = [](const QVariant &info) {
bool ok;
const int rot = info.toInt(&ok);
if (!ok) {
return false;
}
return rot & KScreen::Output::Rotation::Left ||
rot & KScreen::Output::Rotation::Right;
};
const QVariantMap outputInfo = it->toMap();
const QVariantMap posInfo = outputInfo[QStringLiteral("pos")].toMap();
const QVariant scaleInfo = outputInfo[QStringLiteral("scale")];
const QVariantMap modeInfo = outputInfo[QStringLiteral("mode")].toMap();
const QVariantMap modeSize = modeInfo[QStringLiteral("size")].toMap();
const bool portrait = isPortrait(outputInfo[QStringLiteral("rotation")]);
if (posInfo.isEmpty() || modeSize.isEmpty() || !scaleInfo.canConvert<int>()) {
return false;
}
const qreal scale = scaleInfo.toDouble();
if (scale <= 0) {
return false;
}
const QPoint pos = QPoint(posInfo[QStringLiteral("x")].toInt(), posInfo[QStringLiteral("y")].toInt());
QSize size = QSize(modeSize[QStringLiteral("width")].toInt() / scale,
modeSize[QStringLiteral("height")].toInt() / scale);
if (portrait) {
size.transpose();
}
geo = QRect(pos, size);
return true;
};
// it's guaranteed that we find the following values in the QMap
KScreen::OutputPtr prevPtr = outputs.find(sortedOutputs[cnt - 1].first).value();
KScreen::OutputPtr curPtr = outputs.find(sortedOutputs[cnt].first).value();
QRect prevInfoGeo, curInfoGeo;
if (!getOutputInfoProperties(prevPtr, prevInfoGeo) ||
!getOutputInfoProperties(curPtr, curInfoGeo)) {
// no info found, nothing can be adjusted for the next output
continue;
}
const QRect prevGeo = prevPtr->geometry();
const QRect curGeo = curPtr->geometry();
// the old difference between previous and current output read from the config file
const int xInfoDiff = curInfoGeo.x() - (prevInfoGeo.x() + prevInfoGeo.width());
// the proposed new difference
const int prevRight = prevGeo.x() + prevGeo.width();
const int xCorrected = prevRight + prevGeo.width() * xInfoDiff / (double)prevInfoGeo.width();
const int xDiff = curGeo.x() - prevRight;
// In the following calculate the y-correction. This is more involved since we
// differentiate between overlapping and non-overlapping pairs and align either
// top to top/bottom or bottom to top/bottom
const bool yOverlap = prevInfoGeo.y() + prevInfoGeo.height() > curInfoGeo.y() &&
prevInfoGeo.y() < curInfoGeo.y() + curInfoGeo.height();
// these values determine which horizontal edge of previous output we align with
const int topToTopDiffAbs = qAbs(prevInfoGeo.y() - curInfoGeo.y());
const int topToBottomDiffAbs = qAbs(prevInfoGeo.y() - curInfoGeo.y() - curInfoGeo.height());
const int bottomToBottomDiffAbs = qAbs(prevInfoGeo.y() + prevInfoGeo.height() - curInfoGeo.y() - curInfoGeo.height());
const int bottomToTopDiffAbs = qAbs(prevInfoGeo.y() + prevInfoGeo.height() - curInfoGeo.y());
const bool yTopAligned = (topToTopDiffAbs < bottomToBottomDiffAbs && topToTopDiffAbs <= bottomToTopDiffAbs) ||
topToBottomDiffAbs < bottomToBottomDiffAbs;
int yInfoDiff = curInfoGeo.y() - prevInfoGeo.y();
int yDiff = curGeo.y() - prevGeo.y();
int yCorrected;
if (yTopAligned) {
// align to previous top
if (!yOverlap) {
// align previous top with current bottom
yInfoDiff += curInfoGeo.height();
yDiff += curGeo.height();
}
// When we align with previous top we are interested in the changes to the
// current geometry and not in the ones of the previous one.
const double yInfoRel = yInfoDiff / (double)curInfoGeo.height();
yCorrected = prevGeo.y() + yInfoRel * curGeo.height();
} else {
// align previous bottom...
yInfoDiff -= prevInfoGeo.height();
yDiff -= prevGeo.height();
yCorrected = prevGeo.y() + prevGeo.height();
if (yOverlap) {
// ... with current bottom
yInfoDiff += curInfoGeo.height();
yDiff += curGeo.height();
yCorrected -= curGeo.height();
} // ... else with current top
// When we align with previous bottom we are interested in changes to the
// previous geometry.
const double yInfoRel = yInfoDiff / (double)prevInfoGeo.height();
yCorrected += yInfoRel * prevGeo.height();
}
const int x = xDiff == xInfoDiff ? curGeo.x() : xCorrected;
const int y = yDiff == yInfoDiff ? curGeo.y() : yCorrected;
curPtr->setPos(QPoint(x, y));
}
}
void xrandrOutput::readIn(KScreen::OutputPtr output, const QVariantMap &info)
{
const QVariantMap posInfo = info[QStringLiteral("pos")].toMap();
QPoint point(posInfo[QStringLiteral("x")].toInt(), posInfo[QStringLiteral("y")].toInt());
output->setPos(point);
output->setPrimary(info[QStringLiteral("primary")].toBool());
output->setEnabled(info[QStringLiteral("enabled")].toBool());
if (readInGlobal(output)) {
USD_LOG(LOG_DEBUG,"out it....");
// output data read from global output file
return;
}
// output data read directly from info
readInGlobalPartFromInfo(output, info);
}
void xrandrOutput::readInOutputs(KScreen::ConfigPtr config, const QVariantList &outputsInfo)
{
const KScreen::OutputList outputs = config->outputs();
// As global outputs are indexed by a hash of their edid, which is not unique,
// to be able to tell apart multiple identical outputs, these need special treatment
QStringList duplicateIds;
{
QStringList allIds;
allIds.reserve(outputs.count());
for (const KScreen::OutputPtr &output : outputs) {
const auto outputId = output->hash();
if (allIds.contains(outputId) && !duplicateIds.contains(outputId)) {
duplicateIds << outputId;
}
allIds << outputId;
}
}
for (const KScreen::OutputPtr &output : outputs) {
if (!output->isConnected()) {
output->setEnabled(false);
continue;
}
const auto outputId = output->hash();
bool infoFound = false;
for (const auto &variantInfo : outputsInfo) {
const QVariantMap info = variantInfo.toMap();
if (outputId != info[QStringLiteral("id")].toString()) {
continue;
}
if (!output->name().isEmpty() && duplicateIds.contains(outputId)) {
// We may have identical outputs connected, these will have the same id in the config
// in order to find the right one, also check the output's name (usually the connector)
const auto metadata = info[QStringLiteral("metadata")].toMap();
const auto outputName = metadata[QStringLiteral("name")].toString();
if (output->name() != outputName) {
// was a duplicate id, but info not for this output
continue;
}
}
infoFound = true;
readIn(output, info);//, control.getOutputRetention(output));
break;
}
if (!infoFound) {
// no info in info for this output, try reading in global output info at least or set some default values
qWarning() << "\tFailed to find a matching output in the current info data - this means that our info is corrupted"
"or a different device with the same serial number has been connected (very unlikely).";
if (!readInGlobal(output)) {
// set some default values instead
readInGlobalPartFromInfo(output, QVariantMap());
}
}
}
// TODO: this does not work at the moment with logical size replication. Deactivate for now.
// correct positional config regressions on global output data changes
#if 1
adjustPositions(config, outputsInfo);
#endif
}
QVariantMap metadata(const KScreen::OutputPtr &output)
{
QVariantMap metadata;
metadata[QStringLiteral("name")] = output->name();
if (!output->edid() || !output->edid()->isValid()) {
return metadata;
}
metadata[QStringLiteral("fullname")] = output->edid()->deviceId();
return metadata;
}
void xrandrOutput::writeGlobal(const KScreen::OutputPtr &output)
{
// get old values and subsequently override
QVariantMap info = getGlobalData(output);
if (!writeGlobalPart(output, info, nullptr)) {
return;
}
QFile file(globalFileName(output->hashMd5()));
if (!file.open(QIODevice::WriteOnly)) {
USD_LOG(LOG_DEBUG, "Failed to open global output file for writing! ", file.errorString().toLatin1().data());
return;
}
file.write(QJsonDocument::fromVariant(info).toJson());
return;
}
bool xrandrOutput::writeGlobalPart(const KScreen::OutputPtr &output, QVariantMap &info,
const KScreen::OutputPtr &fallback)
{
info[QStringLiteral("id")] = output->hash();
info[QStringLiteral("metadata")] = metadata(output);
info[QStringLiteral("rotation")] = output->rotation();
// Round scale to four digits
info[QStringLiteral("scale")] = int(output->scale() * 10000 + 0.5) / 10000.;
info[QStringLiteral("dpi")] = UsdBaseClass::getDPI();
QVariantMap modeInfo;
float refreshRate = -1.;
QSize modeSize;
if (output->currentMode() && output->isEnabled()) {
refreshRate = output->currentMode()->refreshRate();
modeSize = output->currentMode()->size();
}
if (refreshRate < 0 || !modeSize.isValid()) {
return false;
}
modeInfo[QStringLiteral("refresh")] = refreshRate;
QVariantMap modeSizeMap;
modeSizeMap[QStringLiteral("width")] = modeSize.width();
modeSizeMap[QStringLiteral("height")] = modeSize.height();
modeInfo[QStringLiteral("size")] = modeSizeMap;
info[QStringLiteral("mode")] = modeInfo;
return true;
}
|