feat(run-pkg): added initial run package cli

This commit is contained in:
Paul Fey 2025-03-04 16:54:00 +01:00
parent 82d6e3aa87
commit 006b01ddcf
2 changed files with 134 additions and 4 deletions

View file

@ -2,19 +2,21 @@
"name": "bndd", "name": "bndd",
"version": "1.0", "version": "1.0",
"description": "The boundaries daemon", "description": "The boundaries daemon",
"build": "go build -o package/bndd . && go build -o package/bnd-send-command ./send-command/main.go", "build": "go build -o package/bndd . && go build -o package/bnd-send-command ./send-command/main.go && go build -o package/bnd-run ./run-pkg/main.go",
"build_static": "CGO_ENABLED=0 go build -o package/bndd . && CGO_ENABLED=0 go build -o package/bnd-send-command ./send-command/main.go", "build_static": "CGO_ENABLED=0 go build -o package/bndd . && CGO_ENABLED=0 go build -o package/bnd-send-command ./send-command/main.go && CGO_ENABLED=0 go build -o package/bnd-run ./run-pkg/main.go",
"dependencies": { "dependencies": {
"build_commands": ["go"] "build_commands": ["go"]
}, },
"json_file": { "json_file": {
"command": { "command": {
"run": "./bndd", "run": "./bndd",
"raw-command": "./bnd-send-command" "raw-command": "./bnd-send-command",
"run-pkg": "./bnd-run"
}, },
"bin": { "bin": {
"run": "bndd", "run": "bndd",
"raw-command": "bnd-send-cmd" "raw-command": "bnd-send-cmd",
"run-pkg": "bnd-run"
}, },
"wrap_bin": false "wrap_bin": false
} }

128
run-pkg/main.go Normal file
View file

@ -0,0 +1,128 @@
package main
import (
"encoding/json"
"errors"
"flag"
"io"
"io/fs"
"log"
"net"
"os"
"path/filepath"
"strings"
)
func main() {
var instance_path string
var target string
var arguments string
var program string
var workdir string
fallback_instance_path, ins_err := get_instance_path()
flag.StringVar(&instance_path, "i", fallback_instance_path, "The path to the used instance")
flag.StringVar(&target, "t", "run", "The target to run")
cwd, cwd_err := os.Getwd()
flag.StringVar(&workdir, "w", cwd, "The working directory")
flag.Parse()
if flag.NArg() == 0 {
log.Fatal("a package is required")
} else if flag.NArg() == 1 {
program = flag.Arg(0)
arguments = ""
} else if flag.NArg() > 1 {
program = flag.Arg(0)
arguments = strings.Join(flag.Args()[1:], " ")
}
if ins_err != nil && instance_path == "" {
log.Fatal(ins_err)
}
if cwd_err != nil && cwd == "" {
log.Fatal(cwd_err)
}
ln, err := net.Dial("unix", instance_path+"/boundaries.sock")
if err != nil {
log.Fatal(err)
}
cmdMap := make(map[string]string)
cmdMap["command"] = "run"
cmdMap["target"] = target
cmdMap["workdir"] = cwd
cmdMap["arguments"] = arguments
cmdMap["package"] = program
cmd, err := json.Marshal(cmdMap)
if err != nil {
log.Fatal(err)
}
ln.Write(cmd)
go func() {
for {
buffer := make([]byte, 1024)
n, err := os.Stdin.Read(buffer)
if err == io.EOF {
break
} else if err != nil {
log.Fatal(err)
}
ln.Write(buffer[:n])
}
}()
func() {
for {
buffer := make([]byte, 1024)
n, err := ln.Read(buffer)
if err == io.EOF {
break
} else if err != nil {
log.Fatal(err)
}
os.Stdout.Write(buffer[:n])
}
}()
}
func path_exists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if errors.Is(err, fs.ErrNotExist) {
return false, nil
}
return false, err
}
func get_instance_path() (string, error) {
// When bnd-run has been started by boundaries, this can be used to get the instance it used
app_dir, has := os.LookupEnv("APP_DIR")
if has {
return filepath.Abs(filepath.Join(app_dir, "..", ".."))
}
// Fallback to the user-path
home, err := os.UserHomeDir()
if err != nil {
return "", err
}
home_instance_path, err := filepath.Abs(filepath.Join(home, "boundaries"))
if exists, err := path_exists(home_instance_path); exists && err == nil {
return home_instance_path, nil
}
return "", errors.New("no suitable instance path found")
}