2013-07-26 15:21:19 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-07-26 15:21:19 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2013-07-26 15:21:19 +01:00
|
|
|
*/
|
|
|
|
|
2023-07-21 19:22:59 +01:00
|
|
|
#pragma once
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
#include <core/kdeconnectplugin.h>
|
2013-07-26 15:21:19 +01:00
|
|
|
|
Finally, we have support for sending out Battery information.
## Summary
The core idea is as follows:
1. When a Link loads the BatteryPlugin, we query Solid for a list of batteries.
1. If the list is empty, we print a warning message and return quickly
2. Otherwise, we connect *two signals* to every object in that list
2. We send out a single new NetworkPacket as soon as we've processed that list
3. When either of those two signals emits, we send another new NetworkPacket
### Multi-battery Support
BUG: 357193
To handle devices with multiple batteries (requested in that bug), we average
together the battery percentages. This also includes a new field in the packet for
'number of batteries' called `batteryQuantity`. For backwards compatibility, we can
assume it has a default value of one.
This should ensure we support
- devices with no batteries at all (like many desktop machines)
- devices with hot-pluggable batteries (like those laptops with detachable screens)
### Concerns
Note that the implementation isn't perfect.
We'll need some new localizable text to make it clear that we now support sending
battery status information.
Then there's a rather significant question: maybe we should have two battery plugins
on each client, like we do for the `findmyphone`/`findthisdevice` plugins?
## Test Plan
We need to ensure that other clients (including those using the Android codebase)
will respond correctly. The main things to look at are
1. are these new packets sent when the plugin is enabled, and not sent when it's disabled?
2. is the charge percentage accurate?
3. is the charge state (charging, discharging, or full) accurate?
and
4. do we see the correct number of warnings for low-battery?
2020-04-13 06:54:11 +01:00
|
|
|
#define PACKET_TYPE_BATTERY QStringLiteral("kdeconnect.battery")
|
2013-10-11 14:19:23 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class BatteryPlugin : public KdeConnectPlugin
|
2013-07-26 15:21:19 +01:00
|
|
|
{
|
2013-07-28 21:00:45 +01:00
|
|
|
Q_OBJECT
|
2020-08-22 21:37:18 +01:00
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.device.battery")
|
|
|
|
Q_PROPERTY(int charge READ charge NOTIFY refreshed)
|
|
|
|
Q_PROPERTY(bool isCharging READ isCharging NOTIFY refreshed)
|
2013-07-26 15:21:19 +01:00
|
|
|
|
|
|
|
public:
|
2022-09-10 22:23:52 +01:00
|
|
|
explicit BatteryPlugin(QObject *parent, const QVariantList &args);
|
2013-07-26 15:21:19 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
bool receivePacket(const NetworkPacket &np) override;
|
2016-06-20 08:05:02 +01:00
|
|
|
void connected() override;
|
2020-08-22 21:37:18 +01:00
|
|
|
QString dbusPath() const override;
|
|
|
|
|
|
|
|
int charge() const;
|
|
|
|
bool isCharging() const;
|
2013-07-28 21:00:45 +01:00
|
|
|
|
2020-08-22 21:37:18 +01:00
|
|
|
Q_SIGNALS:
|
2020-12-13 12:28:23 +00:00
|
|
|
Q_SCRIPTABLE void refreshed(bool isCharging, int charge);
|
Finally, we have support for sending out Battery information.
## Summary
The core idea is as follows:
1. When a Link loads the BatteryPlugin, we query Solid for a list of batteries.
1. If the list is empty, we print a warning message and return quickly
2. Otherwise, we connect *two signals* to every object in that list
2. We send out a single new NetworkPacket as soon as we've processed that list
3. When either of those two signals emits, we send another new NetworkPacket
### Multi-battery Support
BUG: 357193
To handle devices with multiple batteries (requested in that bug), we average
together the battery percentages. This also includes a new field in the packet for
'number of batteries' called `batteryQuantity`. For backwards compatibility, we can
assume it has a default value of one.
This should ensure we support
- devices with no batteries at all (like many desktop machines)
- devices with hot-pluggable batteries (like those laptops with detachable screens)
### Concerns
Note that the implementation isn't perfect.
We'll need some new localizable text to make it clear that we now support sending
battery status information.
Then there's a rather significant question: maybe we should have two battery plugins
on each client, like we do for the `findmyphone`/`findthisdevice` plugins?
## Test Plan
We need to ensure that other clients (including those using the Android codebase)
will respond correctly. The main things to look at are
1. are these new packets sent when the plugin is enabled, and not sent when it's disabled?
2. is the charge percentage accurate?
3. is the charge state (charging, discharging, or full) accurate?
and
4. do we see the correct number of warnings for low-battery?
2020-04-13 06:54:11 +01:00
|
|
|
|
2013-08-13 23:03:46 +01:00
|
|
|
private:
|
2020-08-22 21:37:18 +01:00
|
|
|
void slotChargeChanged();
|
|
|
|
|
2013-11-14 15:32:16 +00:00
|
|
|
// Keep these values in sync with THRESHOLD* constants in
|
|
|
|
// kdeconnect-android:BatteryPlugin.java
|
|
|
|
// see README for their meaning
|
2022-09-10 22:23:52 +01:00
|
|
|
enum ThresholdBatteryEvent { ThresholdNone = 0, ThresholdBatteryLow = 1 };
|
2013-11-14 15:32:16 +00:00
|
|
|
|
2020-10-31 20:15:56 +00:00
|
|
|
int m_charge = -1;
|
|
|
|
bool m_isCharging = false;
|
2013-07-26 15:21:19 +01:00
|
|
|
};
|