mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-28 21:06:50 +01:00
Some cleanup + actually remember event time and kind for throttling
This commit is contained in:
parent
f5a569610f
commit
ab97b544f0
@ -25,7 +25,6 @@ import java.util.UUID;
|
||||
|
||||
import nodomain.freeyourgadget.gadgetbridge.GBDevice.State;
|
||||
import nodomain.freeyourgadget.gadgetbridge.miband.MiBandSupport;
|
||||
import nodomain.freeyourgadget.gadgetbridge.pebble.PebbleIoThread;
|
||||
import nodomain.freeyourgadget.gadgetbridge.pebble.PebbleSupport;
|
||||
|
||||
public class BluetoothCommunicationService extends Service {
|
||||
|
@ -18,7 +18,7 @@ public class ServiceDeviceSupport implements DeviceSupport {
|
||||
|
||||
private final DeviceSupport delegate;
|
||||
private long lastNoficationTime = 0;
|
||||
private String lastNotificationType;
|
||||
private String lastNotificationKind;
|
||||
|
||||
public ServiceDeviceSupport(DeviceSupport delegate) {
|
||||
this.delegate = delegate;
|
||||
@ -79,11 +79,13 @@ public class ServiceDeviceSupport implements DeviceSupport {
|
||||
private boolean checkThrottle(String notificationKind) {
|
||||
long currentTime = System.currentTimeMillis();
|
||||
if ((currentTime - lastNoficationTime) < THROTTLING_THRESHOLD) {
|
||||
if (notificationKind != null && notificationKind.equals(lastNotificationType)) {
|
||||
if (notificationKind != null && notificationKind.equals(lastNotificationKind)) {
|
||||
LOG.info("Ignoring " + notificationKind + " because of throttling threshold reached");
|
||||
return true;
|
||||
}
|
||||
}
|
||||
lastNoficationTime = currentTime;
|
||||
lastNotificationKind = notificationKind;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -10,14 +10,12 @@ import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
import java.text.DateFormat;
|
||||
import java.util.Arrays;
|
||||
import java.util.Calendar;
|
||||
import java.util.GregorianCalendar;
|
||||
import java.util.UUID;
|
||||
|
||||
import java.text.DateFormat;
|
||||
|
||||
import nodomain.freeyourgadget.gadgetbridge.GBActivitySample;
|
||||
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
||||
import nodomain.freeyourgadget.gadgetbridge.GBCommand;
|
||||
|
@ -2,8 +2,6 @@ package nodomain.freeyourgadget.gadgetbridge.pebble;
|
||||
|
||||
import android.net.Uri;
|
||||
|
||||
import java.net.URI;
|
||||
|
||||
import nodomain.freeyourgadget.gadgetbridge.AbstractBTDeviceSupport;
|
||||
import nodomain.freeyourgadget.gadgetbridge.GBDeviceIoThread;
|
||||
import nodomain.freeyourgadget.gadgetbridge.protocol.GBDeviceProtocol;
|
||||
|
Loading…
Reference in New Issue
Block a user