fix: update routing logic#1424
Open
ndorin wants to merge 1 commit into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR addresses a routing regression affecting devices inheriting from VideoCodecBase by adjusting routing-device type identification and refining route discovery/logging in the Essentials Core routing extensions.
Changes:
- Removes
IRoutingInputsOutputsfromVideoCodecBaseto avoid codecs being treated as midpoint routing devices and filtered out of endpoint route mapping. - Updates route mapping to use the source
outputPort.Typewhen building routes, and adds additional verbose diagnostics for route discovery. - Updates
MockVCto explicitly implementIRoutingInputsso it is recognized as a routing sink/input-capable device.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| src/PepperDash.Essentials.Devices.Common/VideoCodec/VideoCodecBase.cs | Removes IRoutingInputsOutputs from the base codec class to prevent misclassification in routing discovery. |
| src/PepperDash.Essentials.Devices.Common/VideoCodec/MockVC/MockVC.cs | Adds IRoutingInputs to MockVC for correct routing-input identification. |
| src/PepperDash.Essentials.Core/Routing/Extensions.cs | Adjusts route mapping signal type selection and expands verbose logging for route discovery/tracing. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
andrew-welker
approved these changes
May 21, 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.
Closes #1423
This pull request introduces several improvements to the routing logic and device type handling in the Essentials Core library. The main focus is on refining how routing sources and sinks are identified, enhancing debug logging for route tracing, and correcting type assignments for mock and base video codec classes.
Key improvements and changes:
Routing Logic and Device Type Handling
MapDestinationsToSources()by removing restrictions that excluded devices implementing bothIRoutingInputsandIRoutingOutputs. The filtering is now applied within the loop, making the logic clearer and more flexible.GetRouteToSourceto use the correct signal type (outputPort.Typeinstead ofinputPort.Type) when mapping routes, ensuring accurate routing behavior.Debug Logging Enhancements
destination.Keyandsource.Keyin route-building messages.Device Class Type Corrections
IRoutingInputsto theMockVCclass to ensure it is properly recognized as a routing input in the system.IRoutingInputsOutputsfrom theVideoCodecBaseclass, clarifying its intended role and preventing incorrect type assignments.