2020-01-09 10:44:32 +01:00
|
|
|
/* Copyright (C) 2015-2020 Andreas Shimokawa, Carsten Pfeiffer, Daniele
|
2017-03-10 14:53:19 +01:00
|
|
|
Gobbetti, JohnnySun
|
|
|
|
|
|
|
|
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/>. */
|
2015-08-03 01:17:02 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.database;
|
|
|
|
|
|
|
|
import android.database.sqlite.SQLiteDatabase;
|
|
|
|
import android.database.sqlite.SQLiteOpenHelper;
|
|
|
|
|
2016-06-14 20:13:08 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.entities.DaoMaster;
|
2016-05-16 23:00:04 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.entities.DaoSession;
|
2015-08-03 01:17:02 +02:00
|
|
|
|
2016-06-14 20:13:08 +02:00
|
|
|
/**
|
2020-08-26 04:34:41 +02:00
|
|
|
* Provides low-level access to the database.
|
2016-06-14 20:13:08 +02:00
|
|
|
*/
|
2016-05-16 23:00:04 +02:00
|
|
|
public interface DBHandler extends AutoCloseable {
|
2016-04-29 23:12:30 +02:00
|
|
|
/**
|
|
|
|
* Closes the database.
|
|
|
|
*/
|
2016-05-16 23:00:04 +02:00
|
|
|
void closeDb();
|
2016-06-14 20:13:08 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens the database. Note that this is only possible after an explicit
|
|
|
|
* #closeDb(). Initially the db is implicitly open.
|
|
|
|
*/
|
2016-05-17 00:51:00 +02:00
|
|
|
void openDb();
|
2016-04-29 23:12:30 +02:00
|
|
|
|
2015-10-23 15:11:21 +02:00
|
|
|
SQLiteOpenHelper getHelper();
|
2015-08-03 01:17:02 +02:00
|
|
|
|
|
|
|
/**
|
2016-06-14 20:13:08 +02:00
|
|
|
* Releases the DB handler. No DB access will be possible before
|
|
|
|
* #openDb() will be called.
|
2015-08-03 01:17:02 +02:00
|
|
|
*/
|
2016-05-16 23:00:04 +02:00
|
|
|
void close() throws Exception;
|
2015-08-03 01:17:02 +02:00
|
|
|
|
2016-05-17 00:51:00 +02:00
|
|
|
SQLiteDatabase getDatabase();
|
2016-02-09 17:52:21 +01:00
|
|
|
|
2016-06-17 00:07:50 +02:00
|
|
|
DaoMaster getDaoMaster();
|
2016-05-16 23:00:04 +02:00
|
|
|
DaoSession getDaoSession();
|
2015-08-03 01:17:02 +02:00
|
|
|
}
|