Make progress reports in event log clickable to navigate to config tree item#1090
Draft
Copilot wants to merge 3 commits into
Draft
Make progress reports in event log clickable to navigate to config tree item#1090Copilot wants to merge 3 commits into
Copilot wants to merge 3 commits into
Conversation
…ation Prepend the config item path (via resultHolder.GetBackRefStr()) to progress reports in Connect, impedance_matrix (Dijkstra), BoostPolygon, and BoostGeometry operators. This makes progress messages in the event log clickable, navigating to the corresponding tree item. Affects operators: connect, connect_info, impedance_matrix, polygon union/split/inflate/deflate/filter, buffer, polygon_connectivity. Agent-Logs-Url: https://github.com/ObjectVision/GeoDMS/sessions/106cc8e3-7ed2-46aa-b400-a1cc3fa1b2b2 Co-authored-by: MaartenHilferink <2284361+MaartenHilferink@users.noreply.github.com>
… BoostPolygon overlap Extends clickable tree item navigation in the event log to additional operators: GridDist, point_in_all_polygons, and polygon overlay. Agent-Logs-Url: https://github.com/ObjectVision/GeoDMS/sessions/106cc8e3-7ed2-46aa-b400-a1cc3fa1b2b2 Co-authored-by: MaartenHilferink <2284361+MaartenHilferink@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add clickable progress reports in event log to tree items
Make progress reports in event log clickable to navigate to config tree item
Apr 7, 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 messages for long-running operators (connect, impedance_matrix, polygon operations, etc.) were not clickable in the event log, making it hard to identify which config item was being processed.
The event log UI already parses
[[path]]markers as clickable links viaDmsEventLog.cpp. This change prependsresultHolder.GetBackRefStr()(which produces the[[path]]format) to all operator progress reports.Changes
Dijkstra.cpp— impedance_matrix per-iteration and summary reportsConnect.cpp— ConnectPointOperator (via virtual function param), ConnectInfoOperator, FastConnectOperator (directresultHolderaccess)BoostPolygon.cpp— UnionPolygon, ProcessNumOper (inflate/deflate/filter), PolygonConnectivityOperator, polygon overlayBoostGeometry.cpp— all buffer operation overrides (via virtual function param)GridDist.cpp— GridDist iteration progressOperPolygon.cpp— point_in_all_polygons progressPattern
Where
resultHolderis in scope, the prefix is computed directly. Where it isn't (virtualCalculatemethods),CharPtr itemRef = ""is threaded through the call chain.When no back-reference exists,
itemRefis empty and the message format is unchanged.