1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
package debos
import (
"bytes"
"github.com/go-debos/fakemachine"
"log"
)
type DebosState int
// Represent the current state of Debos
const (
Success DebosState = iota
Failed
)
// Mapping from partition name as configured in the image-partition action to
// device path for usage by other actions
type Partition struct {
Name string
DevicePath string
}
type DebosContext struct {
Scratchdir string
Rootdir string
Artifactdir string
Downloaddir string
Image string
ImagePartitions []Partition
ImageMntDir string
ImageFSTab bytes.Buffer // Fstab as per partitioning
ImageKernelRoot string // Kernel cmdline root= snippet for the / of the image
RecipeDir string
Architecture string
DebugShell string
Origins map[string]string
State DebosState
EnvironVars map[string]string
}
type Action interface {
/* FIXME verify should probably be prepare or somesuch */
Verify(context *DebosContext) error
PreMachine(context *DebosContext, m *fakemachine.Machine, args *[]string) error
PreNoMachine(context *DebosContext) error
Run(context *DebosContext) error
// Cleanup() method gets called only if the Run for an action
// was started and in the same machine (host or fake) as Run has run
Cleanup(context *DebosContext) error
PostMachine(context *DebosContext) error
// PostMachineCleanup() gets called for all actions if Pre*Machine() method
// has run for Action. This method is always executed on the host with user's permissions.
PostMachineCleanup(context *DebosContext) error
String() string
}
type BaseAction struct {
Action string
Description string
}
func (b *BaseAction) LogStart() {
log.Printf("==== %s ====\n", b)
}
func (b *BaseAction) Verify(context *DebosContext) error { return nil }
func (b *BaseAction) PreMachine(context *DebosContext,
m *fakemachine.Machine,
args *[]string) error {
return nil
}
func (b *BaseAction) PreNoMachine(context *DebosContext) error { return nil }
func (b *BaseAction) Run(context *DebosContext) error { return nil }
func (b *BaseAction) Cleanup(context *DebosContext) error { return nil }
func (b *BaseAction) PostMachine(context *DebosContext) error { return nil }
func (b *BaseAction) PostMachineCleanup(context *DebosContext) error { return nil }
func (b *BaseAction) String() string {
if b.Description == "" {
return b.Action
}
return b.Description
}
|