mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
83 lines
1.7 KiB
Go
83 lines
1.7 KiB
Go
package bus
|
|
|
|
import (
|
|
"github.com/wagoodman/go-partybus"
|
|
"github.com/wagoodman/go-progress"
|
|
|
|
"github.com/anchore/clio"
|
|
"github.com/anchore/syft/internal/redact"
|
|
"github.com/anchore/syft/syft/event"
|
|
"github.com/anchore/syft/syft/event/monitor"
|
|
)
|
|
|
|
func Exit() {
|
|
Publish(clio.ExitEvent(false))
|
|
}
|
|
|
|
func ExitWithInterrupt() {
|
|
Publish(clio.ExitEvent(true))
|
|
}
|
|
|
|
func Report(report string) {
|
|
if len(report) == 0 {
|
|
return
|
|
}
|
|
report = redact.Apply(report)
|
|
Publish(partybus.Event{
|
|
Type: event.CLIReport,
|
|
Value: report,
|
|
})
|
|
}
|
|
|
|
func Notify(message string) {
|
|
Publish(partybus.Event{
|
|
Type: event.CLINotification,
|
|
Value: message,
|
|
})
|
|
}
|
|
|
|
func StartCatalogerTask(info monitor.GenericTask, size int64, initialStage string) *monitor.TaskProgress {
|
|
t := &monitor.TaskProgress{
|
|
AtomicStage: progress.NewAtomicStage(initialStage),
|
|
Manual: progress.NewManual(size),
|
|
}
|
|
|
|
Publish(partybus.Event{
|
|
Type: event.CatalogerTaskStarted,
|
|
Source: info,
|
|
Value: progress.StagedProgressable(t),
|
|
})
|
|
|
|
return t
|
|
}
|
|
|
|
func StartPullSourceTask(info monitor.GenericTask, size int64, initialStage string) *monitor.TaskProgress {
|
|
t := &monitor.TaskProgress{
|
|
AtomicStage: progress.NewAtomicStage(initialStage),
|
|
Manual: progress.NewManual(size),
|
|
}
|
|
|
|
Publish(partybus.Event{
|
|
Type: event.PullSourceStarted,
|
|
Source: info,
|
|
Value: progress.StagedProgressable(t),
|
|
})
|
|
|
|
return t
|
|
}
|
|
|
|
func StartIndexingFiles(path string) *monitor.TaskProgress {
|
|
t := &monitor.TaskProgress{
|
|
AtomicStage: progress.NewAtomicStage(""),
|
|
Manual: progress.NewManual(-1),
|
|
}
|
|
|
|
Publish(partybus.Event{
|
|
Type: event.FileIndexingStarted,
|
|
Source: path,
|
|
Value: progress.StagedProgressable(t),
|
|
})
|
|
|
|
return t
|
|
}
|