Last active
September 25, 2019 13:02
-
-
Save adnaan/6ca68c7985c6f851def3 to your computer and use it in GitHub Desktop.
Parse and execute a simple bash script.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ls -la | |
echo "hello" | |
tree | |
adb devices | |
adb wait-for-device #example of a long running task |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
shlex "github.com/flynn/go-shlex" | |
"gopkg.in/pipe.v2" | |
"os" | |
"time" | |
) | |
func readLines(path string) []string { | |
inFile, _ := os.Open(path) | |
defer inFile.Close() | |
scanner := bufio.NewScanner(inFile) | |
scanner.Split(bufio.ScanLines) | |
var lines []string | |
for scanner.Scan() { | |
lines = append(lines, scanner.Text()) | |
} | |
return lines | |
} | |
func execScript(script []string, status chan string, log chan string, quit chan bool) { | |
s := pipe.NewState(nil, nil) | |
go func() { | |
for _, v := range script { | |
args, err := shlex.Split(v) | |
if err != nil { | |
fmt.Println(err) | |
} | |
p := pipe.Line(pipe.Exec(args[0], args[1:]...), pipe.Filter(func(line []byte) bool { | |
log <- string(line) | |
return true | |
})) | |
p(s) | |
cmdline := args[0] + " " + fmt.Sprintf("%s", args[1:]) | |
s.RunTasks() | |
status <- cmdline | |
} | |
}() | |
<-quit | |
s.Kill() | |
} | |
func main() { | |
script := readLines("script.sh") | |
status := make(chan string) | |
log := make(chan string) | |
quit := make(chan bool) | |
go execScript(script, status, log, quit) | |
loop: | |
for { | |
select { | |
case s := <-status: | |
fmt.Printf(">>task done: %v\n", s) | |
case l := <-log: | |
fmt.Println(l) | |
case <-time.After(time.Second * 10): | |
fmt.Println("timed out\n") | |
quit <- true | |
break loop | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this would be a great idea if I could extract all the multiline EXPORTS and execute ${var} substitutions