mirror of
https://github.com/anchore/syft
synced 2024-11-12 23:27:20 +00:00
51b9c73c31
* add basic documentation for catalogers (with refactoring for simplification) Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add docs for catalog parsers, UI, and event bus Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update bus phrasing Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
53 lines
1.7 KiB
Go
53 lines
1.7 KiB
Go
/*
|
|
Package ui provides all public UI elements intended to be repurposed in other applications. Specifically, a single
|
|
Handler object is provided to allow consuming applications (such as grype) to check if there are UI elements the handler
|
|
can respond to (given a specific event type) and handle the event in context of the given screen frame object.
|
|
*/
|
|
package ui
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
|
|
stereoscopeEvent "github.com/anchore/stereoscope/pkg/event"
|
|
syftEvent "github.com/anchore/syft/syft/event"
|
|
"github.com/wagoodman/go-partybus"
|
|
"github.com/wagoodman/jotframe/pkg/frame"
|
|
)
|
|
|
|
// Handler is an aggregated event handler for the set of supported events (PullDockerImage, ReadImage, FetchImage, CatalogerStarted)
|
|
type Handler struct {
|
|
}
|
|
|
|
// NewHandler returns an empty Handler
|
|
func NewHandler() *Handler {
|
|
return &Handler{}
|
|
}
|
|
|
|
// RespondsTo indicates if the handler is capable of handling the given event.
|
|
func (r *Handler) RespondsTo(event partybus.Event) bool {
|
|
switch event.Type {
|
|
case stereoscopeEvent.PullDockerImage, stereoscopeEvent.ReadImage, stereoscopeEvent.FetchImage, syftEvent.CatalogerStarted:
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
// Handle calls the specific event handler for the given event within the context of the screen frame.
|
|
func (r *Handler) Handle(ctx context.Context, fr *frame.Frame, event partybus.Event, wg *sync.WaitGroup) error {
|
|
switch event.Type {
|
|
case stereoscopeEvent.PullDockerImage:
|
|
return PullDockerImageHandler(ctx, fr, event, wg)
|
|
|
|
case stereoscopeEvent.ReadImage:
|
|
return ReadImageHandler(ctx, fr, event, wg)
|
|
|
|
case stereoscopeEvent.FetchImage:
|
|
return FetchImageHandler(ctx, fr, event, wg)
|
|
|
|
case syftEvent.CatalogerStarted:
|
|
return CatalogerStartedHandler(ctx, fr, event, wg)
|
|
}
|
|
return nil
|
|
}
|