mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
21caa06fa2
Fixes large and small image cache
77 lines
2.2 KiB
Dart
77 lines
2.2 KiB
Dart
import 'package:flutter/painting.dart';
|
|
import 'package:immich_mobile/modules/asset_viewer/image_providers/immich_local_image_provider.dart';
|
|
import 'package:immich_mobile/modules/asset_viewer/image_providers/immich_remote_image_provider.dart';
|
|
|
|
/// [ImageCache] that uses two caches for small and large images
|
|
/// so that a single large image does not evict all small iamges
|
|
final class CustomImageCache implements ImageCache {
|
|
final _small = ImageCache();
|
|
final _large = ImageCache();
|
|
|
|
@override
|
|
int get maximumSize => _small.maximumSize + _large.maximumSize;
|
|
|
|
@override
|
|
int get maximumSizeBytes => _small.maximumSizeBytes + _large.maximumSizeBytes;
|
|
|
|
@override
|
|
set maximumSize(int value) => _small.maximumSize = value;
|
|
|
|
@override
|
|
set maximumSizeBytes(int value) => _small.maximumSize = value;
|
|
|
|
@override
|
|
void clear() {
|
|
_small.clear();
|
|
_large.clear();
|
|
}
|
|
|
|
@override
|
|
void clearLiveImages() {
|
|
_small.clearLiveImages();
|
|
_large.clearLiveImages();
|
|
}
|
|
|
|
/// Gets the cache for the given key
|
|
ImageCache _cacheForKey(Object key) =>
|
|
(key is ImmichLocalImageProvider || key is ImmichRemoteImageProvider)
|
|
? _large
|
|
: _small;
|
|
|
|
@override
|
|
bool containsKey(Object key) {
|
|
// [ImmichLocalImageProvider] and [ImmichRemoteImageProvider] are both
|
|
// large size images while the other thumbnail providers are small
|
|
return _cacheForKey(key).containsKey(key);
|
|
}
|
|
|
|
@override
|
|
int get currentSize => _small.currentSize + _large.currentSize;
|
|
|
|
@override
|
|
int get currentSizeBytes => _small.currentSizeBytes + _large.currentSizeBytes;
|
|
|
|
@override
|
|
bool evict(Object key, {bool includeLive = true}) =>
|
|
_cacheForKey(key).evict(key, includeLive: includeLive);
|
|
|
|
@override
|
|
int get liveImageCount => _small.liveImageCount + _large.liveImageCount;
|
|
|
|
@override
|
|
int get pendingImageCount =>
|
|
_small.pendingImageCount + _large.pendingImageCount;
|
|
|
|
@override
|
|
ImageStreamCompleter? putIfAbsent(
|
|
Object key,
|
|
ImageStreamCompleter Function() loader, {
|
|
ImageErrorListener? onError,
|
|
}) =>
|
|
_cacheForKey(key).putIfAbsent(key, loader, onError: onError);
|
|
|
|
@override
|
|
ImageCacheStatus statusForKey(Object key) =>
|
|
_cacheForKey(key).statusForKey(key);
|
|
}
|