206 lines
4.5 KiB
V
206 lines
4.5 KiB
V
module zerofs
|
|
|
|
import incubaid.herolib.core.playbook { PlayBook }
|
|
import incubaid.herolib.ui.console
|
|
import json
|
|
import incubaid.herolib.osal.startupmanager
|
|
import time
|
|
|
|
__global (
|
|
zerofs_global map[string]&ZeroFS
|
|
zerofs_default string
|
|
)
|
|
|
|
/////////FACTORY
|
|
|
|
@[params]
|
|
pub struct ArgsGet {
|
|
pub mut:
|
|
name string = 'default'
|
|
}
|
|
|
|
pub fn new(args ArgsGet) !&ZeroFS {
|
|
return &ZeroFS{}
|
|
}
|
|
|
|
pub fn get(args ArgsGet) !&ZeroFS {
|
|
return new(args)!
|
|
}
|
|
|
|
pub fn play(mut plbook PlayBook) ! {
|
|
if !plbook.exists(filter: 'zerofs.') {
|
|
return
|
|
}
|
|
mut install_actions := plbook.find(filter: 'zerofs.configure')!
|
|
if install_actions.len > 0 {
|
|
return error("can't configure zerofs, because no configuration allowed for this installer.")
|
|
}
|
|
mut other_actions := plbook.find(filter: 'zerofs.')!
|
|
for mut other_action in other_actions {
|
|
if other_action.name in ['destroy', 'install', 'build'] {
|
|
mut p := other_action.params
|
|
reset := p.get_default_false('reset')
|
|
if other_action.name == 'destroy' || reset {
|
|
console.print_debug('install action zerofs.destroy')
|
|
destroy()!
|
|
}
|
|
if other_action.name == 'install' {
|
|
console.print_debug('install action zerofs.install')
|
|
install()!
|
|
}
|
|
}
|
|
if other_action.name in ['start', 'stop', 'restart'] {
|
|
mut p := other_action.params
|
|
name := p.get('name')!
|
|
mut zerofs_obj := get(name: name)!
|
|
console.print_debug('action object:\n${zerofs_obj}')
|
|
if other_action.name == 'start' {
|
|
console.print_debug('install action zerofs.${other_action.name}')
|
|
zerofs_obj.start()!
|
|
}
|
|
|
|
if other_action.name == 'stop' {
|
|
console.print_debug('install action zerofs.${other_action.name}')
|
|
zerofs_obj.stop()!
|
|
}
|
|
if other_action.name == 'restart' {
|
|
console.print_debug('install action zerofs.${other_action.name}')
|
|
zerofs_obj.restart()!
|
|
}
|
|
}
|
|
other_action.done = true
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//////////////////////////# LIVE CYCLE MANAGEMENT FOR INSTALLERS ///////////////////////////////////
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
fn startupmanager_get(cat startupmanager.StartupManagerType) !startupmanager.StartupManager {
|
|
// unknown
|
|
// screen
|
|
// zinit
|
|
// tmux
|
|
// systemd
|
|
match cat {
|
|
.screen {
|
|
console.print_debug("installer: zerofs' startupmanager get screen")
|
|
return startupmanager.get(.screen)!
|
|
}
|
|
.zinit {
|
|
console.print_debug("installer: zerofs' startupmanager get zinit")
|
|
return startupmanager.get(.zinit)!
|
|
}
|
|
.systemd {
|
|
console.print_debug("installer: zerofs' startupmanager get systemd")
|
|
return startupmanager.get(.systemd)!
|
|
}
|
|
else {
|
|
console.print_debug("installer: zerofs' startupmanager get auto")
|
|
return startupmanager.get(.auto)!
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn (mut self ZeroFS) start() ! {
|
|
if self.running()! {
|
|
return
|
|
}
|
|
|
|
console.print_header('installer: zerofs start')
|
|
|
|
if !installed()! {
|
|
install()!
|
|
}
|
|
|
|
configure()!
|
|
|
|
start_pre()!
|
|
|
|
for zprocess in startupcmd()! {
|
|
mut sm := startupmanager_get(zprocess.startuptype)!
|
|
|
|
console.print_debug('installer: zerofs starting with ${zprocess.startuptype}...')
|
|
|
|
sm.new(zprocess)!
|
|
|
|
sm.start(zprocess.name)!
|
|
}
|
|
|
|
start_post()!
|
|
|
|
for _ in 0 .. 50 {
|
|
if self.running()! {
|
|
return
|
|
}
|
|
time.sleep(100 * time.millisecond)
|
|
}
|
|
return error('zerofs did not install properly.')
|
|
}
|
|
|
|
pub fn (mut self ZeroFS) install_start(args InstallArgs) ! {
|
|
switch(self.name)
|
|
self.install(args)!
|
|
self.start()!
|
|
}
|
|
|
|
pub fn (mut self ZeroFS) stop() ! {
|
|
switch(self.name)
|
|
stop_pre()!
|
|
for zprocess in startupcmd()! {
|
|
mut sm := startupmanager_get(zprocess.startuptype)!
|
|
sm.stop(zprocess.name)!
|
|
}
|
|
stop_post()!
|
|
}
|
|
|
|
pub fn (mut self ZeroFS) restart() ! {
|
|
switch(self.name)
|
|
self.stop()!
|
|
self.start()!
|
|
}
|
|
|
|
pub fn (mut self ZeroFS) running() !bool {
|
|
switch(self.name)
|
|
|
|
// walk over the generic processes, if not running return
|
|
for zprocess in startupcmd()! {
|
|
if zprocess.startuptype != .screen {
|
|
mut sm := startupmanager_get(zprocess.startuptype)!
|
|
r := sm.running(zprocess.name)!
|
|
if r == false {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
return running()!
|
|
}
|
|
|
|
@[params]
|
|
pub struct InstallArgs {
|
|
pub mut:
|
|
reset bool
|
|
}
|
|
|
|
pub fn (mut self ZeroFS) install(args InstallArgs) ! {
|
|
switch(self.name)
|
|
if args.reset || (!installed()!) {
|
|
install()!
|
|
}
|
|
}
|
|
|
|
pub fn (mut self ZeroFS) build() ! {
|
|
switch(self.name)
|
|
build()!
|
|
}
|
|
|
|
pub fn (mut self ZeroFS) destroy() ! {
|
|
switch(self.name)
|
|
self.stop() or {}
|
|
destroy()!
|
|
}
|
|
|
|
// switch instance to be used for zerofs
|
|
pub fn switch(name string) {
|
|
}
|