mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-07-06 16:56:41 +10:00
Refactor unread message tracking and implement channel caching (#126)
* Refactor unread message tracking and implement channel caching * formatted files
This commit is contained in:
@@ -24,6 +24,7 @@ import '../services/notification_service.dart';
|
||||
import '../storage/channel_message_store.dart';
|
||||
import '../storage/channel_order_store.dart';
|
||||
import '../storage/channel_settings_store.dart';
|
||||
import '../storage/channel_store.dart';
|
||||
import '../storage/contact_settings_store.dart';
|
||||
import '../storage/contact_store.dart';
|
||||
import '../storage/message_store.dart';
|
||||
@@ -139,14 +140,15 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
final ChannelSettingsStore _channelSettingsStore = ChannelSettingsStore();
|
||||
final ContactSettingsStore _contactSettingsStore = ContactSettingsStore();
|
||||
final ContactStore _contactStore = ContactStore();
|
||||
final ChannelStore _channelStore = ChannelStore();
|
||||
final UnreadStore _unreadStore = UnreadStore();
|
||||
List<Channel> _cachedChannels = [];
|
||||
final Map<int, bool> _channelSmazEnabled = {};
|
||||
bool _lastSentWasCliCommand =
|
||||
false; // Track if last sent message was a CLI command
|
||||
final Map<String, bool> _contactSmazEnabled = {};
|
||||
final Set<String> _knownContactKeys = {};
|
||||
final Map<String, int> _contactLastReadMs = {};
|
||||
final Map<int, int> _channelLastReadMs = {};
|
||||
final Map<String, int> _contactUnreadCount = {};
|
||||
bool _unreadStateLoaded = false;
|
||||
final Map<String, _RepeaterAckContext> _pendingRepeaterAcks = {};
|
||||
String? _activeContactKey;
|
||||
@@ -321,17 +323,7 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
int getUnreadCountForContactKey(String contactKeyHex) {
|
||||
if (!_unreadStateLoaded) return 0;
|
||||
if (!_shouldTrackUnreadForContactKey(contactKeyHex)) return 0;
|
||||
final messages = _conversations[contactKeyHex];
|
||||
if (messages == null || messages.isEmpty) return 0;
|
||||
final lastReadMs = _contactLastReadMs[contactKeyHex] ?? 0;
|
||||
var count = 0;
|
||||
for (final message in messages) {
|
||||
if (message.isOutgoing || message.isCli) continue;
|
||||
if (message.timestamp.millisecondsSinceEpoch > lastReadMs) {
|
||||
count++;
|
||||
}
|
||||
}
|
||||
return count;
|
||||
return _contactUnreadCount[contactKeyHex] ?? 0;
|
||||
}
|
||||
|
||||
int getUnreadCountForChannel(Channel channel) {
|
||||
@@ -340,17 +332,7 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
|
||||
int getUnreadCountForChannelIndex(int channelIndex) {
|
||||
if (!_unreadStateLoaded) return 0;
|
||||
final messages = _channelMessages[channelIndex];
|
||||
if (messages == null || messages.isEmpty) return 0;
|
||||
final lastReadMs = _channelLastReadMs[channelIndex] ?? 0;
|
||||
var count = 0;
|
||||
for (final message in messages) {
|
||||
if (message.isOutgoing) continue;
|
||||
if (message.timestamp.millisecondsSinceEpoch > lastReadMs) {
|
||||
count++;
|
||||
}
|
||||
}
|
||||
return count;
|
||||
return _findChannelByIndex(channelIndex)?.unreadCount ?? 0;
|
||||
}
|
||||
|
||||
int getTotalUnreadCount() {
|
||||
@@ -380,16 +362,17 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
}
|
||||
|
||||
Future<void> loadUnreadState() async {
|
||||
_contactLastReadMs
|
||||
_contactUnreadCount
|
||||
..clear()
|
||||
..addAll(await _unreadStore.loadContactLastRead());
|
||||
_channelLastReadMs
|
||||
..clear()
|
||||
..addAll(await _unreadStore.loadChannelLastRead());
|
||||
..addAll(await _unreadStore.loadContactUnreadCount());
|
||||
_unreadStateLoaded = true;
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
Future<void> loadCachedChannels() async {
|
||||
_cachedChannels = await _channelStore.loadChannels();
|
||||
}
|
||||
|
||||
void setActiveContact(String? contactKeyHex) {
|
||||
if (contactKeyHex != null &&
|
||||
!_shouldTrackUnreadForContactKey(contactKeyHex)) {
|
||||
@@ -411,17 +394,36 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
|
||||
void markContactRead(String contactKeyHex) {
|
||||
if (!_shouldTrackUnreadForContactKey(contactKeyHex)) return;
|
||||
final markMs = _calculateReadTimestampMs(
|
||||
_conversations[contactKeyHex]?.map((m) => m.timestamp),
|
||||
);
|
||||
_setContactLastReadMs(contactKeyHex, markMs);
|
||||
final previousCount = _contactUnreadCount[contactKeyHex] ?? 0;
|
||||
if (previousCount > 0) {
|
||||
_contactUnreadCount[contactKeyHex] = 0;
|
||||
_appDebugLogService?.info(
|
||||
'Contact $contactKeyHex marked as read (was $previousCount unread)',
|
||||
tag: 'Unread',
|
||||
);
|
||||
_unreadStore.saveContactUnreadCount(
|
||||
Map<String, int>.from(_contactUnreadCount),
|
||||
);
|
||||
notifyListeners();
|
||||
}
|
||||
}
|
||||
|
||||
void markChannelRead(int channelIndex) {
|
||||
final markMs = _calculateReadTimestampMs(
|
||||
_channelMessages[channelIndex]?.map((m) => m.timestamp),
|
||||
);
|
||||
_setChannelLastReadMs(channelIndex, markMs);
|
||||
final channel = _findChannelByIndex(channelIndex);
|
||||
if (channel != null && channel.unreadCount > 0) {
|
||||
final previousCount = channel.unreadCount;
|
||||
channel.unreadCount = 0;
|
||||
_appDebugLogService?.info(
|
||||
'Channel ${channel.name.isNotEmpty ? channel.name : channelIndex} marked as read (was $previousCount unread)',
|
||||
tag: 'Unread',
|
||||
);
|
||||
unawaited(
|
||||
_channelStore.saveChannels(
|
||||
_channels.isNotEmpty ? _channels : _cachedChannels,
|
||||
),
|
||||
);
|
||||
notifyListeners();
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> setChannelSmazEnabled(int channelIndex, bool enabled) async {
|
||||
@@ -788,6 +790,9 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
|
||||
// Keep device clock aligned on every connection.
|
||||
await syncTime();
|
||||
|
||||
// Fetch channels so we can track unread counts for incoming messages
|
||||
unawaited(getChannels());
|
||||
} catch (e) {
|
||||
debugPrint("Connection error: $e");
|
||||
await disconnect(manual: false);
|
||||
@@ -1341,8 +1346,10 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
unawaited(_persistContacts());
|
||||
_conversations.remove(contact.publicKeyHex);
|
||||
_loadedConversationKeys.remove(contact.publicKeyHex);
|
||||
_contactLastReadMs.remove(contact.publicKeyHex);
|
||||
_unreadStore.saveContactLastRead(Map<String, int>.from(_contactLastReadMs));
|
||||
_contactUnreadCount.remove(contact.publicKeyHex);
|
||||
_unreadStore.saveContactUnreadCount(
|
||||
Map<String, int>.from(_contactUnreadCount),
|
||||
);
|
||||
_messageStore.clearMessages(contact.publicKeyHex);
|
||||
notifyListeners();
|
||||
}
|
||||
@@ -1617,6 +1624,10 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
|
||||
_cleanupChannelSync(completed: true);
|
||||
|
||||
// Cache channels for offline use
|
||||
_cachedChannels = List<Channel>.from(_channels);
|
||||
unawaited(_channelStore.saveChannels(_channels));
|
||||
|
||||
// Apply ordering and notify UI
|
||||
_applyChannelOrder();
|
||||
notifyListeners();
|
||||
@@ -1651,8 +1662,6 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
|
||||
// Delete by setting empty name and zero PSK
|
||||
await sendFrame(buildSetChannelFrame(index, '', Uint8List(16)));
|
||||
_channelLastReadMs.remove(index);
|
||||
_unreadStore.saveChannelLastRead(Map<int, int>.from(_channelLastReadMs));
|
||||
// Clear stored messages for this channel
|
||||
await _channelMessageStore.clearChannelMessages(index);
|
||||
// Clear in-memory messages for this channel
|
||||
@@ -1930,9 +1939,9 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
final contact = Contact.fromFrame(frame);
|
||||
if (contact != null) {
|
||||
if (contact.type == advTypeRepeater) {
|
||||
_contactLastReadMs.remove(contact.publicKeyHex);
|
||||
_unreadStore.saveContactLastRead(
|
||||
Map<String, int>.from(_contactLastReadMs),
|
||||
_contactUnreadCount.remove(contact.publicKeyHex);
|
||||
_unreadStore.saveContactUnreadCount(
|
||||
Map<String, int>.from(_contactUnreadCount),
|
||||
);
|
||||
}
|
||||
// Check if this is a new contact
|
||||
@@ -2157,7 +2166,7 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
}
|
||||
}
|
||||
_addMessage(message.senderKeyHex, message);
|
||||
_maybeMarkActiveContactRead(message);
|
||||
_maybeIncrementContactUnread(message);
|
||||
notifyListeners();
|
||||
|
||||
// Show notification for new incoming message
|
||||
@@ -2348,7 +2357,7 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
pathBytes: message.pathBytes,
|
||||
);
|
||||
final isNew = _addChannelMessage(message.channelIndex!, message);
|
||||
_maybeMarkActiveChannelRead(message);
|
||||
_maybeIncrementChannelUnread(message, isNew: isNew);
|
||||
notifyListeners();
|
||||
if (isNew) {
|
||||
_maybeNotifyChannelMessage(message);
|
||||
@@ -2370,7 +2379,9 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
final channelHash = payload[0];
|
||||
final encrypted = Uint8List.fromList(payload.sublist(1));
|
||||
|
||||
for (final channel in _channels) {
|
||||
// Use cached channels as fallback if live channels not yet loaded
|
||||
final channelsToSearch = _channels.isNotEmpty ? _channels : _cachedChannels;
|
||||
for (final channel in channelsToSearch) {
|
||||
if (channel.isEmpty) continue;
|
||||
final hash = _computeChannelHash(channel.psk);
|
||||
if (hash != channelHash) continue;
|
||||
@@ -2409,7 +2420,7 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
pathBytes: message.pathBytes,
|
||||
);
|
||||
final isNew = _addChannelMessage(channel.index, message);
|
||||
_maybeMarkActiveChannelRead(message);
|
||||
_maybeIncrementChannelUnread(message, isNew: isNew);
|
||||
notifyListeners();
|
||||
if (isNew) {
|
||||
final label = channel.name.isEmpty
|
||||
@@ -2539,6 +2550,15 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
'[ChannelSync] Received channel ${channel.index}: ${channel.isEmpty ? "empty" : channel.name}',
|
||||
);
|
||||
|
||||
// Preserve unread count from cached channel
|
||||
final cachedChannel = _cachedChannels.cast<Channel?>().firstWhere(
|
||||
(c) => c?.index == channel.index,
|
||||
orElse: () => null,
|
||||
);
|
||||
if (cachedChannel != null) {
|
||||
channel.unreadCount = cachedChannel.unreadCount;
|
||||
}
|
||||
|
||||
// If we're syncing and this is the channel we're waiting for
|
||||
if (_isSyncingChannels && _channelSyncInFlight) {
|
||||
if (channel.index == _nextChannelIndexToRequest) {
|
||||
@@ -2578,6 +2598,8 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
(c) => c.index == channel.index,
|
||||
);
|
||||
if (existingIndex >= 0) {
|
||||
// Preserve unread count from existing channel
|
||||
channel.unreadCount = _channels[existingIndex].unreadCount;
|
||||
_channels[existingIndex] = channel;
|
||||
} else {
|
||||
_channels.add(channel);
|
||||
@@ -2628,67 +2650,98 @@ class MeshCoreConnector extends ChangeNotifier {
|
||||
return contact.type != advTypeRepeater;
|
||||
}
|
||||
|
||||
int _calculateReadTimestampMs(Iterable<DateTime>? timestamps) {
|
||||
var latestMs = 0;
|
||||
if (timestamps != null) {
|
||||
for (final timestamp in timestamps) {
|
||||
final ms = timestamp.millisecondsSinceEpoch;
|
||||
if (ms > latestMs) {
|
||||
latestMs = ms;
|
||||
}
|
||||
}
|
||||
}
|
||||
return latestMs;
|
||||
Channel? _findChannelByIndex(int index) {
|
||||
return _channels.cast<Channel?>().firstWhere(
|
||||
(c) => c?.index == index,
|
||||
orElse: () => null,
|
||||
) ??
|
||||
_cachedChannels.cast<Channel?>().firstWhere(
|
||||
(c) => c?.index == index,
|
||||
orElse: () => null,
|
||||
);
|
||||
}
|
||||
|
||||
void _setContactLastReadMs(
|
||||
String contactKeyHex,
|
||||
int timestampMs, {
|
||||
bool notify = true,
|
||||
void _maybeIncrementChannelUnread(
|
||||
ChannelMessage message, {
|
||||
required bool isNew,
|
||||
}) {
|
||||
if (!_shouldTrackUnreadForContactKey(contactKeyHex)) return;
|
||||
final existing = _contactLastReadMs[contactKeyHex] ?? 0;
|
||||
if (timestampMs <= existing) return;
|
||||
_contactLastReadMs[contactKeyHex] = timestampMs;
|
||||
_unreadStore.saveContactLastRead(Map<String, int>.from(_contactLastReadMs));
|
||||
if (notify) {
|
||||
notifyListeners();
|
||||
if (!isNew || message.isOutgoing) {
|
||||
_appDebugLogService?.info(
|
||||
'Skip unread increment: isNew=$isNew, isOutgoing=${message.isOutgoing}',
|
||||
tag: 'Unread',
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
void _setChannelLastReadMs(
|
||||
int channelIndex,
|
||||
int timestampMs, {
|
||||
bool notify = true,
|
||||
}) {
|
||||
final existing = _channelLastReadMs[channelIndex] ?? 0;
|
||||
if (timestampMs <= existing) return;
|
||||
_channelLastReadMs[channelIndex] = timestampMs;
|
||||
_unreadStore.saveChannelLastRead(Map<int, int>.from(_channelLastReadMs));
|
||||
if (notify) {
|
||||
notifyListeners();
|
||||
}
|
||||
}
|
||||
|
||||
void _maybeMarkActiveContactRead(Message message) {
|
||||
if (message.isOutgoing || message.isCli) return;
|
||||
if (_activeContactKey != message.senderKeyHex) return;
|
||||
if (!_shouldTrackUnreadForContactKey(message.senderKeyHex)) return;
|
||||
_setContactLastReadMs(
|
||||
message.senderKeyHex,
|
||||
message.timestamp.millisecondsSinceEpoch,
|
||||
notify: false,
|
||||
);
|
||||
}
|
||||
|
||||
void _maybeMarkActiveChannelRead(ChannelMessage message) {
|
||||
if (message.isOutgoing) return;
|
||||
final channelIndex = message.channelIndex;
|
||||
if (channelIndex == null || _activeChannelIndex != channelIndex) return;
|
||||
_setChannelLastReadMs(
|
||||
channelIndex,
|
||||
message.timestamp.millisecondsSinceEpoch,
|
||||
notify: false,
|
||||
if (channelIndex == null) {
|
||||
_appDebugLogService?.info(
|
||||
'Skip unread increment: channelIndex is null',
|
||||
tag: 'Unread',
|
||||
);
|
||||
return;
|
||||
}
|
||||
// Don't increment if user is viewing this channel
|
||||
if (_activeChannelIndex == channelIndex) {
|
||||
_appDebugLogService?.info(
|
||||
'Skip unread increment: channel $channelIndex is active',
|
||||
tag: 'Unread',
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
final channel = _findChannelByIndex(channelIndex);
|
||||
if (channel != null) {
|
||||
channel.unreadCount++;
|
||||
_appDebugLogService?.info(
|
||||
'Channel ${channel.name.isNotEmpty ? channel.name : channelIndex} unread count incremented to ${channel.unreadCount}',
|
||||
tag: 'Unread',
|
||||
);
|
||||
unawaited(
|
||||
_channelStore.saveChannels(
|
||||
_channels.isNotEmpty ? _channels : _cachedChannels,
|
||||
),
|
||||
);
|
||||
} else {
|
||||
_appDebugLogService?.info(
|
||||
'Channel $channelIndex not found in _channels (${_channels.length}) or _cachedChannels (${_cachedChannels.length})',
|
||||
tag: 'Unread',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
void _maybeIncrementContactUnread(Message message) {
|
||||
if (message.isOutgoing || message.isCli) {
|
||||
_appDebugLogService?.info(
|
||||
'Skip contact unread increment: isOutgoing=${message.isOutgoing}, isCli=${message.isCli}',
|
||||
tag: 'Unread',
|
||||
);
|
||||
return;
|
||||
}
|
||||
final contactKey = message.senderKeyHex;
|
||||
if (!_shouldTrackUnreadForContactKey(contactKey)) {
|
||||
_appDebugLogService?.info(
|
||||
'Skip contact unread increment: should not track for $contactKey',
|
||||
tag: 'Unread',
|
||||
);
|
||||
return;
|
||||
}
|
||||
// Don't increment if user is viewing this contact
|
||||
if (_activeContactKey == contactKey) {
|
||||
_appDebugLogService?.info(
|
||||
'Skip contact unread increment: contact $contactKey is active',
|
||||
tag: 'Unread',
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
final currentCount = _contactUnreadCount[contactKey] ?? 0;
|
||||
_contactUnreadCount[contactKey] = currentCount + 1;
|
||||
_appDebugLogService?.info(
|
||||
'Contact $contactKey unread count incremented to ${currentCount + 1}',
|
||||
tag: 'Unread',
|
||||
);
|
||||
_unreadStore.saveContactUnreadCount(
|
||||
Map<String, int>.from(_contactUnreadCount),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user