refactor: optimize rendering, log loading, and restructure tests #9
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.
This PR addresses critical performance bottlenecks and improves the project structure for maintainability.
Key Changes
Performance Optimization:
message_loadto scanmessages.logbackwards from the end. Startup complexity reduced from O(FileSize) to O(MaxMessages).src/tui.cto use line clearing (\033[K) instead of full-screen clearing (\033[2J), eliminating visual flicker.User Experience (Vim Mode):
Ctrl+W(Delete Word) andCtrl+U(Delete Line) in Insert/Command modes.Ctrl+Cbehavior to safely switch modes instead of terminating the connection abruptly.\nas Enter key in Insert mode (fixing piped input issues).Project Structure:
test_*.shscripts totests/directory to declutter root.testtarget toMakefile.TNT_VERSIONmacro toinclude/common.h.README.mdto reflect new testing procedure.CI/CD:
.github/workflows/ci.ymlto execute the new comprehensive test suite viamake testandtest_security_features.sh.Verification
make testlocally.tests/test_security_features.shlocally.tests/test_stress.shlocally.