new runner structure

This commit is contained in:
Shane C 2024-07-04 16:40:13 -04:00
parent 699164b244
commit 5bb2d6d1b4
Signed by: shane
GPG key ID: E46B5FEA35B22FF9
3 changed files with 135 additions and 0 deletions

25
linux/interface.go Normal file
View file

@ -0,0 +1,25 @@
package linux
import (
"errors"
)
type LinuxCommand struct {
Options CommandOptions
}
type CommandOptions struct {
Env map[string]string
Sources map[string]string
Command string
Args []string
Cwd string
Shell string
}
// Errors
var (
ErrFetchingCwd = errors.New("error fetching cwd")
ErrRunningCmd = errors.New("error running command")
ErrCommandNotFound = errors.New("error command not found")
)

73
linux/run.go Normal file
View file

@ -0,0 +1,73 @@
package linux
import (
"errors"
"fmt"
"os"
"os/exec"
)
func NewCommand(options CommandOptions) (*LinuxCommand, error) {
if len(options.Shell) == 0 {
options.Shell = "/bin/bash"
}
if len(options.Cwd) == 0 {
cwd, err := os.Getwd()
if err != nil {
return nil, ErrFetchingCwd
}
options.Cwd = cwd
}
return &LinuxCommand{
Options: options,
}, nil
}
func (cmd *LinuxCommand) Run() error {
command := exec.Command(cmd.Options.Shell, "-c", cmd.Options.Command)
command.Args = append(command.Args, cmd.Options.Args...)
// Loop through env to format and add them to the command.
for key, value := range cmd.Options.Env {
command.Env = append(command.Env, fmt.Sprintf("%s=%s", key, value))
}
commandExists, err := cmd.doesCommandExist(cmd.Options.Command)
if err != nil {
return err
}
if !commandExists {
return ErrCommandNotFound
}
if err := command.Start(); err != nil {
var exitErr *exec.ExitError
if errors.As(err, &exitErr) {
if exitErr.ExitCode() == 127 {
return ErrCommandNotFound
} else {
return fmt.Errorf("%w: %w", ErrRunningCmd, err)
}
}
}
if err := command.Start(); err != nil {
var exitErr *exec.ExitError
if errors.As(err, &exitErr) {
if exitErr.ExitCode() == 127 {
return ErrCommandNotFound
} else {
return fmt.Errorf("%w: %w", ErrRunningCmd, err)
}
}
}
return nil
}

37
linux/utils.go Normal file
View file

@ -0,0 +1,37 @@
package linux
import (
"errors"
"fmt"
"os/exec"
)
func (cmd *LinuxCommand) doesCommandExist(command string) (bool, error) {
shellCmd := exec.Command(cmd.Options.Shell, "-c", fmt.Sprintf("command -v %s", command))
if err := shellCmd.Start(); err != nil {
var exitErr *exec.ExitError
if errors.As(err, &exitErr) {
if exitErr.ExitCode() == 1 {
return false, nil
} else {
return false, ErrRunningCmd
}
}
}
if err := shellCmd.Wait(); err != nil {
var exitErr *exec.ExitError
if errors.As(err, &exitErr) {
if exitErr.ExitCode() == 1 {
return false, nil
} else {
return false, ErrRunningCmd
}
}
}
return true, nil
}