227 lines
7.2 KiB
Dart
227 lines
7.2 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:aves/model/entry.dart';
|
|
import 'package:aves/model/filters/album.dart';
|
|
import 'package:aves/model/filters/filters.dart';
|
|
import 'package:aves/model/source/collection_source.dart';
|
|
import 'package:aves/services/common/services.dart';
|
|
import 'package:aves/utils/android_file_utils.dart';
|
|
import 'package:collection/collection.dart';
|
|
import 'package:equatable/equatable.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/painting.dart';
|
|
import 'package:tuple/tuple.dart';
|
|
|
|
final Covers covers = Covers._private();
|
|
|
|
class Covers {
|
|
final StreamController<Set<CollectionFilter>?> _entryChangeStreamController = StreamController.broadcast();
|
|
final StreamController<Set<CollectionFilter>?> _packageChangeStreamController = StreamController.broadcast();
|
|
final StreamController<Set<CollectionFilter>?> _colorChangeStreamController = StreamController.broadcast();
|
|
|
|
Stream<Set<CollectionFilter>?> get entryChangeStream => _entryChangeStreamController.stream;
|
|
|
|
Stream<Set<CollectionFilter>?> get packageChangeStream => _packageChangeStreamController.stream;
|
|
|
|
Stream<Set<CollectionFilter>?> get colorChangeStream => _colorChangeStreamController.stream;
|
|
|
|
Set<CoverRow> _rows = {};
|
|
|
|
Covers._private();
|
|
|
|
Future<void> init() async {
|
|
_rows = await metadataDb.loadAllCovers();
|
|
}
|
|
|
|
int get count => _rows.length;
|
|
|
|
Set<CoverRow> get all => Set.unmodifiable(_rows);
|
|
|
|
Tuple3<int?, String?, Color?>? of(CollectionFilter filter) {
|
|
final row = _rows.firstWhereOrNull((row) => row.filter == filter);
|
|
return row != null ? Tuple3(row.entryId, row.packageName, row.color) : null;
|
|
}
|
|
|
|
Future<void> set({
|
|
required CollectionFilter filter,
|
|
required int? entryId,
|
|
required String? packageName,
|
|
required Color? color,
|
|
}) async {
|
|
// erase contextual properties from filters before saving them
|
|
if (filter is AlbumFilter) {
|
|
filter = AlbumFilter(filter.album, null);
|
|
}
|
|
|
|
final oldRows = _rows.where((row) => row.filter == filter).toSet();
|
|
_rows.removeAll(oldRows);
|
|
await metadataDb.removeCovers({filter});
|
|
|
|
final oldRow = oldRows.firstOrNull;
|
|
final oldEntry = oldRow?.entryId;
|
|
final oldPackage = oldRow?.packageName;
|
|
final oldColor = oldRow?.color;
|
|
|
|
if (entryId != null || packageName != null || color != null) {
|
|
final row = CoverRow(
|
|
filter: filter,
|
|
entryId: entryId,
|
|
packageName: packageName,
|
|
color: color,
|
|
);
|
|
_rows.add(row);
|
|
await metadataDb.addCovers({row});
|
|
}
|
|
|
|
if (oldEntry != entryId) _entryChangeStreamController.add({filter});
|
|
if (oldPackage != packageName) _packageChangeStreamController.add({filter});
|
|
if (oldColor != color) _colorChangeStreamController.add({filter});
|
|
}
|
|
|
|
Future<void> _removeEntryFromRows(Set<CoverRow> rows) {
|
|
return Future.forEach<CoverRow>(
|
|
rows,
|
|
(row) => set(
|
|
filter: row.filter,
|
|
entryId: null,
|
|
packageName: row.packageName,
|
|
color: row.color,
|
|
));
|
|
}
|
|
|
|
Future<void> moveEntry(AvesEntry entry) async {
|
|
final entryId = entry.id;
|
|
await _removeEntryFromRows(_rows.where((row) => row.entryId == entryId && !row.filter.test(entry)).toSet());
|
|
}
|
|
|
|
Future<void> removeIds(Set<int> entryIds) async {
|
|
await _removeEntryFromRows(_rows.where((row) => entryIds.contains(row.entryId)).toSet());
|
|
}
|
|
|
|
Future<void> clear() async {
|
|
await metadataDb.clearCovers();
|
|
_rows.clear();
|
|
|
|
_entryChangeStreamController.add(null);
|
|
_packageChangeStreamController.add(null);
|
|
_colorChangeStreamController.add(null);
|
|
}
|
|
|
|
AlbumType effectiveAlbumType(String albumPath) {
|
|
final filterPackage = of(AlbumFilter(albumPath, null))?.item2;
|
|
if (filterPackage != null) {
|
|
return filterPackage.isEmpty ? AlbumType.regular : AlbumType.app;
|
|
} else {
|
|
return androidFileUtils.getAlbumType(albumPath);
|
|
}
|
|
}
|
|
|
|
String? effectiveAlbumPackage(String albumPath) {
|
|
final filterPackage = of(AlbumFilter(albumPath, null))?.item2;
|
|
return filterPackage ?? androidFileUtils.getAlbumAppPackageName(albumPath);
|
|
}
|
|
|
|
// import/export
|
|
|
|
List<Map<String, dynamic>>? export(CollectionSource source) {
|
|
final visibleEntries = source.visibleEntries;
|
|
final jsonList = covers.all
|
|
.map((row) {
|
|
final entryId = row.entryId;
|
|
final path = visibleEntries.firstWhereOrNull((entry) => entryId == entry.id)?.path;
|
|
final volume = androidFileUtils.getStorageVolume(path)?.path;
|
|
final relativePath = volume != null ? path?.substring(volume.length) : null;
|
|
final packageName = row.packageName;
|
|
final colorValue = row.color?.value;
|
|
|
|
return {
|
|
'filter': row.filter.toJson(),
|
|
if (volume != null) 'volume': volume,
|
|
if (relativePath != null) 'relativePath': relativePath,
|
|
if (packageName != null) 'packageName': packageName,
|
|
if (colorValue != null) 'color': colorValue,
|
|
};
|
|
})
|
|
.whereNotNull()
|
|
.toList();
|
|
return jsonList.isNotEmpty ? jsonList : null;
|
|
}
|
|
|
|
void import(dynamic jsonList, CollectionSource source) {
|
|
if (jsonList is! List) {
|
|
debugPrint('failed to import covers for jsonMap=$jsonList');
|
|
return;
|
|
}
|
|
|
|
final visibleEntries = source.visibleEntries;
|
|
jsonList.forEach((row) {
|
|
final filter = CollectionFilter.fromJson(row['filter']);
|
|
if (filter == null) {
|
|
debugPrint('failed to import cover for row=$row');
|
|
return;
|
|
}
|
|
|
|
final volume = row['volume'] as String?;
|
|
final relativePath = row['relativePath'] as String?;
|
|
final packageName = row['packageName'] as String?;
|
|
final colorValue = row['color'] as int?;
|
|
|
|
AvesEntry? entry;
|
|
if (volume != null && relativePath != null) {
|
|
final path = pContext.join(volume, relativePath);
|
|
entry = visibleEntries.firstWhereOrNull((entry) => entry.path == path && filter.test(entry));
|
|
if (entry == null) {
|
|
debugPrint('failed to import cover entry for path=$path, filter=$filter');
|
|
}
|
|
}
|
|
|
|
if (entry != null || packageName != null || colorValue != null) {
|
|
covers.set(
|
|
filter: filter,
|
|
entryId: entry?.id,
|
|
packageName: packageName,
|
|
color: colorValue != null ? Color(colorValue) : null,
|
|
);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
@immutable
|
|
class CoverRow extends Equatable {
|
|
final CollectionFilter filter;
|
|
final int? entryId;
|
|
final String? packageName;
|
|
final Color? color;
|
|
|
|
@override
|
|
List<Object?> get props => [filter, entryId, packageName, color];
|
|
|
|
const CoverRow({
|
|
required this.filter,
|
|
required this.entryId,
|
|
required this.packageName,
|
|
required this.color,
|
|
});
|
|
|
|
static CoverRow? fromMap(Map map) {
|
|
final filter = CollectionFilter.fromJson(map['filter']);
|
|
if (filter == null) return null;
|
|
|
|
final colorValue = map['color'] as int?;
|
|
final color = colorValue != null ? Color(colorValue) : null;
|
|
return CoverRow(
|
|
filter: filter,
|
|
entryId: map['entryId'] as int?,
|
|
packageName: map['packageName'] as String?,
|
|
color: color,
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> toMap() => {
|
|
'filter': filter.toJson(),
|
|
'entryId': entryId,
|
|
'packageName': packageName,
|
|
'color': color?.value,
|
|
};
|
|
}
|