2016-01-22 20:38:44 +01:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.contentprovider;
|
2016-01-22 20:21:18 +01:00
|
|
|
|
2016-01-24 00:06:44 +01:00
|
|
|
import android.content.BroadcastReceiver;
|
2016-01-22 20:21:18 +01:00
|
|
|
import android.content.ContentProvider;
|
|
|
|
import android.content.ContentValues;
|
2016-01-24 00:06:44 +01:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.IntentFilter;
|
2016-01-22 20:21:18 +01:00
|
|
|
import android.database.Cursor;
|
|
|
|
import android.database.MatrixCursor;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.support.annotation.NonNull;
|
2016-01-24 00:06:44 +01:00
|
|
|
import android.support.v4.content.LocalBroadcastManager;
|
|
|
|
|
2016-04-25 23:18:55 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
2016-01-24 00:06:44 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.DeviceType;
|
2016-04-25 23:18:55 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.util.Prefs;
|
2016-01-22 20:21:18 +01:00
|
|
|
|
|
|
|
public class PebbleContentProvider extends ContentProvider {
|
|
|
|
|
|
|
|
public static final int COLUMN_CONNECTED = 0;
|
|
|
|
public static final int COLUMN_APPMSG_SUPPORT = 1;
|
|
|
|
public static final int COLUMN_DATALOGGING_SUPPORT = 2;
|
|
|
|
public static final int COLUMN_VERSION_MAJOR = 3;
|
|
|
|
public static final int COLUMN_VERSION_MINOR = 4;
|
|
|
|
public static final int COLUMN_VERSION_POINT = 5;
|
|
|
|
public static final int COLUMN_VERSION_TAG = 6;
|
|
|
|
|
|
|
|
// this is only needed for the MatrixCursor constructor
|
|
|
|
public static final String[] columnNames = new String[]{"0", "1", "2", "3", "4", "5", "6"};
|
|
|
|
|
|
|
|
static final String PROVIDER_NAME = "com.getpebble.android.provider";
|
|
|
|
static final String URL = "content://" + PROVIDER_NAME + "/state";
|
|
|
|
static final Uri CONTENT_URI = Uri.parse(URL);
|
|
|
|
|
2016-01-24 00:06:44 +01:00
|
|
|
private GBDevice mGBDevice = null;
|
|
|
|
|
|
|
|
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
|
|
|
|
@Override
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
String action = intent.getAction();
|
|
|
|
if (action.equals(GBDevice.ACTION_DEVICE_CHANGED)) {
|
|
|
|
mGBDevice = intent.getParcelableExtra(GBDevice.EXTRA_DEVICE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-22 20:21:18 +01:00
|
|
|
@Override
|
|
|
|
public boolean onCreate() {
|
2016-01-24 00:06:44 +01:00
|
|
|
LocalBroadcastManager.getInstance(this.getContext()).registerReceiver(mReceiver, new IntentFilter(GBDevice.ACTION_DEVICE_CHANGED));
|
|
|
|
|
2016-01-22 20:21:18 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Cursor query(@NonNull Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
|
|
|
|
if (uri.equals(CONTENT_URI)) {
|
|
|
|
MatrixCursor mc = new MatrixCursor(columnNames);
|
2016-01-24 00:06:44 +01:00
|
|
|
int connected = 0;
|
|
|
|
int appMessage = 0;
|
2016-04-25 23:18:55 +02:00
|
|
|
Prefs prefs = GBApplication.getPrefs();
|
|
|
|
if (prefs.getBoolean("pebble_enable_pebblekit", false)) {
|
2016-01-24 00:06:44 +01:00
|
|
|
appMessage = 1;
|
|
|
|
}
|
2017-01-10 22:43:10 +01:00
|
|
|
String fwString = "unknown";
|
2016-01-24 00:06:44 +01:00
|
|
|
if (mGBDevice != null && mGBDevice.getType() == DeviceType.PEBBLE && mGBDevice.isInitialized()) {
|
|
|
|
connected = 1;
|
2017-01-10 22:43:10 +01:00
|
|
|
fwString = mGBDevice.getFirmwareVersion();
|
2016-01-24 00:06:44 +01:00
|
|
|
}
|
2017-01-10 22:43:10 +01:00
|
|
|
mc.addRow(new Object[]{connected, appMessage, 0, 3, 8, 2, fwString});
|
2016-01-24 00:06:44 +01:00
|
|
|
|
2016-01-22 20:21:18 +01:00
|
|
|
return mc;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getType(@NonNull Uri uri) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Uri insert(@NonNull Uri uri, ContentValues values) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int delete(@NonNull Uri uri, String selection, String[] selectionArgs) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int update(@NonNull Uri uri, ContentValues values, String selection, String[] selectionArgs) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|