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
|
/*
* Copyright 2007 Aaron Seigo <aseigo@kde.org>
* Copyright 2008 Alex Merry <alex.merry@kdemail.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 or
* (at your option) 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 Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "timeengine.h"
#include <QDate>
#include <QDBusConnection>
#include <QStringList>
#include <QTime>
#include <QSocketNotifier>
#include <QTimeZone>
#include <Solid/PowerManagement>
#ifdef Q_OS_LINUX
#include <sys/timerfd.h>
#include <unistd.h>
#include <fcntl.h>
#endif
#include "timesource.h"
//timezone is defined in msvc
#ifdef timezone
#undef timezone
#endif
TimeEngine::TimeEngine(QObject *parent, const QVariantList &args)
: Plasma::DataEngine(parent, args)
{
Q_UNUSED(args)
setMinimumPollingInterval(333);
// To have translated timezone names
// (effectively a noop if the catalog is already present).
////KF5 port: remove this line and define TRANSLATION_DOMAIN in CMakeLists.txt instead
//KLocale::global()->insertCatalog("timezones4");
QTimer::singleShot(0, this, &TimeEngine::init);
}
TimeEngine::~TimeEngine()
{
}
void TimeEngine::init()
{
QDBusConnection dbus = QDBusConnection::sessionBus();
dbus.connect(QString(), QString(), QStringLiteral("org.kde.KTimeZoned"), QStringLiteral("timeZoneChanged"), this, SLOT(tzConfigChanged()));
#ifdef Q_OS_LINUX
//monitor for the system clock being changed
auto timeChangedFd = timerfd_create(CLOCK_REALTIME, O_CLOEXEC | O_NONBLOCK);
itimerspec timespec;
memset(×pec, 0, sizeof(timespec)); //set all timers to 0 seconds, which creates a timer that won't do anything
int err = timerfd_settime(timeChangedFd, 3, ×pec, 0); //monitor for the time changing
//(flags == TFD_TIMER_ABSTIME | TFD_TIMER_CANCEL_ON_SET). However these are not exposed in glibc so value is hardcoded
if (err) {
qWarning() << "Could not create timer with TFD_TIMER_CANCEL_ON_SET. Clock skews will not be detected. Error:" << qPrintable(strerror(err));
}
connect(this, &QObject::destroyed, [timeChangedFd]() {
close(timeChangedFd);
});
auto notifier = new QSocketNotifier(timeChangedFd, QSocketNotifier::Read, this);
connect(notifier, &QSocketNotifier::activated, this, [this](int fd) {
uint64_t c;
read(fd, &c, 8);
clockSkewed();
});
#else
dbus.connect(QString(), "/org/kde/kcmshell_clock", "org.kde.kcmshell_clock", "clockUpdated", this, SLOT(clockSkewed()));
connect( Solid::PowerManagement::notifier(), SIGNAL(resumingFromSuspend()), this , SLOT(clockSkewed()) );
#endif
}
void TimeEngine::clockSkewed()
{
qDebug() << "Time engine Clock skew signaled";
updateAllSources();
forceImmediateUpdateOfAllVisualizations();
}
void TimeEngine::tzConfigChanged()
{
qDebug() << "Local timezone changed signaled";
TimeSource *s = qobject_cast<TimeSource *>(containerForSource(QStringLiteral("Local")));
if (s) {
s->setTimeZone(QStringLiteral("Local"));
}
updateAllSources();
forceImmediateUpdateOfAllVisualizations();
}
QStringList TimeEngine::sources() const
{
QStringList sources;
Q_FOREACH(const QByteArray &tz, QTimeZone::availableTimeZoneIds()) {
sources << QString(tz.constData());
}
sources << QStringLiteral("Local");
return sources;
}
bool TimeEngine::sourceRequestEvent(const QString &name)
{
addSource(new TimeSource(name, this));
return true;
}
bool TimeEngine::updateSourceEvent(const QString &tz)
{
TimeSource *s = qobject_cast<TimeSource *>(containerForSource(tz));
if (s) {
s->updateTime();
return true;
}
return false;
}
K_EXPORT_PLASMA_DATAENGINE_WITH_JSON(time, TimeEngine, "plasma-dataengine-time.json")
#include "timeengine.moc"
|