238 lines
7.2 KiB
Go
238 lines
7.2 KiB
Go
// Copyright (c) 2021 Uber Technologies, Inc.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
package fxevent
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
// Event defines an event emitted by fx.
|
|
type Event interface {
|
|
event() // Only fxlog can implement this interface.
|
|
}
|
|
|
|
// Passing events by type to make Event hashable in the future.
|
|
func (*OnStartExecuting) event() {}
|
|
func (*OnStartExecuted) event() {}
|
|
func (*OnStopExecuting) event() {}
|
|
func (*OnStopExecuted) event() {}
|
|
func (*Supplied) event() {}
|
|
func (*Provided) event() {}
|
|
func (*Replaced) event() {}
|
|
func (*Decorated) event() {}
|
|
func (*Invoking) event() {}
|
|
func (*Invoked) event() {}
|
|
func (*Stopping) event() {}
|
|
func (*Stopped) event() {}
|
|
func (*RollingBack) event() {}
|
|
func (*RolledBack) event() {}
|
|
func (*Started) event() {}
|
|
func (*LoggerInitialized) event() {}
|
|
|
|
// OnStartExecuting is emitted before an OnStart hook is exeucted.
|
|
type OnStartExecuting struct {
|
|
// FunctionName is the name of the function that will be executed.
|
|
FunctionName string
|
|
|
|
// CallerName is the name of the function that scheduled the hook for
|
|
// execution.
|
|
CallerName string
|
|
}
|
|
|
|
// OnStartExecuted is emitted after an OnStart hook has been executed.
|
|
type OnStartExecuted struct {
|
|
// FunctionName is the name of the function that was executed.
|
|
FunctionName string
|
|
|
|
// CallerName is the name of the function that scheduled the hook for
|
|
// execution.
|
|
CallerName string
|
|
|
|
// Method specifies the kind of the hook. This is one of "OnStart" and
|
|
// "OnStop".
|
|
Method string
|
|
|
|
// Runtime specifies how long it took to run this hook.
|
|
Runtime time.Duration
|
|
|
|
// Err is non-nil if the hook failed to execute.
|
|
Err error
|
|
}
|
|
|
|
// OnStopExecuting is emitted before an OnStop hook is exeucted.
|
|
type OnStopExecuting struct {
|
|
// FunctionName is the name of the function that will be executed.
|
|
FunctionName string
|
|
|
|
// CallerName is the name of the function that scheduled the hook for
|
|
// execution.
|
|
CallerName string
|
|
}
|
|
|
|
// OnStopExecuted is emitted after an OnStop hook has been executed.
|
|
type OnStopExecuted struct {
|
|
// FunctionName is the name of the function that was executed.
|
|
FunctionName string
|
|
|
|
// CallerName is the name of the function that scheduled the hook for
|
|
// execution.
|
|
CallerName string
|
|
|
|
// Runtime specifies how long it took to run this hook.
|
|
Runtime time.Duration
|
|
|
|
// Err is non-nil if the hook failed to execute.
|
|
Err error
|
|
}
|
|
|
|
// Supplied is emitted after a value is added with fx.Supply.
|
|
type Supplied struct {
|
|
// TypeName is the name of the type of value that was added.
|
|
TypeName string
|
|
|
|
// ModuleName is the name of the module in which the value was added to.
|
|
ModuleName string
|
|
|
|
// Err is non-nil if we failed to supply the value.
|
|
Err error
|
|
}
|
|
|
|
// Provided is emitted when a constructor is provided to Fx.
|
|
type Provided struct {
|
|
// ConstructorName is the name of the constructor that was provided to
|
|
// Fx.
|
|
ConstructorName string
|
|
|
|
// OutputTypeNames is a list of names of types that are produced by
|
|
// this constructor.
|
|
OutputTypeNames []string
|
|
|
|
// ModuleName is the name of the module in which the constructor was
|
|
// provided to.
|
|
ModuleName string
|
|
|
|
// Err is non-nil if we failed to provide this constructor.
|
|
Err error
|
|
}
|
|
|
|
// Replaced is emitted when a value replaces a type in Fx.
|
|
type Replaced struct {
|
|
// OutputTypeNames is a list of names of types that were replaced.
|
|
OutputTypeNames []string
|
|
|
|
// ModuleName is the name of the module in which the value was added to.
|
|
ModuleName string
|
|
|
|
// Err is non-nil if we failed to supply the value.
|
|
Err error
|
|
}
|
|
|
|
// Decorated is emitted when a decorator is executed in Fx.
|
|
type Decorated struct {
|
|
// DecoratorName is the name of the decorator function that was
|
|
// provided to Fx.
|
|
DecoratorName string
|
|
|
|
// ModuleName is the name of the module in which the value was added to.
|
|
ModuleName string
|
|
|
|
// OutputTypeNames is a list of names of types that are decorated by
|
|
// this decorator.
|
|
OutputTypeNames []string
|
|
|
|
// Err is non-nil if we failed to run this decorator.
|
|
Err error
|
|
}
|
|
|
|
// Invoking is emitted before we invoke a function specified with fx.Invoke.
|
|
type Invoking struct {
|
|
// FunctionName is the name of the function that will be invoked.
|
|
FunctionName string
|
|
|
|
// ModuleName is the name of the module in which the value was added to.
|
|
ModuleName string
|
|
}
|
|
|
|
// Invoked is emitted after we invoke a function specified with fx.Invoke,
|
|
// whether it succeeded or failed.
|
|
type Invoked struct {
|
|
// Functionname is the name of the function that was invoked.
|
|
FunctionName string
|
|
|
|
// ModuleName is the name of the module in which the value was added to.
|
|
ModuleName string
|
|
|
|
// Err is non-nil if the function failed to execute.
|
|
Err error
|
|
|
|
// Trace records information about where the fx.Invoke call was made.
|
|
// Note that this is NOT a stack trace of the error itself.
|
|
Trace string
|
|
}
|
|
|
|
// Started is emitted when an application is started successfully and/or it
|
|
// errored.
|
|
type Started struct {
|
|
// Err is non-nil if the application failed to start successfully.
|
|
Err error
|
|
}
|
|
|
|
// Stopping is emitted when the application receives a signal to shut down
|
|
// after starting. This may happen with fx.Shutdowner or by sending a signal to
|
|
// the application on the command line.
|
|
type Stopping struct {
|
|
// Signal is the signal that caused this shutdown.
|
|
Signal os.Signal
|
|
}
|
|
|
|
// Stopped is emitted when the application has finished shutting down, whether
|
|
// successfully or not.
|
|
type Stopped struct {
|
|
// Err is non-nil if errors were encountered during shutdown.
|
|
Err error
|
|
}
|
|
|
|
// RollingBack is emitted when the application failed to start up due to an
|
|
// error, and is being rolled back.
|
|
type RollingBack struct {
|
|
// StartErr is the error that caused this rollback.
|
|
StartErr error
|
|
}
|
|
|
|
// RolledBack is emitted after a service has been rolled back, whether it
|
|
// succeeded or not.
|
|
type RolledBack struct {
|
|
// Err is non-nil if the rollback failed.
|
|
Err error
|
|
}
|
|
|
|
// LoggerInitialized is emitted when a logger supplied with fx.WithLogger is
|
|
// instantiated, or if it fails to instantiate.
|
|
type LoggerInitialized struct {
|
|
// ConstructorName is the name of the constructor that builds this
|
|
// logger.
|
|
ConstructorName string
|
|
|
|
// Err is non-nil if the logger failed to build.
|
|
Err error
|
|
}
|