Files
MrbWebLibre/apps/weblibre/lib/features/geckoview/domain/repositories/tab.dart
T
2026-07-07 17:45:10 +02:00

1181 lines
38 KiB
Dart

/*
* Copyright (c) 2024-2026 Fabian Freund.
*
* This file is part of WebLibre
* (see https://weblibre.eu).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import 'dart:async';
import 'package:collection/collection.dart';
import 'package:drift/drift.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter_mozilla_components/flutter_mozilla_components.dart';
import 'package:nullability/nullability.dart';
import 'package:riverpod_annotation/riverpod_annotation.dart';
import 'package:synchronized/synchronized.dart';
import 'package:weblibre/core/logger.dart';
import 'package:weblibre/core/routing/routes.dart';
import 'package:weblibre/extensions/uri.dart';
import 'package:weblibre/features/geckoview/domain/entities/states/tab.dart';
import 'package:weblibre/features/geckoview/domain/entities/tab_container_selection.dart';
import 'package:weblibre/features/geckoview/domain/providers.dart';
import 'package:weblibre/features/geckoview/domain/providers/pending_tab_selection.dart';
import 'package:weblibre/features/geckoview/domain/providers/restore_complete.dart';
import 'package:weblibre/features/geckoview/domain/providers/selected_tab.dart';
import 'package:weblibre/features/geckoview/domain/providers/tab_list.dart';
import 'package:weblibre/features/geckoview/domain/providers/tab_state.dart';
import 'package:weblibre/features/geckoview/features/browser/domain/services/browser_data.dart';
import 'package:weblibre/features/geckoview/features/tabs/data/database/database.dart';
import 'package:weblibre/features/geckoview/features/tabs/data/entities/isolation_context.dart';
import 'package:weblibre/features/geckoview/features/tabs/data/entities/tab_mode.dart';
import 'package:weblibre/features/geckoview/features/tabs/data/entities/tab_source.dart';
import 'package:weblibre/features/geckoview/features/tabs/data/models/container_data.dart';
import 'package:weblibre/features/geckoview/features/tabs/data/providers.dart';
import 'package:weblibre/features/geckoview/features/tabs/domain/providers/selected_container.dart';
import 'package:weblibre/features/geckoview/features/tabs/domain/repositories/container.dart';
import 'package:weblibre/features/geckoview/features/tabs/domain/repositories/tab.dart';
import 'package:weblibre/features/proxy/domain/repositories/container_proxy.dart';
import 'package:weblibre/features/user/data/models/general_settings.dart';
import 'package:weblibre/features/user/domain/repositories/general_settings.dart';
import 'package:weblibre/utils/debouncer.dart';
part 'tab.g.dart';
@visibleForTesting
ContainerData? resolveAssignedContainerForTabOpen({
required TabContainerSelection containerSelection,
required ContainerData? requestedContainer,
required ContainerData? siteAssignedContainer,
}) {
return switch (containerSelection) {
UseSelectedContainerTabSelection() =>
siteAssignedContainer ?? requestedContainer,
UnassignedContainerTabSelection() ||
SpecificContainerTabSelection() => requestedContainer,
};
}
sealed class TabBackPromptBehavior {
const TabBackPromptBehavior();
}
final class BackgroundAppTabBackPromptBehavior extends TabBackPromptBehavior {
const BackgroundAppTabBackPromptBehavior();
}
final class ReturnToSearchTabBackPromptBehavior extends TabBackPromptBehavior {
final TabType tabType;
const ReturnToSearchTabBackPromptBehavior({required this.tabType});
}
@Riverpod(keepAlive: true)
class TabRepository extends _$TabRepository {
final _tabsService = GeckoTabService();
final _sessionStartedAt = DateTime.now();
bool _didPruneTombstones = false;
bool _reclosing = false;
bool _suppressNextReclose = false;
final _tabBackPromptBehavior = <String, TabBackPromptBehavior>{};
final _closeLock = Lock();
final _pendingIsolationCleanup = <String>{};
TabBackPromptBehavior? backPromptBehaviorFor(String? tabId) {
if (tabId == null) {
return null;
}
return _tabBackPromptBehavior[tabId];
}
void clearBackPromptBehavior(String tabId) {
_tabBackPromptBehavior.remove(tabId);
}
Future<String?> _resolveParentIdForContext({
required String? parentId,
required String? targetContextId,
}) async {
if (parentId == null) {
return null;
}
final parentContainerData = await ref
.read(tabDatabaseProvider)
.tabDao
.getTabContainerData(parentId)
.getSingleOrNull();
final parentContextId = parentContainerData?.metadata.contextualIdentity;
return (parentContextId == targetContextId) ? parentId : null;
}
Future<String> addTab({
required TabMode tabMode,
Uri? url,
required bool selectTab,
bool startLoading = true,
String? parentId,
LoadUrlFlags flags = LoadUrlFlags.NONE,
Source source = Internal.newTab,
HistoryMetadataKey? historyMetadata,
Map<String, String>? additionalHeaders,
TabContainerSelection containerSelection =
const TabContainerSelection.useSelected(),
bool launchedFromIntent = false,
TabBackPromptBehavior? promptOnBackBehavior,
}) async {
final tabDao = ref.read(tabDatabaseProvider).tabDao;
var assignedContainer = switch (containerSelection) {
UseSelectedContainerTabSelection() =>
await ref.read(selectedContainerProvider.notifier).fetchData(),
UnassignedContainerTabSelection() => null,
SpecificContainerTabSelection(:final container) => container,
};
if (tabMode is RegularTabMode &&
url != null &&
url.hasAuthority &&
url.isHttpOrHttps) {
final siteAssignedContainerId = await ref
.read(containerRepositoryProvider.notifier)
.siteAssignedContainerId(url);
final siteAssignedContainer = await siteAssignedContainerId.mapNotNull(
(id) =>
ref.read(containerRepositoryProvider.notifier).getContainerData(id),
);
assignedContainer = resolveAssignedContainerForTabOpen(
containerSelection: containerSelection,
requestedContainer: assignedContainer,
siteAssignedContainer: siteAssignedContainer,
);
}
// For isolated tabs, skip parent context validation since
// isolated tabs use their own immutable context ID.
final validatedParentId = tabMode is IsolatedTabMode
? parentId
: await _resolveParentIdForContext(
parentId: parentId,
targetContextId: assignedContainer?.metadata.contextualIdentity,
);
final effectiveIsolationContextId = tabMode.isolationContextId;
final effectiveContextId = tabMode is IsolatedTabMode
? effectiveIsolationContextId
: assignedContainer?.metadata.contextualIdentity;
final newTabId = await tabDao.upsertTabTransactional(
() {
return _tabsService.addTab(
url: url,
selectTab: selectTab,
startLoading: startLoading,
parentId: validatedParentId,
flags: flags,
contextId: effectiveContextId,
source: source,
private: tabMode is PrivateTabMode,
historyMetadata: historyMetadata,
additionalHeaders: additionalHeaders,
);
},
parentId: Value(validatedParentId),
containerId: Value(assignedContainer?.id),
url: Value(url),
tabMode: Value(tabMode),
);
if (launchedFromIntent) {
_tabBackPromptBehavior[newTabId] =
promptOnBackBehavior ?? const BackgroundAppTabBackPromptBehavior();
} else if (promptOnBackBehavior != null) {
_tabBackPromptBehavior[newTabId] = promptOnBackBehavior;
}
if (selectTab && ref.mounted) {
final selectedContainerNotifier = ref.read(
selectedContainerProvider.notifier,
);
if (assignedContainer != null) {
await selectedContainerNotifier.setContainerId(assignedContainer.id);
} else {
selectedContainerNotifier.clearContainer();
}
}
return newTabId;
}
Future<bool> _closeRestoredPrivateCaptureTabs(List<String> tabIds) async {
if (tabIds.isEmpty) {
return false;
}
final captureRows = await ref
.read(tabDatabaseProvider)
.captureTabDao
.findAll();
final tabStates = ref.read(tabStatesProvider);
final restoredPrivateCaptureTabIds = captureRows
.where((row) => row.createdAt.isBefore(_sessionStartedAt))
.map((row) => row.tabId)
.where((tabId) => tabIds.contains(tabId))
.where((tabId) => tabStates[tabId]?.tabMode is PrivateTabMode)
.toList(growable: false);
if (restoredPrivateCaptureTabIds.isEmpty) {
return false;
}
await _closeTabsInternal(
restoredPrivateCaptureTabIds,
recordTombstones: false,
);
return true;
}
Future<List<String>> addMultipleTabs({
required List<AddTabParams> tabs,
String? selectTabId,
TabContainerSelection containerSelection =
const TabContainerSelection.unassigned(),
}) async {
final tabDao = ref.read(tabDatabaseProvider).tabDao;
final db = ref.read(tabDatabaseProvider);
final assignedContainer = switch (containerSelection) {
UseSelectedContainerTabSelection() =>
await ref.read(selectedContainerProvider.notifier).fetchData(),
UnassignedContainerTabSelection() => null,
SpecificContainerTabSelection(:final container) => container,
};
return await db.transaction(() async {
final createdTabIds = await _tabsService.addMultipleTabs(
tabs: tabs,
selectTabId: selectTabId,
);
// Build sets for validation
final creatingTabIds = createdTabIds.toSet();
final parentIdsToValidate = tabs
.map((tab) => tab.parentId)
.whereType<String>()
.where((id) => !creatingTabIds.contains(id))
.toSet();
// Batch validate parent IDs that aren't in the current creation batch
final existingParentIds = await tabDao
.getExistingTabIds(parentIdsToValidate)
.get()
.then((ids) => ids.toSet());
// Upsert all tabs in the database
for (var i = 0; i < createdTabIds.length; i++) {
final tabId = createdTabIds[i];
final tab = tabs[i];
// Validate parent exists in either the batch being created or database
String? validatedParentId;
if (tab.parentId != null) {
if (creatingTabIds.contains(tab.parentId) ||
existingParentIds.contains(tab.parentId)) {
validatedParentId = tab.parentId;
}
}
await tabDao.insertTab(
tabId,
parentId: Value(validatedParentId),
source: TabSource.manual,
containerId: Value(assignedContainer?.id),
url: Value(Uri.tryParse(tab.url)),
tabMode: Value(
isIsolatedContextId(tab.contextId)
? TabMode.isolated(tab.contextId!)
: tab.private
? TabMode.private
: TabMode.regular,
),
);
}
return createdTabIds;
});
}
Future<String> duplicateTab({
required String selectTabId,
required ContainerData? containerData,
required bool selectTab,
}) async {
final tabDao = ref.read(tabDatabaseProvider).tabDao;
final sourceTabMode =
await tabDao.getTabMode(selectTabId).getSingleOrNull() ??
TabMode.regular;
// Duplicating an isolated tab creates a new isolation group
final duplicateIsolationContextId = sourceTabMode is IsolatedTabMode
? newIsolatedContextId()
: null;
final duplicateTabMode = sourceTabMode is IsolatedTabMode
? TabMode.isolated(duplicateIsolationContextId!)
: sourceTabMode;
// Isolated tabs always use their isolation context ID
final effectiveContextId = sourceTabMode is IsolatedTabMode
? duplicateIsolationContextId
: containerData?.metadata.contextualIdentity;
// Place the duplicate as a sibling of the source — same parent — and
// insert it right after the source's full subtree, so existing
// children of the source are not split from their parent.
final sourceData = await tabDao
.getTabDataById(selectTabId)
.getSingleOrNull();
final sourceParentId = sourceData?.parentId;
final anchorTabId =
await tabDao
.lastSubtreeTabIdByOrderKey(
selectTabId,
containerId: containerData?.id,
)
.getSingleOrNull() ??
selectTabId;
return await tabDao.upsertTabTransactional(
() {
return _tabsService.duplicateTab(
selectTabId: selectTabId,
newContextId: effectiveContextId,
selectNewTab: selectTab,
);
},
parentId: Value(sourceParentId),
afterTabId: Value(anchorTabId),
containerId: Value(containerData?.id),
tabMode: Value(duplicateTabMode),
);
}
Future<bool> selectPreviouslyOpenedTab(String tabId) async {
final previousTabId = await ref
.read(tabDatabaseProvider)
.definitionsDrift
.previousTabByTimestamp(tabId: tabId)
.getSingleOrNull();
if (ref.mounted && previousTabId != null) {
return selectTab(previousTabId);
}
return false;
}
Future<bool> resumeLatestTab() async {
final latestTab = await ref
.read(tabDatabaseProvider)
.tabDao
.getTabsFifo(limit: 1)
.getSingleOrNull();
if (!ref.mounted || latestTab == null) {
return false;
}
return selectTab(latestTab.id);
}
Future<bool> resumeLatestContainerTab(String? containerId) async {
final latestTab = await ref
.read(tabDatabaseProvider)
.tabDao
.getContainerTabsFifo(containerId, limit: 1)
.getSingleOrNull();
if (!ref.mounted || latestTab == null) {
return false;
}
return selectTab(latestTab.id);
}
Future<bool> selectPreviousTab(
String tabId, {
String? containerId,
bool skipContainerCheck = true,
}) async {
final previousTabId = await _adjacentVisibleTabByOrder(
tabId,
containerId: containerId,
skipContainerCheck: skipContainerCheck,
selectPrevious: true,
);
if (ref.mounted && previousTabId != null) {
return selectTab(previousTabId);
}
return false;
}
Future<bool> selectNextTab(
String tabId, {
String? containerId,
bool skipContainerCheck = true,
}) async {
final previousTabId = await _adjacentVisibleTabByOrder(
tabId,
containerId: containerId,
skipContainerCheck: skipContainerCheck,
selectPrevious: false,
);
if (ref.mounted && previousTabId != null) {
return selectTab(previousTabId);
}
return false;
}
Future<bool> selectTab(String tabId) async {
// The tab is still a pre-restore placeholder (known to the DB but not to
// the engine yet): queue the selection until the native state arrives.
if (!ref.read(browserRestoreCompleteProvider) &&
!ref.read(tabStatesProvider).containsKey(tabId)) {
ref.read(pendingTabSelectionProvider.notifier).queue(tabId);
return true;
}
final containerData = await ref
.read(tabDataRepositoryProvider.notifier)
.getTabContainerData(tabId);
if (!ref.mounted) return false;
if (containerData != null) {
if (containerData.metadata.proxyConnectionId != null) {
final proxyPluginHealthy = await GeckoContainerProxyService()
.healthcheck();
if (!proxyPluginHealthy) {
logger.w(
'Tried to open proxied tab $tabId but proxy plugin not responding',
);
return false;
}
}
}
await _tabsService.selectTab(tabId: tabId);
return true;
}
Future<String?> _adjacentVisibleTabByOrder(
String tabId, {
required String? containerId,
required bool skipContainerCheck,
required bool selectPrevious,
}) {
// "Previous/next" here is interpreted relative to the *tab bar*
// direction, even when the user triggered the navigation from the tab
// tray (which has its own `tabListDirection`). If the two settings
// disagree, "next tab" while looking at the tray flows by tab-bar
// direction. Treat as intentional — keyboard / gesture navigation is
// anchored to the bar's mental model.
final newestFirst =
ref.read(generalSettingsWithDefaultsProvider).tabBarDirection ==
TabDirection.newestFirst;
final TabDatabase tabDatabase = ref.read(tabDatabaseProvider);
final definitions = tabDatabase.definitionsDrift;
if (newestFirst == selectPrevious) {
return definitions
.nextTabByOrderKey(
tabId: tabId,
containerId: containerId,
skipContainerCheck: skipContainerCheck,
)
.getSingleOrNull();
}
return definitions
.previousTabByOrderKey(
tabId: tabId,
containerId: containerId,
skipContainerCheck: skipContainerCheck,
)
.getSingleOrNull();
}
Future<String?> _nearestAvailableVisibleTabByOrder(
String tabId, {
required String? containerId,
required Set<String> excludedTabIds,
}) async {
Future<String?> walkDirection({required bool selectPrevious}) async {
var candidate = await _adjacentVisibleTabByOrder(
tabId,
containerId: containerId,
skipContainerCheck: false,
selectPrevious: selectPrevious,
);
while (candidate != null) {
if (!excludedTabIds.contains(candidate)) {
return candidate;
}
candidate = await _adjacentVisibleTabByOrder(
candidate,
containerId: containerId,
skipContainerCheck: false,
selectPrevious: selectPrevious,
);
}
return null;
}
return await walkDirection(selectPrevious: true) ??
await walkDirection(selectPrevious: false);
}
Future<void> _selectNextTab(
String tabId, {
Set<String> excludedTabIds = const {},
}) async {
final tabState = ref.read(tabStatesProvider)[tabId];
final currentContainerId = await ref
.read(tabDataRepositoryProvider.notifier)
.getTabContainerId(tabId);
if (!ref.mounted) return;
final sameContainerTabs = await ref
.read(containerRepositoryProvider.notifier)
.getContainerTabIds(currentContainerId)
.then(
(tabs) => tabs
.where((tab) => tab != tabId && !excludedTabIds.contains(tab))
.toList(),
);
if (!ref.mounted) return;
// Priority 1: Check for parent tab first
if (tabState?.parentId != null) {
final parentId = tabState!.parentId!;
if (!excludedTabIds.contains(parentId)) {
return _tabsService.selectTab(tabId: parentId);
}
}
// Priority 2: Check for previous tab by timestamp
final previousTabId = await ref
.read(tabDatabaseProvider)
.definitionsDrift
.previousTabByTimestamp(tabId: tabId)
.getSingleOrNull();
if (previousTabId != null) {
if (sameContainerTabs.any((tab) => tab == previousTabId)) {
return _tabsService.selectTab(tabId: previousTabId);
}
}
if (!ref.mounted) return;
final orderedNeighborTabId = await _nearestAvailableVisibleTabByOrder(
tabId,
containerId: currentContainerId,
excludedTabIds: excludedTabIds,
);
if (orderedNeighborTabId != null) {
return _tabsService.selectTab(tabId: orderedNeighborTabId);
}
if (!ref.mounted) return;
final unassignedTabs = await ref
.read(containerRepositoryProvider.notifier)
.getContainerTabIds(null)
.then(
(tabs) => tabs
.where((tab) => tab != tabId && !excludedTabIds.contains(tab))
.toList(),
);
if (unassignedTabs.isNotEmpty) {
return _tabsService.selectTab(tabId: unassignedTabs.first);
}
if (!ref.mounted) return;
final availableContainers = await ref
.read(containerRepositoryProvider.notifier)
.getAllContainersWithCount();
final nextAvailableContainer = availableContainers.firstOrNull;
if (!ref.mounted) return;
final nextContainerTabs = await nextAvailableContainer.mapNotNull(
(container) => ref
.read(containerRepositoryProvider.notifier)
.getContainerTabIds(container.id)
.then(
(tabs) => tabs
.where((tab) => tab != tabId && !excludedTabIds.contains(tab))
.toList(),
),
);
if (nextContainerTabs.isNotEmpty) {
return _tabsService.selectTab(tabId: nextContainerTabs!.first);
}
}
Future<void> _closeTabsInternal(
List<String> tabIds, {
required bool recordTombstones,
}) {
return _closeLock.synchronized(() async {
if (tabIds.isEmpty) {
return;
}
if (recordTombstones) {
await ref
.read(tabDatabaseProvider)
.tabDao
.addClosedTabTombstones(tabIds);
}
for (final tabId in tabIds) {
_tabBackPromptBehavior.remove(tabId);
final isolationContextId = ref
.read(tabStatesProvider)[tabId]
?.isolationContextId;
if (isolationContextId != null) {
_pendingIsolationCleanup.add(isolationContextId);
}
}
final selectedTab = ref.read(selectedTabProvider);
if (selectedTab.mapNotNull(tabIds.contains) ?? false) {
await _selectNextTab(selectedTab!, excludedTabIds: tabIds.toSet());
}
await _preservePromotedChildOrderOnClose(tabIds);
if (tabIds.length == 1) {
await _tabsService.removeTab(tabId: tabIds.single);
} else {
await _tabsService.removeTabs(ids: tabIds);
}
});
}
Future<void> closeTab(String tabId) {
return _closeTabsInternal([tabId], recordTombstones: true);
}
Future<void> closeTabs(List<String> tabIds) {
return _closeTabsInternal(tabIds, recordTombstones: true);
}
Future<void> _clearTombstonesForCurrentTabs(List<String> tabIds) {
return ref
.read(tabDatabaseProvider)
.tabDao
.deleteClosedTabTombstones(tabIds);
}
Future<void> _preservePromotedChildOrderOnClose(List<String> tabIds) {
return ref
.read(tabDatabaseProvider)
.tabDao
.preservePromotedChildOrderOnClose(tabIds);
}
/// Clears Gecko browsing data and removes proxy alias for an isolation
/// context if no more tabs share it.
Future<void> _cleanupIsolationContextIfEmpty(String contextId) async {
final tabDao = ref.read(tabDatabaseProvider).tabDao;
// Re-verify count after close (handles concurrent close races)
final remaining = await tabDao.tabsInIsolationGroup(contextId).getSingle();
if (remaining > 0) return;
// Guard against debounced DB persistence: a sibling tab can already be
// active in-memory for this context before isolation_context_id is written.
final activeTabs = ref.read(tabListProvider).value;
final activeStates = ref.read(tabStatesProvider);
final hasActiveSibling = activeTabs.any((tabId) {
final state = activeStates[tabId];
if (state == null) return false;
return state.isolationContextId == contextId ||
state.contextId == contextId;
});
if (hasActiveSibling) {
logger.i(
'Skipping isolation cleanup for active context still in memory: $contextId',
);
return;
}
logger.i('Cleaning up isolation context: $contextId');
// Clear Gecko browsing data for this context
try {
await ref
.read(browserDataServiceProvider.notifier)
.clearDataForContext(contextId);
} catch (e, st) {
logger.e(
'Failed to clear data for isolation context $contextId',
error: e,
stackTrace: st,
);
}
// Best-effort: remove proxy alias (no-op if never set)
try {
await ref
.read(containerProxyRepositoryProvider.notifier)
.clearContainerProxy(contextId);
} catch (e, st) {
logger.e(
'Failed to remove proxy for isolation context $contextId',
error: e,
stackTrace: st,
);
}
}
Future<void> _drainPendingIsolationCleanup() async {
if (_pendingIsolationCleanup.isEmpty) return;
final pending = Set<String>.of(_pendingIsolationCleanup);
_pendingIsolationCleanup.clear();
for (final contextId in pending) {
if (!ref.mounted) break;
await _cleanupIsolationContextIfEmpty(contextId);
}
}
Future<void> undoClose() {
// Suppress the next reclose pass: undo can resurrect a tab whose
// tombstone is still on disk (from a previous session); without this
// flag the listener would immediately re-close it.
_suppressNextReclose = true;
return _tabsService.undo();
}
Future<bool> _recloseRestoredClosedTabs(List<String> tabIds) async {
if (_reclosing) {
return false;
}
_reclosing = true;
try {
final tabDao = ref.read(tabDatabaseProvider).tabDao;
if (!_didPruneTombstones) {
await tabDao.pruneExpiredClosedTabTombstones();
_didPruneTombstones = true;
}
final restoredClosedTabIds = await tabDao.getStartupRestoredClosedTabIds(
tabIds,
sessionStartedAt: _sessionStartedAt,
);
if (restoredClosedTabIds.isEmpty) {
return false;
}
// recordTombstones: false — the tombstone already exists from the
// original close; rewriting it would bump closed_at into this session
// and disable the resurrection check on the next emission.
await _closeTabsInternal(
restoredClosedTabIds.toList(growable: false),
recordTombstones: false,
);
return true;
} finally {
_reclosing = false;
}
}
/// Cleans up isolation contexts from previous crashed sessions.
/// Called once after tab list stabilizes on startup.
// Future<void> _cleanupOrphanedIsolationContexts() async {
// final tabDao = ref.read(tabDatabaseProvider).tabDao;
// try {
// await _closeLock.synchronized(() async {
// if (!ref.mounted) return;
// // Reconcile DB rows against the current engine tab snapshot, including
// // valid empty-tab sessions (retainTabIds can be empty here).
// final syncTabsResult = await tabDao.syncTabs(
// retainTabIds: ref.read(tabListProvider).value,
// );
// _pendingIsolationCleanup.addAll(
// syncTabsResult.deletedIsolationContextIds,
// );
// if (_pendingIsolationCleanup.isNotEmpty) {
// final pending = Set<String>.of(_pendingIsolationCleanup);
// _pendingIsolationCleanup.clear();
// for (final contextId in pending) {
// if (!ref.mounted) return;
// logger.i('Cleaning orphaned isolation context: $contextId');
// await _cleanupIsolationContextIfEmpty(contextId);
// }
// }
// });
// } catch (e, st) {
// logger.e(
// 'Error during orphan isolation context cleanup',
// error: e,
// stackTrace: st,
// );
// }
// }
@override
void build() {
final eventSerivce = ref.watch(eventServiceProvider);
final tabContentService = ref.watch(tabContentServiceProvider);
final db = ref.watch(tabDatabaseProvider);
final tabAddedSub = eventSerivce.tabAddedStream.listen(
(tabId) async {
final containerId = ref.read(selectedContainerProvider);
await db.tabDao.insertTab(
tabId,
parentId: const Value.absent(),
source: TabSource.addedEvent,
containerId: Value(containerId),
);
},
onError: (Object error, StackTrace stackTrace) {
logger.e(
'Error in tab added stream',
error: error,
stackTrace: stackTrace,
);
},
);
final containerSiteAssignementSub = eventSerivce.siteAssignementEvent.listen(
(event) async {
// Strict-mode blocks have no destination container to re-open into; the
// navigation was already cancelled natively and the user is notified via
// a snackbar (see the strict-block listener in the app shell). Nothing
// to reconcile here.
if (event.strict) {
return;
}
final tabId = event.tabId;
if (tabId != null) {
final tabState = ref.read(tabStatesProvider)[tabId];
if (tabState != null) {
final uri = Uri.parse(event.url);
final originUri = event.originUrl.mapNotNull(Uri.parse);
final targetContainerId = await ref
.read(containerRepositoryProvider.notifier)
.siteAssignedContainerId(Uri.parse(uri.origin));
if (!ref.mounted) {
return;
}
final containerData = await targetContainerId.mapNotNull(
(id) => ref
.read(containerRepositoryProvider.notifier)
.getContainerData(id),
);
if (!ref.mounted) {
return;
}
if (containerData != null) {
final currentTabState = ref.read(tabStatesProvider)[tabId];
if (currentTabState == null) {
logger.w('Could not get tab for assignement ${event.url}');
return;
}
// The tab is already in the target container, so there is nothing
// to reconcile. This notably fires when reassigning a tab into a
// container that shares the default Gecko context: assignContainer
// recreates the tab in the target container, and that new tab's
// load re-triggers this event. Without this guard the transiently
// empty new tab would be treated as an empty tab and churn yet
// another tab (re-prompting app-links).
final currentTabContainerId = await ref
.read(tabDataRepositoryProvider.notifier)
.getTabContainerId(currentTabState.id);
if (!ref.mounted) {
return;
}
if (currentTabContainerId == targetContainerId) {
return;
}
final tabIsEmpty =
currentTabState.url == TabState.defaultUrl &&
currentTabState.historyState.items.isEmpty;
if (event.blocked || tabIsEmpty) {
final newTabId = await addTab(
url: uri,
tabMode: currentTabState.tabMode,
containerSelection: TabContainerSelection.specific(
containerData,
),
parentId: currentTabState.id,
selectTab: true,
);
if (!ref.mounted) {
return;
}
if (currentTabState.historyState.items.isEmpty) {
await closeTab(currentTabState.id);
if (!ref.mounted) {
return;
}
await selectTab(newTabId);
}
} else {
final latestTabState = ref.read(tabStatesProvider)[tabId];
if (latestTabState == null) {
logger.w('Could not get tab for assignement ${event.url}');
return;
}
if (originUri == null) {
await ref
.read(tabDataRepositoryProvider.notifier)
.assignContainer(
latestTabState.id,
containerData,
replacementUrl: uri,
);
} else if (latestTabState.url == originUri) {
await ref
.read(tabDataRepositoryProvider.notifier)
.assignContainer(
latestTabState.id,
containerData,
closeOldTab: false,
replacementUrl: uri,
);
} else {
logger.w(
'Could not match origin url for assignment ${latestTabState.url} to request ${event.originUrl}',
);
}
}
}
} else {
logger.w('Could not get tab for assignement ${tabState?.url}');
}
}
},
onError: (Object error, StackTrace stackTrace) {
logger.e(
'Error in container site assignment stream',
error: error,
stackTrace: stackTrace,
);
},
);
final tabContentSub = tabContentService.tabContentStream.listen(
(content) async {
await db.tabDao.updateTabContent(
content.tabId,
isProbablyReaderable: content.isProbablyReaderable,
extractedContentMarkdown: content.extractedContentMarkdown,
extractedContentPlain: content.extractedContentPlain,
fullContentMarkdown: content.fullContentMarkdown,
fullContentPlain: content.fullContentPlain,
);
},
onError: (Object error, StackTrace stackTrace) {
logger.e(
'Error in tab content stream',
error: error,
stackTrace: stackTrace,
);
},
);
ref.listen(
fireImmediately: true,
selectedTabProvider,
(previous, tabId) async {
if (tabId != null) {
await db.tabDao.touchTab(tabId, timestamp: DateTime.now());
}
},
onError: (Object error, StackTrace stackTrace) {
logger.e(
'Error listening to selectedTabProvider',
error: error,
stackTrace: stackTrace,
);
},
);
ref.listen(
tabListProvider,
(previous, next) async {
if (_suppressNextReclose) {
_suppressNextReclose = false;
// Drop tombstones for the tabs that just came back via undo so
// future emissions don't treat them as resurrections.
await _clearTombstonesForCurrentTabs(next.value);
} else if (await _recloseRestoredClosedTabs(next.value)) {
return;
} else if (await _closeRestoredPrivateCaptureTabs(next.value)) {
return;
}
//Only sync tabs if there has been a previous value or is not empty.
//Additionally require the native session restore to have completed:
//a partial pre-restore list (e.g. a share-intent tab arriving first)
//must not delete the cached rows of tabs that are still being
//restored.
final shouldSyncTabs =
ref.read(browserRestoreCompleteProvider) &&
(next.value.isNotEmpty || (previous?.value.isNotEmpty ?? false));
if (shouldSyncTabs) {
final syncTabsResult = await db.tabDao.syncTabs(
retainTabIds: next.value,
);
// Capture isolation contexts from rows deleted by syncTabs
// (orphaned tabs from crashes, or tabs the engine dropped).
_pendingIsolationCleanup.addAll(
syncTabsResult.deletedIsolationContextIds,
);
}
// Process pending isolation context cleanups after syncTabs
// has deleted the rows, so the count check is accurate.
await _drainPendingIsolationCleanup();
// One-shot orphan cleanup after tab list stabilizes (5s debounce).
// Also runs for DB-only contexts whose rows were already deleted
// by syncTabs above (those are handled via _pendingIsolationCleanup).
// if (!orphanCleanupDone) {
// orphanCleanupTimer?.cancel();
// orphanCleanupTimer = Timer(const Duration(seconds: 5), () async {
// if (orphanCleanupDone || !ref.mounted) return;
// orphanCleanupDone = true;
// await _cleanupOrphanedIsolationContexts();
// });
// }
},
onError: (Object error, StackTrace stackTrace) {
logger.e(
'Error listening to tabListProvider',
error: error,
stackTrace: stackTrace,
);
},
);
// Catch up on the tab list emissions skipped while the restore-complete
// gate above was closed: reconcile the DB once against the current list.
ref.listen(browserRestoreCompleteProvider, (
previous,
restoreComplete,
) async {
if (restoreComplete && !(previous ?? false)) {
final currentTabs = ref.read(tabListProvider).value;
if (currentTabs.isNotEmpty) {
final syncTabsResult = await db.tabDao.syncTabs(
retainTabIds: currentTabs,
);
_pendingIsolationCleanup.addAll(
syncTabsResult.deletedIsolationContextIds,
);
await _drainPendingIsolationCleanup();
}
}
});
final tabStateDebouncer = Debouncer(const Duration(seconds: 1));
Map<String, TabState>? debounceStartValue;
ref.listen(
tabStatesProvider,
(previous, next) {
//Since state changes occure pretty often and our map always contains
//the latest state, we cache the value before starting debouncing and
//later diff to that, to avoid frequent database writes
if (!tabStateDebouncer.isDebouncing) {
debounceStartValue = previous;
}
tabStateDebouncer.eventOccured(() async {
await db.tabDao.updateTabs(debounceStartValue, next);
});
},
onError: (Object error, StackTrace stackTrace) {
logger.e(
'Error listening to tabStatesProvider',
error: error,
stackTrace: stackTrace,
);
},
);
ref.onDispose(() async {
tabStateDebouncer.dispose();
await tabAddedSub.cancel();
await tabContentSub.cancel();
await containerSiteAssignementSub.cancel();
});
}
}