package nodomain.freeyourgadget.gadgetbridge.service.devices.miband.operations; import android.widget.Toast; import java.io.IOException; import nodomain.freeyourgadget.gadgetbridge.service.btle.AbstractBTLEDeviceSupport; import nodomain.freeyourgadget.gadgetbridge.service.btle.AbstractBTLEOperation; import nodomain.freeyourgadget.gadgetbridge.service.btle.TransactionBuilder; import nodomain.freeyourgadget.gadgetbridge.util.GB; public abstract class AbstractMiBandOperation extends AbstractBTLEOperation { protected AbstractMiBandOperation(T support) { super(support); } @Override protected void prePerform() throws IOException { super.prePerform(); getDevice().setBusyTask("Operation starting..."); // mark as busy quickly to avoid interruptions from the outside TransactionBuilder builder = performInitialized("disabling some notifications"); enableOtherNotifications(builder, false); enableNeededNotifications(builder, true); builder.queue(getQueue()); } @Override protected void operationFinished() { operationStatus = OperationStatus.FINISHED; if (getDevice() != null && getDevice().isConnected()) { unsetBusy(); try { TransactionBuilder builder = performInitialized("reenabling disabled notifications"); handleFinished(builder); builder.queue(getQueue()); } catch (IOException ex) { GB.toast(getContext(), "Error enabling Mi Band notifications, you may need to connect and disconnect", Toast.LENGTH_LONG, GB.ERROR, ex); } } } private void handleFinished(TransactionBuilder builder) { enableNeededNotifications(builder, false); enableOtherNotifications(builder, true); } /** * Enables or disables the notifications that are needed for the entire operation. * Enabled on operation start and disabled on operation finish. * @param builder * @param enable */ protected abstract void enableNeededNotifications(TransactionBuilder builder, boolean enable); /** * Enables or disables certain kinds of notifications that could interfere with this * operation. Call this method once initially to disable other notifications, and once * when this operation has finished. * * @param builder * @param enable true to enable, false to disable the other notifications */ protected abstract void enableOtherNotifications(TransactionBuilder builder, boolean enable); }