PR1: Implement Single-Run Progress Bar for Realtime Scans (AST-109633)#317
Open
cx-rahul-pidde wants to merge 3 commits intofeature/devassist-integration-branchfrom
Open
PR1: Implement Single-Run Progress Bar for Realtime Scans (AST-109633)#317cx-rahul-pidde wants to merge 3 commits intofeature/devassist-integration-branchfrom
cx-rahul-pidde wants to merge 3 commits intofeature/devassist-integration-branchfrom
Conversation
- Add RealtimeScanProgressIndicator with animated progress 0-100% - Progress fills over ~2 seconds with 200ms updates - Automatically stops when reaching 100% - Thread-safe implementation with proper locking - Clear on scan completion Base branch: feature/devassist-integration-branch Related to: AST-109633
|
Policy Management Violations (2)
|
cx-rakesh-kadu
requested changes
Apr 21, 2026
…ogress Issues fixed: 1. Silent catch blocks: log errors via CxAssistErrorHandler instead of swallowing - PushScanAsync: log progress bar initialization errors - PopScanAsync: log progress cleanup errors - ProgressTimer.Elapsed: log timer execution errors - Prevents bugs from being hidden forever (enables debugging and diagnostics) 2. VS Progress contract violation: initialize progress before timer starts - Call statusBar.Progress(ref _progressCookie=0, fInProgress=1) to let VS allocate cookie - Timer updates with same cookie to fill the bar (0→100%) - PopScanAsync calls with fInProgress=0 to clear, then resets cookie to 0 - Prevents progress bar from sticking at 100% after scan completes 3. Add clarifying comments on VS Progress API contract requirements Addresses code review feedback from @cx-rakesh-kadu Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
cx-rakesh-kadu
approved these changes
Apr 22, 2026
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.

Progress Bar Implementation
Files Changed
Related Issue
AST-109633