[mob][photos] Fixes 'Not person' null response (#5747)

## Description

Fixes 'Not person' null response

## Tests

Tested in debug mode on my pixel phone.
This commit is contained in:
Laurens Priem 2025-04-28 20:41:37 +05:30 committed by GitHub
commit dda7b2a28e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 59 additions and 64 deletions

View File

@ -22,6 +22,7 @@ import "package:photos/services/search_service.dart";
import "package:photos/ui/home/memories/full_screen_memory.dart";
import "package:photos/utils/navigation_util.dart";
import "package:shared_preferences/shared_preferences.dart";
import "package:synchronized/synchronized.dart";
class MemoriesCacheService {
static const _lastMemoriesCacheUpdateTimeKey = "lastMemoriesCacheUpdateTime";
@ -39,7 +40,8 @@ class MemoriesCacheService {
List<SmartMemory>? _cachedMemories;
bool _shouldUpdate = false;
bool _isUpdateInProgress = false;
final _memoriesUpdateLock = Lock();
MemoriesCacheService(this._prefs) {
_logger.fine("MemoriesCacheService constructor");
@ -160,74 +162,67 @@ class MemoriesCacheService {
return;
}
_checkIfTimeToUpdateCache();
try {
if ((!_shouldUpdate && !forced) || _isUpdateInProgress) {
return _memoriesUpdateLock.synchronized(() async {
if ((!_shouldUpdate && !forced)) {
_logger.info(
"No update needed (shouldUpdate: $_shouldUpdate, forced: $forced, isUpdateInProgress $_isUpdateInProgress)",
"No update needed (shouldUpdate: $_shouldUpdate, forced: $forced)",
);
if (_isUpdateInProgress) {
int waitingTime = 0;
while (_isUpdateInProgress && waitingTime < 60) {
await Future.delayed(const Duration(seconds: 1));
waitingTime++;
}
}
return;
}
_logger.info(
"Updating memories cache (shouldUpdate: $_shouldUpdate, forced: $forced, isUpdateInProgress $_isUpdateInProgress)",
"Updating memories cache (shouldUpdate: $_shouldUpdate, forced: $forced)",
);
_isUpdateInProgress = true;
final EnteWatch? w =
kDebugMode ? EnteWatch("MemoriesCacheService") : null;
w?.start();
final oldCache = await _readCacheFromDisk();
w?.log("gotten old cache");
final MemoriesCache newCache = _processOldCache(oldCache);
w?.log("processed old cache");
// calculate memories for this period and for the next period
final now = DateTime.now();
final next = now.add(kMemoriesUpdateFrequency);
final nowResult = await smartMemoriesService.calcMemories(now, newCache);
if (nowResult.isEmpty) {
_cachedMemories = [];
_isUpdateInProgress = false;
_logger.warning(
"No memories found for now, not updating cache and returning early",
try {
final EnteWatch? w =
kDebugMode ? EnteWatch("MemoriesCacheService") : null;
w?.start();
final oldCache = await _readCacheFromDisk();
w?.log("gotten old cache");
final MemoriesCache newCache = _processOldCache(oldCache);
w?.log("processed old cache");
// calculate memories for this period and for the next period
final now = DateTime.now();
final next = now.add(kMemoriesUpdateFrequency);
final nowResult =
await smartMemoriesService.calcMemories(now, newCache);
if (nowResult.isEmpty) {
_cachedMemories = [];
_logger.warning(
"No memories found for now, not updating cache and returning early",
);
return;
}
final nextResult =
await smartMemoriesService.calcMemories(next, newCache);
w?.log("calculated new memories");
for (final nowMemory in nowResult.memories) {
newCache.toShowMemories
.add(ToShowMemory.fromSmartMemory(nowMemory, now));
}
for (final nextMemory in nextResult.memories) {
newCache.toShowMemories
.add(ToShowMemory.fromSmartMemory(nextMemory, next));
}
newCache.baseLocations.addAll(nowResult.baseLocations);
w?.log("added memories to cache");
final file = File(await _getCachePath());
if (!file.existsSync()) {
file.createSync(recursive: true);
}
_cachedMemories = nowResult.memories
.where((memory) => memory.shouldShowNow())
.toList();
locationService.baseLocations = nowResult.baseLocations;
await file.writeAsBytes(
MemoriesCache.encodeToJsonString(newCache).codeUnits,
);
return;
w?.log("cacheWritten");
await _cacheUpdated();
w?.logAndReset('_cacheUpdated method done');
} catch (e, s) {
_logger.info("Error updating memories cache", e, s);
}
final nextResult =
await smartMemoriesService.calcMemories(next, newCache);
w?.log("calculated new memories");
for (final nowMemory in nowResult.memories) {
newCache.toShowMemories
.add(ToShowMemory.fromSmartMemory(nowMemory, now));
}
for (final nextMemory in nextResult.memories) {
newCache.toShowMemories
.add(ToShowMemory.fromSmartMemory(nextMemory, next));
}
newCache.baseLocations.addAll(nowResult.baseLocations);
w?.log("added memories to cache");
final file = File(await _getCachePath());
if (!file.existsSync()) {
file.createSync(recursive: true);
}
_cachedMemories =
nowResult.memories.where((memory) => memory.shouldShowNow()).toList();
locationService.baseLocations = nowResult.baseLocations;
await file.writeAsBytes(
MemoriesCache.encodeToJsonString(newCache).codeUnits,
);
w?.log("cacheWritten");
await _cacheUpdated();
w?.logAndReset('_cacheUpdated method done');
} catch (e, s) {
_logger.info("Error updating memories cache", e, s);
} finally {
_isUpdateInProgress = false;
}
});
}
/// WARNING: Use for testing only, TODO: lau: remove later

View File

@ -176,7 +176,7 @@ class _FileSelectionActionsWidgetState
SelectionActionButton(
icon: Icons.remove_circle_outline,
labelText: S.of(context).notPersonLabel(widget.person!.data.name),
onTap: anyUploadedFiles ? _onNotpersonClicked : null,
onTap: _onNotpersonClicked,
),
);
if (ownedFilesCount == 1) {
@ -195,7 +195,7 @@ class _FileSelectionActionsWidgetState
SelectionActionButton(
labelText: S.of(context).notThisPerson,
icon: Icons.remove_circle_outline,
onTap: anyUploadedFiles ? _onRemoveFromClusterClicked : null,
onTap: _onRemoveFromClusterClicked,
),
);
}