2024-01-10 18:54:00 +01:00
|
|
|
/* Copyright (C) 2016-2024 Andreas Shimokawa, Carsten Pfeiffer, Daniele
|
2019-02-13 20:43:30 +01:00
|
|
|
Gobbetti
|
2017-03-10 14:53:19 +01:00
|
|
|
|
|
|
|
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
|
2024-01-10 18:54:00 +01:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
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;
|
2016-01-24 00:06:44 +01:00
|
|
|
|
2019-01-26 15:52:40 +01:00
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import androidx.localbroadcastmanager.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;
|
2017-02-20 08:47:42 +01:00
|
|
|
int pebbleKit = 0;
|
2016-04-25 23:18:55 +02:00
|
|
|
Prefs prefs = GBApplication.getPrefs();
|
|
|
|
if (prefs.getBoolean("pebble_enable_pebblekit", false)) {
|
2017-02-20 08:47:42 +01:00
|
|
|
pebbleKit = 1;
|
2016-01-24 00:06:44 +01:00
|
|
|
}
|
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-02-20 08:47:42 +01:00
|
|
|
mc.addRow(new Object[]{connected, pebbleKit, pebbleKit, 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;
|
|
|
|
}
|
|
|
|
}
|