mirror of https://github.com/pulumi/pulumi.git
108 lines
2.0 KiB
Go
108 lines
2.0 KiB
Go
// Copyright 2017, Pulumi Corporation. All rights reserved.
|
|
|
|
package engine
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/pulumi/pulumi/pkg/diag"
|
|
"github.com/pulumi/pulumi/pkg/diag/colors"
|
|
)
|
|
|
|
// Event represents an event generated by the engine during an operation. The underlying
|
|
// type for the `Payload` field will differ depending on the value of the `Type` field
|
|
type Event struct {
|
|
Type EventType
|
|
Payload interface{}
|
|
}
|
|
|
|
// EventType is the kind of event being emitted.
|
|
type EventType string
|
|
|
|
const (
|
|
CancelEvent EventType = "cancel"
|
|
StdoutColorEvent EventType = "stdoutcolor"
|
|
DiagEvent EventType = "diag"
|
|
)
|
|
|
|
func cancelEvent() Event {
|
|
return Event{Type: CancelEvent}
|
|
}
|
|
|
|
// DiagEventPayload is the payload for an event with type `diag`
|
|
type DiagEventPayload struct {
|
|
Message string
|
|
Color colors.Colorization
|
|
Severity diag.Severity
|
|
}
|
|
|
|
type StdoutEventPayload struct {
|
|
Message string
|
|
Color colors.Colorization
|
|
}
|
|
|
|
func stdOutEventWithColor(s fmt.Stringer) Event {
|
|
return Event{
|
|
Type: StdoutColorEvent,
|
|
Payload: StdoutEventPayload{
|
|
Message: s.String(),
|
|
Color: colors.Raw,
|
|
},
|
|
}
|
|
}
|
|
|
|
func diagDebugEvent(msg string) Event {
|
|
return Event{
|
|
Type: DiagEvent,
|
|
Payload: DiagEventPayload{
|
|
Message: msg,
|
|
Color: colors.Raw,
|
|
Severity: diag.Debug,
|
|
},
|
|
}
|
|
}
|
|
|
|
func diagInfoEvent(msg string) Event {
|
|
return Event{
|
|
Type: DiagEvent,
|
|
Payload: DiagEventPayload{
|
|
Message: msg,
|
|
Color: colors.Raw,
|
|
Severity: diag.Info,
|
|
},
|
|
}
|
|
}
|
|
|
|
func diagInfoerrEvent(msg string) Event {
|
|
return Event{
|
|
Type: DiagEvent,
|
|
Payload: DiagEventPayload{
|
|
Message: msg,
|
|
Color: colors.Raw,
|
|
Severity: diag.Infoerr,
|
|
},
|
|
}
|
|
}
|
|
|
|
func diagErrorEvent(msg string) Event {
|
|
return Event{
|
|
Type: DiagEvent,
|
|
Payload: DiagEventPayload{
|
|
Message: msg,
|
|
Color: colors.Raw,
|
|
Severity: diag.Error,
|
|
},
|
|
}
|
|
}
|
|
|
|
func diagWarningEvent(msg string) Event {
|
|
return Event{
|
|
Type: DiagEvent,
|
|
Payload: DiagEventPayload{
|
|
Message: msg,
|
|
Color: colors.Raw,
|
|
Severity: diag.Warning,
|
|
},
|
|
}
|
|
}
|