Documentation ¶
Overview ¶
Package migrations implements upgrade migration handlers.
Index ¶
Constants ¶
View Source
const (
// DummyUpgradeHandler is the name of the dummy upgrade, for use in the upgrade descriptor.
DummyUpgradeHandler = "__e2e-test-valid"
)
View Source
const (
// ModuleName is the migration module name.
ModuleName = "upgrade-migrations"
)
Variables ¶
View Source
var ( // ErrMissingMigrationHandler is error returned when a migration handler is not registered. ErrMissingMigrationHandler = fmt.Errorf("missing migration handler") )
View Source
var (
TestEntity entity.Entity
)
Functions ¶
Types ¶
type Context ¶
type Context struct { // Upgrade is the currently pending upgrade structure. Upgrade *upgradeApi.PendingUpgrade // DataDir is the node's data directory. DataDir string Logger *logging.Logger }
Context defines the common context used by migration handlers.
func NewContext ¶
func NewContext(upgrade *upgradeApi.PendingUpgrade, dataDir string) *Context
NewContext returns a new upgrade migration context.
type Handler ¶
type Handler interface { // StartupUpgrade is called by the upgrade manager to perform // the node startup portion of the upgrade. StartupUpgrade(*Context) error // ConsensusUpgrade is called by the upgrade manager to perform // the consensus portion of the upgrade. The interface argument is // a private structure passed to Backend.ConsensusUpgrade by the // consensus backend. // // This method will be called twice, once in BeginBlock and once in // EndBlock. ConsensusUpgrade(*Context, interface{}) error }
Handler is the interface used by migration handlers.
func GetHandler ¶
GetHandler returns the handler associated with the upgrade described in the context.
Click to show internal directories.
Click to hide internal directories.