mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
7c597b325a
- model package contains mostly shared interfaces (UI+service), not named GB* - impl package contains implementations of those interfaces, named GB* the impl classes should not be used by the service (not completely done) - the service classes should mostly use classes inside the service and deviceevents packages (tbd) Every device now has two packages: - devices/[device name] for UI related functionality - service[device name] for lowlevel communication
54 lines
1.4 KiB
Java
54 lines
1.4 KiB
Java
package nodomain.freeyourgadget.gadgetbridge.database;
|
|
|
|
import android.content.Context;
|
|
import android.os.AsyncTask;
|
|
import android.widget.Toast;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.util.GB;
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
|
|
|
public abstract class DBAccess extends AsyncTask {
|
|
private final String mTask;
|
|
private final Context mContext;
|
|
private Exception mError;
|
|
|
|
public DBAccess(String task, Context context) {
|
|
mTask = task;
|
|
mContext = context;
|
|
}
|
|
|
|
public Context getContext() {
|
|
return mContext;
|
|
}
|
|
|
|
protected abstract void doInBackground(DBHandler handler);
|
|
|
|
@Override
|
|
protected Object doInBackground(Object[] params) {
|
|
DBHandler handler = null;
|
|
try {
|
|
handler = GBApplication.acquireDB();
|
|
doInBackground(handler);
|
|
} catch (Exception e) {
|
|
mError = e;
|
|
} finally {
|
|
if (handler != null) {
|
|
handler.release();
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
protected void onPostExecute(Object o) {
|
|
if (mError != null) {
|
|
displayError(mError);
|
|
}
|
|
}
|
|
|
|
protected void displayError(Throwable error) {
|
|
GB.toast(getContext(), getContext().getString(R.string.dbaccess_error_executing, error.getMessage()), Toast.LENGTH_LONG, GB.ERROR, error);
|
|
}
|
|
}
|