Created
December 28, 2017 06:58
-
-
Save ionrock/31c0270ffceb4945902623100478ab54 to your computer and use it in GitHub Desktop.
This file contains 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 ( | |
"encoding/json" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"os" | |
"github.com/ionrock/procs" | |
) | |
func loadData(path string) (map[string]string, error) { | |
content, err := ioutil.ReadFile(path) | |
if err != nil { | |
return nil, err | |
} | |
data := make(map[string]string) | |
err = json.Unmarshal(content, &data) | |
if err != nil { | |
return nil, err | |
} | |
return data, nil | |
} | |
func prefixHandler(name string) procs.OutHandler { | |
return func(line string) string { | |
fmt.Printf("%s | %s\n", name, line) | |
return "" | |
} | |
} | |
func main() { | |
procfilePath := flag.String("procfile", "p", "a file with key/value JSON to act like a Procfile") | |
flag.Parse() | |
procfile, err := loadData(*procfilePath) | |
if err != nil { | |
fmt.Printf("error loading procfile data: %q\n", err) | |
os.Exit(1) | |
} | |
m := procs.NewManager() | |
for k, v := range procfile { | |
outHandler := prefixHandler(k) | |
outHandler(fmt.Sprintf("Starting %s with %s", k, v)) | |
p := procs.NewProcess(v) | |
p.OutputHandler = outHandler | |
p.ErrHandler = outHandler | |
m.StartProcess(k, p) | |
} | |
m.Wait() | |
fmt.Println("All processes exited. Exiting...") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment