Feature/epg refresh performance optimization#317
Open
saidai-bhuvanesh wants to merge 4 commits into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📝 Description
This PR introduces a set of reliability and performance improvements for the IPTV and EPG loading pipeline.
Reliability Improvements
XMLTV Parsing Optimization
Improved
BackslashEscapeSanitizingInputStreamto correctly process bulk reads used by XML parsers.Previously, sanitization logic was only applied to single-byte reads, allowing malformed XMLTV data to bypass sanitization during normal parser execution.
The implementation now performs efficient block-based sanitization while preserving compatibility with existing XMLTV workflows.
Concurrent Playlist Aggregation Safety
Resolved a concurrency issue during simultaneous playlist loading where channel aggregation callbacks could trigger
ConcurrentModificationExceptionwhile playlists were being processed concurrently.Channel snapshots are now generated using synchronized access before UI updates are dispatched.
Performance Improvements
Guide Key Candidate Caching
Added an in-memory cache for guide key candidate generation to reduce repeated normalization and alias generation work during EPG matching.
HTTP Conditional Requests
Added support for:
This allows unchanged EPG sources to reuse existing guide data without reprocessing large XMLTV datasets.
Incremental EPG Refresh
Improved refresh workflows to avoid unnecessary index persistence and guide regeneration when XMLTV content has not changed.
This reduces disk operations and refresh overhead for large IPTV installations.
Test Coverage
Added dedicated tests covering:
Benefits
Testing