Files
workavia-mail-front/lib/features/caching/config/hive_cache_client.dart
T

197 lines
5.5 KiB
Dart

import 'dart:typed_data';
import 'package:core/presentation/extensions/map_extensions.dart';
import 'package:core/utils/app_logger.dart';
import 'package:hive/hive.dart';
import 'package:tmail_ui_user/features/caching/config/hive_cache_config.dart';
import 'package:tmail_ui_user/features/caching/utils/cache_utils.dart';
abstract class HiveCacheClient<T> {
String get tableName;
bool get encryption => false;
Future<Uint8List?> _getEncryptionKey() => HiveCacheConfig.instance.getEncryptionKey();
Future<Box<T>> openBox() async {
if (Hive.isBoxOpen(tableName)) {
return Hive.box<T>(tableName);
} else {
return Hive.openBox<T>(tableName);
}
}
Future<Box<T>> openBoxEncryption() async {
final encryptionKey = await _getEncryptionKey();
if (Hive.isBoxOpen(tableName)) {
return Hive.box<T>(tableName);
} else {
return Hive.openBox<T>(
tableName,
encryptionCipher: encryptionKey != null
? HiveAesCipher(encryptionKey)
: null);
}
}
Future<void> insertItem(String key, T newObject) {
return Future.sync(() async {
final boxItem = encryption
? await openBoxEncryption()
: await openBox();
return boxItem.put(key, newObject);
}).catchError((error) {
throw error;
});
}
Future<void> insertMultipleItem(Map<String, T> mapObject) {
return Future.sync(() async {
final boxItem = encryption
? await openBoxEncryption()
: await openBox();
return boxItem.putAll(mapObject);
}).catchError((error) {
throw error;
});
}
Future<T?> getItem(String key, {bool needToReopen = false}) {
return Future.sync(() async {
if (needToReopen) {
await closeBox();
}
final boxItem = encryption
? await openBoxEncryption()
: await openBox();
return boxItem.get(key);
}).catchError((error) {
throw error;
});
}
Future<List<T>> getAll() {
return Future.sync(() async {
final boxItem = encryption ? await openBoxEncryption() : await openBox();
return boxItem.values.toList();
}).catchError((error) {
throw error;
});
}
Future<List<T>> getListByNestedKey(String nestedKey) {
return Future.sync(() async {
final boxItem = encryption ? await openBoxEncryption() : await openBox();
final listItem = boxItem.toMap()
.where((key, value) => _matchedNestedKey(key, nestedKey))
.values
.toList();
log('HiveCacheClient::getListByNestedKey:listItem: ${listItem.length}');
return listItem;
}).catchError((error) {
throw error;
});
}
Future<List<T>> getValuesByListKey(List<String> listKeys) {
return Future.sync(() async {
final boxItem = encryption ? await openBoxEncryption() : await openBox();
return boxItem.toMap()
.where((key, value) => listKeys.contains(key))
.values
.toList();
}).catchError((error) {
throw error;
});
}
bool _matchedNestedKey(String key, String nestedKey) {
final decodedKey = CacheUtils.decodeKey(key);
final decodedNestedKey = CacheUtils.decodeKey(nestedKey);
return decodedKey.contains(decodedNestedKey);
}
Future<void> updateItem(String key, T newObject) {
return Future.sync(() async {
final boxItem = encryption ? await openBoxEncryption() : await openBox();
return boxItem.put(key, newObject);
}).catchError((error) {
throw error;
});
}
Future<void> updateMultipleItem(Map<String, T> mapObject) {
return Future.sync(() async {
final boxItem = encryption ? await openBoxEncryption() : await openBox();
return boxItem.putAll(mapObject);
}).catchError((error) {
throw error;
});
}
Future<void> deleteItem(String key) {
return Future.sync(() async {
final boxItem = encryption ? await openBoxEncryption() : await openBox();
return boxItem.delete(key);
}).catchError((error) {
throw error;
});
}
Future<void> deleteMultipleItem(List<String> listKey) {
return Future.sync(() async {
final boxItem = encryption
? await openBoxEncryption()
: await openBox();
return boxItem.deleteAll(listKey);
}).catchError((error) {
throw error;
});
}
Future<bool> isExistItem(String key) {
return Future.sync(() async {
final boxItem = encryption
? await openBoxEncryption()
: await openBox();
return boxItem.containsKey(key);
}).catchError((error) {
throw error;
});
}
Future<void> deleteBox() {
return Hive.deleteBoxFromDisk(tableName);
}
Future<void> clearAllData() {
return Future.sync(() async {
final boxItem = encryption
? await openBoxEncryption()
: await openBox();
return boxItem.clear();
}).catchError((error) {
throw error;
});
}
Future<void> clearAllDataContainKey(String nestedKey) {
return Future.sync(() async {
final boxItem = encryption ? await openBoxEncryption() : await openBox();
final listKeys = boxItem.toMap().where((key, value) => _matchedNestedKey(key, nestedKey)).keys;
log('HiveCacheClient::clearAllDataContainKey:listKeys: ${listKeys.length}');
return boxItem.deleteAll(listKeys);
}).catchError((error) {
throw error;
});
}
Future<void> closeBox() async {
if (Hive.isBoxOpen(tableName)) {
await Hive.box<T>(tableName).close();
}
return Future.value();
}
}