mirror of https://github.com/nymea/nymea.git
100 lines
3.4 KiB
C++
100 lines
3.4 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2015 Simon Stürz <simon.stuerz@guh.guru> *
|
|
* *
|
|
* This file is part of guh. *
|
|
* *
|
|
* Guh 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, version 2 of the License. *
|
|
* *
|
|
* Guh 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 guh. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef DEVICEPLUGINDATETIME_H
|
|
#define DEVICEPLUGINDATETIME_H
|
|
|
|
#include "plugin/deviceplugin.h"
|
|
#include "alarm.h"
|
|
#include "countdown.h"
|
|
|
|
#include <QDateTime>
|
|
#include <QTimeZone>
|
|
#include <QTime>
|
|
#include <QTimer>
|
|
|
|
class DevicePluginDateTime : public DevicePlugin
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PLUGIN_METADATA(IID "guru.guh.DevicePlugin" FILE "deviceplugindatetime.json")
|
|
Q_INTERFACES(DevicePlugin)
|
|
|
|
public:
|
|
explicit DevicePluginDateTime();
|
|
|
|
DeviceManager::HardwareResources requiredHardware() const override;
|
|
DeviceManager::DeviceSetupStatus setupDevice(Device *device) override;
|
|
void postSetupDevice(Device *device) override;
|
|
void deviceRemoved(Device *device) override;
|
|
|
|
DeviceManager::DeviceError executeAction(Device *device, const Action &action) override;
|
|
void networkManagerReplyReady(QNetworkReply *reply) override;
|
|
|
|
void startMonitoringAutoDevices() override;
|
|
|
|
private:
|
|
QTimer *m_timer;
|
|
Device *m_todayDevice;
|
|
QTimeZone m_timeZone;
|
|
QDateTime m_currentDateTime;
|
|
|
|
QHash<Device *, Alarm *> m_alarms;
|
|
QHash<Device *, Countdown *> m_countdowns;
|
|
|
|
QDateTime m_dusk;
|
|
QDateTime m_sunrise;
|
|
QDateTime m_noon;
|
|
QDateTime m_sunset;
|
|
QDateTime m_dawn;
|
|
|
|
QList<QNetworkReply *> m_locationReplies;
|
|
QList<QNetworkReply *> m_timeReplies;
|
|
|
|
void searchGeoLocation();
|
|
void processGeoLocationData(const QByteArray &data);
|
|
|
|
void getTimes(const QString &latitude, const QString &longitude);
|
|
void processTimesData(const QByteArray &data);
|
|
|
|
signals:
|
|
void dusk();
|
|
void sunset();
|
|
void noon();
|
|
void sunrise();
|
|
void dawn();
|
|
|
|
private slots:
|
|
void onAlarm();
|
|
void onCountdownTimeout();
|
|
void onCountdownRunningChanged(const bool &running);
|
|
void onSecondChanged();
|
|
void onMinuteChanged(const QDateTime &dateTime);
|
|
void onHourChanged(const QDateTime &dateTime);
|
|
void onDayChanged(const QDateTime &dateTime);
|
|
|
|
void updateTimes();
|
|
|
|
void validateTimeTypes(const QDateTime &dateTime);
|
|
|
|
};
|
|
|
|
#endif // DEVICEPLUGINDATETIME_H
|