2013-07-26 15:21:19 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
#include "batteryplugin.h"
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
#include <KNotification>
|
2014-09-13 00:04:48 +01:00
|
|
|
#include <QIcon>
|
2013-09-04 20:19:02 +01:00
|
|
|
#include <KLocalizedString>
|
2014-09-22 01:37:10 +01:00
|
|
|
#include <KPluginFactory>
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
#include "batterydbusinterface.h"
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2015-03-19 15:36:53 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON( KdeConnectPluginFactory, "kdeconnect_battery.json", registerPlugin< BatteryPlugin >(); )
|
2013-07-28 21:00:45 +01:00
|
|
|
|
2015-07-13 12:09:24 +01:00
|
|
|
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_BATTERY, "kdeconnect.plugin.battery")
|
2014-09-21 23:44:17 +01:00
|
|
|
|
2017-09-03 20:39:44 +01:00
|
|
|
BatteryPlugin::BatteryPlugin(QObject* parent, const QVariantList& args)
|
2013-08-13 23:03:46 +01:00
|
|
|
: KdeConnectPlugin(parent, args)
|
2014-07-01 00:23:21 +01:00
|
|
|
, batteryDbusInterface(new BatteryDbusInterface(device()))
|
2013-08-13 23:03:46 +01:00
|
|
|
{
|
2013-07-28 21:00:45 +01:00
|
|
|
|
2013-11-22 18:08:04 +00:00
|
|
|
//TODO: Add battery reporting, could be based on:
|
|
|
|
// http://kde-apps.org/content/show.php/battery+plasmoid+with+remaining+time?content=120309
|
|
|
|
|
2013-08-22 02:21:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BatteryPlugin::connected()
|
|
|
|
{
|
2018-03-04 19:48:51 +00:00
|
|
|
NetworkPacket np(PACKET_TYPE_BATTERY_REQUEST, {{"request",true}});
|
|
|
|
sendPacket(np);
|
2013-07-26 15:21:19 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
BatteryPlugin::~BatteryPlugin()
|
2013-07-26 15:21:19 +01:00
|
|
|
{
|
2013-08-14 00:35:12 +01:00
|
|
|
//FIXME: Qt dbus does not allow to remove an adaptor! (it causes a crash in
|
2013-08-20 12:52:25 +01:00
|
|
|
// the next dbus access to its parent). The implication of not deleting this
|
2013-08-14 00:35:12 +01:00
|
|
|
// is that disabling the plugin does not remove the interface (that will
|
|
|
|
// return outdated values) and that enabling it again instantiates a second
|
2013-11-22 18:08:04 +00:00
|
|
|
// adaptor. This is also a memory leak until the entire device is destroyed.
|
2013-08-14 00:35:12 +01:00
|
|
|
|
|
|
|
//batteryDbusInterface->deleteLater();
|
2013-08-13 23:03:46 +01:00
|
|
|
}
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
bool BatteryPlugin::receivePacket(const NetworkPacket& np)
|
2013-08-13 23:03:46 +01:00
|
|
|
{
|
2016-11-26 14:38:08 +00:00
|
|
|
bool isCharging = np.get<bool>(QStringLiteral("isCharging"), false);
|
|
|
|
int currentCharge = np.get<int>(QStringLiteral("currentCharge"), -1);
|
|
|
|
int thresholdEvent = np.get<int>(QStringLiteral("thresholdEvent"), (int)ThresholdNone);
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2013-11-18 01:32:42 +00:00
|
|
|
if (batteryDbusInterface->charge() != currentCharge
|
2013-11-14 15:32:16 +00:00
|
|
|
|| batteryDbusInterface->isCharging() != isCharging
|
|
|
|
) {
|
2013-08-13 23:03:46 +01:00
|
|
|
batteryDbusInterface->updateValues(isCharging, currentCharge);
|
2013-11-14 15:32:16 +00:00
|
|
|
}
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2013-11-14 15:32:16 +00:00
|
|
|
if ( thresholdEvent == ThresholdBatteryLow && !isCharging ) {
|
2016-11-26 14:38:08 +00:00
|
|
|
KNotification* notification = new KNotification(QStringLiteral("batteryLow"));
|
|
|
|
notification->setIconName(QStringLiteral("battery-040"));
|
|
|
|
notification->setComponentName(QStringLiteral("kdeconnect"));
|
2015-01-18 00:52:04 +00:00
|
|
|
notification->setTitle(i18nc("device name: low battery", "%1: Low Battery", device()->name()));
|
2013-11-14 15:32:16 +00:00
|
|
|
notification->setText(i18n("Battery at %1%", currentCharge));
|
|
|
|
notification->sendEvent();
|
2013-07-26 15:21:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
2013-07-28 21:00:45 +01:00
|
|
|
|
2014-06-16 19:02:07 +01:00
|
|
|
#include "batteryplugin.moc"
|