blob: d950d8d9a613df01c17855e8629f2f9ec5627c89 [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.server.nearby.fastpair.cache;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
/**
* Fast Pair db helper handle all of the db actions related Fast Pair.
*/
public class FastPairDbHelper extends SQLiteOpenHelper {
public static final int DATABASE_VERSION = 1;
public static final String DATABASE_NAME = "FastPair.db";
private static final String SQL_CREATE_DISCOVERY_ITEM_DB =
"CREATE TABLE IF NOT EXISTS " + DiscoveryItemContract.DiscoveryItemEntry.TABLE_NAME
+ " (" + DiscoveryItemContract.DiscoveryItemEntry._ID
+ "INTEGER PRIMARY KEY,"
+ DiscoveryItemContract.DiscoveryItemEntry.COLUMN_MODEL_ID
+ " TEXT," + DiscoveryItemContract.DiscoveryItemEntry.COLUMN_SCAN_BYTE
+ " BLOB)";
private static final String SQL_DELETE_DISCOVERY_ITEM_DB =
"DROP TABLE IF EXISTS " + DiscoveryItemContract.DiscoveryItemEntry.TABLE_NAME;
private static final String SQL_CREATE_FAST_PAIR_ITEM_DB =
"CREATE TABLE IF NOT EXISTS "
+ StoredFastPairItemContract.StoredFastPairItemEntry.TABLE_NAME
+ " (" + StoredFastPairItemContract.StoredFastPairItemEntry._ID
+ "INTEGER PRIMARY KEY,"
+ StoredFastPairItemContract.StoredFastPairItemEntry.COLUMN_MAC_ADDRESS
+ " TEXT,"
+ StoredFastPairItemContract.StoredFastPairItemEntry.COLUMN_ACCOUNT_KEY
+ " TEXT,"
+ StoredFastPairItemContract
.StoredFastPairItemEntry.COLUMN_STORED_FAST_PAIR_BYTE
+ " BLOB)";
private static final String SQL_DELETE_FAST_PAIR_ITEM_DB =
"DROP TABLE IF EXISTS " + StoredFastPairItemContract.StoredFastPairItemEntry.TABLE_NAME;
public FastPairDbHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(SQL_CREATE_DISCOVERY_ITEM_DB);
db.execSQL(SQL_CREATE_FAST_PAIR_ITEM_DB);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// Since the outdated data has no value so just remove the data.
db.execSQL(SQL_DELETE_DISCOVERY_ITEM_DB);
db.execSQL(SQL_DELETE_FAST_PAIR_ITEM_DB);
onCreate(db);
}
@Override
public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
super.onDowngrade(db, oldVersion, newVersion);
}
}