2013-09-03 17:23:58 +00:00
|
|
|
// Copyright 2013 bee authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
|
|
// not use this file except in compliance with the License. You may obtain
|
|
|
|
// a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing permissions and limitations
|
|
|
|
// under the License.
|
|
|
|
|
2013-07-06 07:30:57 +00:00
|
|
|
package main
|
|
|
|
|
2013-08-09 14:40:46 +00:00
|
|
|
import (
|
2014-08-09 03:14:00 +00:00
|
|
|
"log"
|
2013-08-09 14:40:46 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"runtime"
|
2013-10-30 23:39:44 +00:00
|
|
|
"strings"
|
2013-09-26 18:41:25 +00:00
|
|
|
"time"
|
2016-07-29 15:45:15 +00:00
|
|
|
"path"
|
|
|
|
"fmt"
|
2013-08-09 14:40:46 +00:00
|
|
|
)
|
2013-07-06 07:30:57 +00:00
|
|
|
|
|
|
|
// Go is a basic promise implementation: it wraps calls a function in a goroutine
|
|
|
|
// and returns a channel which will later return the function's return value.
|
|
|
|
func Go(f func() error) chan error {
|
|
|
|
ch := make(chan error)
|
|
|
|
go func() {
|
|
|
|
ch <- f()
|
|
|
|
}()
|
|
|
|
return ch
|
|
|
|
}
|
|
|
|
|
|
|
|
// if os.env DEBUG set, debug is on
|
|
|
|
func Debugf(format string, a ...interface{}) {
|
|
|
|
if os.Getenv("DEBUG") != "" {
|
|
|
|
_, file, line, ok := runtime.Caller(1)
|
|
|
|
if !ok {
|
|
|
|
file = "<unknown>"
|
|
|
|
line = -1
|
|
|
|
} else {
|
|
|
|
file = filepath.Base(file)
|
|
|
|
}
|
|
|
|
fmt.Fprintf(os.Stderr, fmt.Sprintf("[debug] %s:%d %s\n", file, line, format), a...)
|
|
|
|
}
|
|
|
|
}
|
2013-10-30 23:39:44 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
Gray = uint8(iota + 90)
|
|
|
|
Red
|
|
|
|
Green
|
|
|
|
Yellow
|
|
|
|
Blue
|
|
|
|
Magenta
|
|
|
|
//NRed = uint8(31) // Normal
|
|
|
|
EndColor = "\033[0m"
|
2013-09-26 18:41:25 +00:00
|
|
|
|
2014-08-14 04:20:49 +00:00
|
|
|
INFO = "INFO"
|
2013-09-26 18:41:25 +00:00
|
|
|
TRAC = "TRAC"
|
|
|
|
ERRO = "ERRO"
|
|
|
|
WARN = "WARN"
|
|
|
|
SUCC = "SUCC"
|
2013-10-30 23:39:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ColorLog colors log and print to stdout.
|
|
|
|
// See color rules in function 'ColorLogS'.
|
|
|
|
func ColorLog(format string, a ...interface{}) {
|
|
|
|
fmt.Print(ColorLogS(format, a...))
|
|
|
|
}
|
|
|
|
|
|
|
|
// ColorLogS colors log and return colored content.
|
|
|
|
// Log format: <level> <content [highlight][path]> [ error ].
|
|
|
|
// Level: TRAC -> blue; ERRO -> red; WARN -> Magenta; SUCC -> green; others -> default.
|
|
|
|
// Content: default; path: yellow; error -> red.
|
|
|
|
// Level has to be surrounded by "[" and "]".
|
|
|
|
// Highlights have to be surrounded by "# " and " #"(space), "#" will be deleted.
|
|
|
|
// Paths have to be surrounded by "( " and " )"(space).
|
|
|
|
// Errors have to be surrounded by "[ " and " ]"(space).
|
|
|
|
// Note: it hasn't support windows yet, contribute is welcome.
|
|
|
|
func ColorLogS(format string, a ...interface{}) string {
|
|
|
|
log := fmt.Sprintf(format, a...)
|
|
|
|
|
|
|
|
var clog string
|
|
|
|
|
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
// Level.
|
|
|
|
i := strings.Index(log, "]")
|
|
|
|
if log[0] == '[' && i > -1 {
|
|
|
|
clog += "[" + getColorLevel(log[1:i]) + "]"
|
|
|
|
}
|
|
|
|
|
|
|
|
log = log[i+1:]
|
|
|
|
|
|
|
|
// Error.
|
|
|
|
log = strings.Replace(log, "[ ", fmt.Sprintf("[\033[%dm", Red), -1)
|
|
|
|
log = strings.Replace(log, " ]", EndColor+"]", -1)
|
|
|
|
|
|
|
|
// Path.
|
|
|
|
log = strings.Replace(log, "( ", fmt.Sprintf("(\033[%dm", Yellow), -1)
|
|
|
|
log = strings.Replace(log, " )", EndColor+")", -1)
|
|
|
|
|
|
|
|
// Highlights.
|
|
|
|
log = strings.Replace(log, "# ", fmt.Sprintf("\033[%dm", Gray), -1)
|
|
|
|
log = strings.Replace(log, " #", EndColor, -1)
|
|
|
|
|
|
|
|
log = clog + log
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// Level.
|
|
|
|
i := strings.Index(log, "]")
|
|
|
|
if log[0] == '[' && i > -1 {
|
|
|
|
clog += "[" + log[1:i] + "]"
|
|
|
|
}
|
|
|
|
|
|
|
|
log = log[i+1:]
|
|
|
|
|
|
|
|
// Error.
|
|
|
|
log = strings.Replace(log, "[ ", "[", -1)
|
|
|
|
log = strings.Replace(log, " ]", "]", -1)
|
|
|
|
|
|
|
|
// Path.
|
|
|
|
log = strings.Replace(log, "( ", "(", -1)
|
|
|
|
log = strings.Replace(log, " )", ")", -1)
|
|
|
|
|
|
|
|
// Highlights.
|
|
|
|
log = strings.Replace(log, "# ", "", -1)
|
|
|
|
log = strings.Replace(log, " #", "", -1)
|
|
|
|
|
|
|
|
log = clog + log
|
|
|
|
}
|
|
|
|
|
2014-08-23 06:15:38 +00:00
|
|
|
return time.Now().Format("2006/01/02 15:04:05 ") + log
|
2013-10-30 23:39:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// getColorLevel returns colored level string by given level.
|
|
|
|
func getColorLevel(level string) string {
|
|
|
|
level = strings.ToUpper(level)
|
|
|
|
switch level {
|
2014-08-14 04:20:49 +00:00
|
|
|
case INFO:
|
|
|
|
return fmt.Sprintf("\033[%dm%s\033[0m", Blue, level)
|
2013-09-26 18:41:25 +00:00
|
|
|
case TRAC:
|
2013-10-30 23:39:44 +00:00
|
|
|
return fmt.Sprintf("\033[%dm%s\033[0m", Blue, level)
|
2013-09-26 18:41:25 +00:00
|
|
|
case ERRO:
|
2013-10-30 23:39:44 +00:00
|
|
|
return fmt.Sprintf("\033[%dm%s\033[0m", Red, level)
|
2013-09-26 18:41:25 +00:00
|
|
|
case WARN:
|
2013-10-30 23:39:44 +00:00
|
|
|
return fmt.Sprintf("\033[%dm%s\033[0m", Magenta, level)
|
2013-09-26 18:41:25 +00:00
|
|
|
case SUCC:
|
2013-10-30 23:39:44 +00:00
|
|
|
return fmt.Sprintf("\033[%dm%s\033[0m", Green, level)
|
|
|
|
default:
|
|
|
|
return level
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsExist returns whether a file or directory exists.
|
2013-11-04 03:16:15 +00:00
|
|
|
func isExist(path string) bool {
|
2013-10-30 23:39:44 +00:00
|
|
|
_, err := os.Stat(path)
|
|
|
|
return err == nil || os.IsExist(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetGOPATHs returns all paths in GOPATH variable.
|
|
|
|
func GetGOPATHs() []string {
|
|
|
|
gopath := os.Getenv("GOPATH")
|
|
|
|
var paths []string
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
gopath = strings.Replace(gopath, "\\", "/", -1)
|
|
|
|
paths = strings.Split(gopath, ";")
|
|
|
|
} else {
|
|
|
|
paths = strings.Split(gopath, ":")
|
|
|
|
}
|
|
|
|
return paths
|
|
|
|
}
|
2014-08-09 03:14:00 +00:00
|
|
|
|
2016-07-29 15:45:15 +00:00
|
|
|
func SearchGOPATHs(app string) (bool, string, string) {
|
|
|
|
gps := GetGOPATHs()
|
|
|
|
if len(gps) == 0 {
|
|
|
|
ColorLog("[ERRO] Fail to start [ %s ]\n", "GOPATH environment variable is not set or empty")
|
|
|
|
os.Exit(2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup the application inside the user workspace(s)
|
|
|
|
for _, gopath := range gps {
|
|
|
|
var currentPath string
|
|
|
|
|
|
|
|
if !strings.Contains(app, "src") {
|
|
|
|
gopathsrc := path.Join(gopath, "src")
|
|
|
|
currentPath = path.Join(gopathsrc, app)
|
|
|
|
} else {
|
|
|
|
currentPath = app
|
|
|
|
}
|
|
|
|
|
|
|
|
if isExist(currentPath) {
|
|
|
|
if !isBeegoProject(currentPath) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return true, gopath, currentPath
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false, "", ""
|
|
|
|
}
|
|
|
|
|
2014-08-09 03:14:00 +00:00
|
|
|
// askForConfirmation uses Scanln to parse user input. A user must type in "yes" or "no" and
|
|
|
|
// then press enter. It has fuzzy matching, so "y", "Y", "yes", "YES", and "Yes" all count as
|
|
|
|
// confirmations. If the input is not recognized, it will ask again. The function does not return
|
|
|
|
// until it gets a valid response from the user. Typically, you should use fmt to print out a question
|
|
|
|
// before calling askForConfirmation. E.g. fmt.Println("WARNING: Are you sure? (yes/no)")
|
|
|
|
func askForConfirmation() bool {
|
|
|
|
var response string
|
|
|
|
_, err := fmt.Scanln(&response)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
okayResponses := []string{"y", "Y", "yes", "Yes", "YES"}
|
|
|
|
nokayResponses := []string{"n", "N", "no", "No", "NO"}
|
|
|
|
if containsString(okayResponses, response) {
|
|
|
|
return true
|
|
|
|
} else if containsString(nokayResponses, response) {
|
|
|
|
return false
|
|
|
|
} else {
|
|
|
|
fmt.Println("Please type yes or no and then press enter:")
|
|
|
|
return askForConfirmation()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func containsString(slice []string, element string) bool {
|
|
|
|
for _, elem := range slice {
|
|
|
|
if elem == element {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2014-08-18 03:51:57 +00:00
|
|
|
|
|
|
|
// snake string, XxYy to xx_yy
|
|
|
|
func snakeString(s string) string {
|
|
|
|
data := make([]byte, 0, len(s)*2)
|
|
|
|
j := false
|
|
|
|
num := len(s)
|
|
|
|
for i := 0; i < num; i++ {
|
|
|
|
d := s[i]
|
|
|
|
if i > 0 && d >= 'A' && d <= 'Z' && j {
|
|
|
|
data = append(data, '_')
|
|
|
|
}
|
|
|
|
if d != '_' {
|
|
|
|
j = true
|
|
|
|
}
|
|
|
|
data = append(data, d)
|
|
|
|
}
|
|
|
|
return strings.ToLower(string(data[:len(data)]))
|
|
|
|
}
|
|
|
|
|
|
|
|
func camelString(s string) string {
|
|
|
|
data := make([]byte, 0, len(s))
|
|
|
|
j := false
|
|
|
|
k := false
|
|
|
|
num := len(s) - 1
|
|
|
|
for i := 0; i <= num; i++ {
|
|
|
|
d := s[i]
|
|
|
|
if k == false && d >= 'A' && d <= 'Z' {
|
|
|
|
k = true
|
|
|
|
}
|
|
|
|
if d >= 'a' && d <= 'z' && (j || k == false) {
|
|
|
|
d = d - 32
|
|
|
|
j = false
|
|
|
|
k = true
|
|
|
|
}
|
|
|
|
if k && d == '_' && num > i && s[i+1] >= 'a' && s[i+1] <= 'z' {
|
|
|
|
j = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
data = append(data, d)
|
|
|
|
}
|
|
|
|
return string(data[:len(data)])
|
|
|
|
}
|
2015-06-17 06:59:59 +00:00
|
|
|
|
|
|
|
// The string flag list, implemented flag.Value interface
|
|
|
|
type strFlags []string
|
|
|
|
|
|
|
|
func (s *strFlags) String() string {
|
2016-01-25 13:43:29 +00:00
|
|
|
return fmt.Sprintf("%s", *s)
|
2015-06-17 06:59:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *strFlags) Set(value string) error {
|
|
|
|
*s = append(*s, value)
|
|
|
|
return nil
|
|
|
|
}
|
2016-07-31 21:30:35 +00:00
|
|
|
|
|
|
|
// CloseFile attempts to close the passed file
|
|
|
|
// or panics with the actual error
|
|
|
|
func CloseFile(f *os.File) {
|
|
|
|
if err := f.Close(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|