-
Notifications
You must be signed in to change notification settings - Fork 0
Break handler↔module concrete-type dependency via shared interfaces package #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
587e4b4
Initial plan
Copilot e253c01
feat: break handler↔module concrete-type dependency via interfaces pa…
Copilot fbfad8b
refactor: inject logger/recorder at config time, not per-execution
Copilot f5c0e32
Merge branch 'main' into copilot/fix-bidirectional-dependency
intel352 ad7aa7d
Merge branch 'main' into copilot/fix-bidirectional-dependency
intel352 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| // Package interfaces defines shared interface types used across the workflow | ||
| // engine, handlers, and module packages. Placing these interfaces here breaks | ||
| // the direct handler→module concrete-type dependency and enables each package | ||
| // to be tested in isolation with mocks. | ||
| package interfaces | ||
|
|
||
| import ( | ||
| "context" | ||
| "log/slog" | ||
| ) | ||
|
|
||
| // EventRecorder records pipeline execution events for observability. | ||
| // *store.EventRecorderAdapter and any compatible recorder satisfy this interface. | ||
| type EventRecorder interface { | ||
| RecordEvent(ctx context.Context, executionID string, eventType string, data map[string]any) error | ||
| } | ||
|
|
||
| // PipelineRunner is the interface satisfied by *module.Pipeline. | ||
| // It allows workflow handlers to execute pipelines without importing | ||
| // the concrete module types, enabling handler unit tests with mocks. | ||
| type PipelineRunner interface { | ||
| // Run executes the pipeline with the given trigger data and returns the | ||
| // merged result map (equivalent to PipelineContext.Current). | ||
| Run(ctx context.Context, data map[string]any) (map[string]any, error) | ||
|
|
||
| // SetLogger sets the logger used for pipeline execution. | ||
| // Implementations should be idempotent: if a logger is already set, | ||
| // a subsequent call should be a no-op. | ||
| SetLogger(logger *slog.Logger) | ||
|
|
||
| // SetEventRecorder sets the recorder used for pipeline execution events. | ||
| // Implementations should be idempotent: if a recorder is already set, | ||
| // a subsequent call should be a no-op. | ||
| SetEventRecorder(recorder EventRecorder) | ||
| } | ||
|
|
||
| // StepRegistryProvider exposes the step types registered in a step registry. | ||
| // *module.StepRegistry satisfies this interface. | ||
| type StepRegistryProvider interface { | ||
| // Types returns all registered step type names. | ||
| Types() []string | ||
| } |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.