Pndpd/modules/example/example.go

46 lines
1.3 KiB
Go
Raw Normal View History

2021-12-25 09:28:59 -05:00
package example
import (
"fmt"
"pndpd/modules"
)
// This is an example module that is not imported by the main program
func init() {
commands := []modules.Command{{
CommandText: "command1",
Description: "This is the usage description for command1",
BlockTerminate: true,
2021-12-25 13:03:11 -05:00
}, {
CommandText: "command2",
Description: "This is the usage description for command2",
BlockTerminate: false,
2021-12-25 13:03:11 -05:00
},
2021-12-25 09:28:59 -05:00
}
modules.RegisterModule("Example", commands, initCallback, completeCallback, shutdownCallback)
2021-12-25 09:28:59 -05:00
}
func initCallback(callback modules.CallbackInfo) {
2021-12-25 13:03:11 -05:00
if callback.CallbackType == modules.CommandLine {
// The command registered by the module has been run in the commandline
// "arguments" contains the os.Args[] passed to the program after the command registered by this module
fmt.Println("Command: ", callback.Command.CommandText)
2021-12-25 13:03:11 -05:00
fmt.Println(callback.Arguments)
} else {
// The command registered by the module was found in the config file
// "arguments" contains the lines between the curly braces
fmt.Println("Command: ", callback.Command.CommandText)
2021-12-25 13:03:11 -05:00
fmt.Println(callback.Arguments)
2021-12-25 09:28:59 -05:00
}
2021-12-25 13:03:11 -05:00
fmt.Println()
2021-12-25 09:28:59 -05:00
}
func completeCallback() {
//Called after the program has passed all options by calls to initCallback()
}
func shutdownCallback() {
fmt.Println("Terminate all work")
}