GadgetBridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/devices/DeviceCoordinator.java

250 lines
7.5 KiB
Java
Raw Normal View History

2017-03-10 14:53:19 +01:00
/* Copyright (C) 2015-2017 Andreas Shimokawa, Carsten Pfeiffer, Daniele
Gobbetti, JohnnySun, Uwe Hermann
This file is part of Gadgetbridge.
Gadgetbridge is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Gadgetbridge 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
package nodomain.freeyourgadget.gadgetbridge.devices;
import android.annotation.TargetApi;
import android.app.Activity;
import android.bluetooth.le.ScanFilter;
import android.content.Context;
import android.net.Uri;
import android.os.Build;
import android.support.annotation.NonNull;
2017-02-26 22:46:49 +01:00
import android.support.annotation.Nullable;
import java.util.Collection;
import nodomain.freeyourgadget.gadgetbridge.GBException;
import nodomain.freeyourgadget.gadgetbridge.entities.DaoSession;
import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice;
import nodomain.freeyourgadget.gadgetbridge.impl.GBDeviceCandidate;
2016-06-16 21:54:53 +02:00
import nodomain.freeyourgadget.gadgetbridge.model.ActivitySample;
import nodomain.freeyourgadget.gadgetbridge.model.DeviceType;
2015-10-26 23:32:03 +01:00
/**
* This interface is implemented at least once for every supported gadget device.
* It allows Gadgetbridge to generically deal with different kinds of devices
* without actually knowing the details of any device.
* <p/>
2015-10-26 23:32:03 +01:00
* Instances will be created as needed and asked whether they support a given
* device. If a coordinator answers true, it will be used to assist in handling
* the given device.
*/
public interface DeviceCoordinator {
String EXTRA_DEVICE_CANDIDATE = "nodomain.freeyourgadget.gadgetbridge.impl.GBDeviceCandidate.EXTRA_DEVICE_CANDIDATE";
/**
* Do not attempt to bond after discovery.
*/
int BONDING_STYLE_NONE = 0;
/**
* Bond after discovery.
* This is not recommended, as there are mobile devices on which bonding does not work.
* Prefer to use #BONDING_STYLE_ASK instead.
*/
int BONDING_STYLE_BOND = 1;
/**
* Let the user decide whether to bond or not after discovery.
* Prefer this over #BONDING_STYLE_BOND
*/
int BONDING_STYLE_ASK = 2;
2015-10-26 23:32:03 +01:00
/**
* Checks whether this coordinator handles the given candidate.
* Returns the supported device type for the given candidate or
* DeviceType.UNKNOWN
*
* @param candidate
* @return the supported device type for the given candidate.
*/
@NonNull
DeviceType getSupportedType(GBDeviceCandidate candidate);
/**
* Checks whether this coordinator handles the given candidate.
*
2015-10-26 23:32:03 +01:00
* @param candidate
* @return true if this coordinator handles the given candidate.
*/
boolean supports(GBDeviceCandidate candidate);
2015-10-26 23:32:03 +01:00
/**
* Checks whether this candidate handles the given device.
*
2015-10-26 23:32:03 +01:00
* @param device
* @return true if this coordinator handles the given device.
*/
boolean supports(GBDevice device);
/**
* Returns a list of scan filters that shall be used to discover devices supported
* by this coordinator.
* @return the list of scan filters, may be empty
*/
@NonNull
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
Collection<? extends ScanFilter> createBLEScanFilters();
GBDevice createDevice(GBDeviceCandidate candidate);
/**
* Deletes all information, including all related database content about the
* given device.
* @throws GBException
*/
void deleteDevice(GBDevice device) throws GBException;
2015-10-26 23:32:03 +01:00
/**
* Returns the kind of device type this coordinator supports.
*
2015-10-26 23:32:03 +01:00
* @return
*/
DeviceType getDeviceType();
2015-10-26 23:32:03 +01:00
/**
* Returns the Activity class to be started in order to perform a pairing of a
2017-02-26 22:46:49 +01:00
* given device after its discovery.
*
2017-02-26 22:46:49 +01:00
* @return the activity class for pairing/initial authentication, or null if none
2015-10-26 23:32:03 +01:00
*/
2017-02-26 22:46:49 +01:00
@Nullable
Class<? extends Activity> getPairingActivity();
2015-10-26 23:32:03 +01:00
/**
* Returns the Activity class that will be used as the primary activity
* for the given device.
*
2017-02-26 22:46:49 +01:00
* @return the primary activity class, or null if none
2015-10-26 23:32:03 +01:00
*/
2017-02-26 22:46:49 +01:00
@Nullable
Class<? extends Activity> getPrimaryActivity();
2015-10-26 23:32:03 +01:00
/**
* Returns true if activity data fetching is supported by the device
* (with this coordinator).
*
2015-10-26 23:32:03 +01:00
* @return
*/
boolean supportsActivityDataFetching();
/**
* Returns true if activity tracking is supported by the device
* (with this coordinator).
*
* @return
*/
boolean supportsActivityTracking();
/**
* Returns true if audio settings is supported by the device
* (with this coordinator). Only HERE is supported right now
*
* @return
*/
boolean supportsAudioSettings();
2015-10-26 23:32:03 +01:00
/**
* Returns true if activity data fetching is supported AND possible at this
* very moment. This will consider the device state (being connected/disconnected/busy...)
* etc.
*
2015-10-26 23:32:03 +01:00
* @param device
* @return
*/
boolean allowFetchActivityData(GBDevice device);
2015-10-26 23:32:03 +01:00
/**
* Returns the sample provider for the device being supported.
*
2015-10-26 23:32:03 +01:00
* @return
*/
SampleProvider<? extends ActivitySample> getSampleProvider(GBDevice device, DaoSession session);
2015-10-26 23:32:03 +01:00
/**
* Finds an install handler for the given uri that can install the given
* uri on the device being managed.
*
2015-10-26 23:32:03 +01:00
* @param uri
* @param context
* @return the install handler or null if that uri cannot be installed on the device
*/
InstallHandler findInstallHandler(Uri uri, Context context);
2015-10-26 23:32:03 +01:00
/**
* Returns true if this device/coordinator supports taking screenshots.
*
2015-10-26 23:32:03 +01:00
* @return
*/
boolean supportsScreenshots();
/**
* Returns true if this device/coordinator supports setting alarms.
*
* @return
*/
boolean supportsAlarmConfiguration();
/**
* Returns true if this device/coordinator supports alarms with smart wakeup
* @return
*/
boolean supportsSmartWakeup(GBDevice device);
/**
* Returns true if the given device supports heart rate measurements.
* @return
*/
boolean supportsHeartRateMeasurement(GBDevice device);
2016-05-13 23:47:47 +02:00
/**
* Returns the readable name of the manufacturer.
*/
String getManufacturer();
/**
* Returns true if this device/coordinator supports managing device apps.
*
* @return
*/
boolean supportsAppsManagement();
/**
* Returns the Activity class that will be used to manage device apps.
*
* @return
*/
Class<? extends Activity> getAppsManagementActivity();
/**
* Returns how/if the given device should be bonded before connecting to it.
* @param device
*/
int getBondingStyle(GBDevice device);
/**
* Indicates whether the device has some kind of calender we can sync to.
* Also used for generated sunrise/sunset events
*/
boolean supportsCalendarEvents();
/**
* Indicates whether the device supports getting a stream of live data.
* This can be live HR, steps etc.
*/
boolean supportsRealtimeData();
2017-07-21 19:56:49 +02:00
}