jet/internal/utils/utils.go

177 lines
3.4 KiB
Go
Raw Normal View History

2019-06-23 18:55:57 +02:00
package utils
import (
2019-08-08 12:02:32 +02:00
"database/sql"
2019-09-20 18:20:26 +02:00
"fmt"
2019-07-04 17:54:15 +02:00
"github.com/go-jet/jet/internal/3rdparty/snaker"
"go/format"
"os"
"path/filepath"
2019-07-20 17:44:43 +02:00
"reflect"
2019-07-04 17:54:15 +02:00
"strings"
)
// ToGoIdentifier converts database to Go identifier.
2019-07-04 17:54:15 +02:00
func ToGoIdentifier(databaseIdentifier string) string {
return snaker.SnakeToCamel(replaceInvalidChars(databaseIdentifier))
}
// ToGoFileName converts database identifier to Go file name.
2019-07-04 17:54:15 +02:00
func ToGoFileName(databaseIdentifier string) string {
return strings.ToLower(replaceInvalidChars(databaseIdentifier))
}
// SaveGoFile saves go file at folder dir, with name fileName and contents text.
2019-06-23 18:55:57 +02:00
func SaveGoFile(dirPath, fileName string, text []byte) error {
newGoFilePath := filepath.Join(dirPath, fileName) + ".go"
file, err := os.Create(newGoFilePath)
if err != nil {
return err
}
defer file.Close()
p, err := format.Source(text)
if err != nil {
return err
}
_, err = file.Write(p)
if err != nil {
return err
}
return nil
}
// EnsureDirPath ensures dir path exists. If path does not exist, creates new path.
2019-06-23 18:55:57 +02:00
func EnsureDirPath(dirPath string) error {
if _, err := os.Stat(dirPath); os.IsNotExist(err) {
err := os.MkdirAll(dirPath, os.ModePerm)
if err != nil {
return err
}
}
return nil
}
// CleanUpGeneratedFiles deletes everything at folder dir.
2019-06-23 18:55:57 +02:00
func CleanUpGeneratedFiles(dir string) error {
exist, err := DirExists(dir)
if err != nil {
return err
}
if exist {
err := os.RemoveAll(dir)
if err != nil {
return err
}
}
return nil
}
2019-08-17 10:43:16 +02:00
// DBClose closes non nil db connection
2019-08-08 12:02:32 +02:00
func DBClose(db *sql.DB) {
if db == nil {
return
}
db.Close()
}
// DirExists checks if folder at path exist.
2019-06-23 18:55:57 +02:00
func DirExists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return true, err
}
2019-07-04 17:54:15 +02:00
func replaceInvalidChars(str string) string {
str = strings.Replace(str, " ", "_", -1)
str = strings.Replace(str, "-", "_", -1)
str = strings.Replace(str, ".", "_", -1)
2019-07-04 17:54:15 +02:00
return str
}
2019-08-17 18:32:01 +02:00
// IsNil check if v is nil
2019-07-20 17:44:43 +02:00
func IsNil(v interface{}) bool {
return v == nil || (reflect.ValueOf(v).Kind() == reflect.Ptr && reflect.ValueOf(v).IsNil())
}
2019-08-17 10:43:16 +02:00
// MustBe panics with errorStr error, if v interface is not of reflect kind
func MustBe(v interface{}, kind reflect.Kind, errorStr string) {
if reflect.TypeOf(v).Kind() != kind {
panic(errorStr)
}
}
2019-08-17 10:43:16 +02:00
// ValueMustBe panics with errorStr error, if v value is not of reflect kind
func ValueMustBe(v reflect.Value, kind reflect.Kind, errorStr string) {
if v.Kind() != kind {
panic(errorStr)
}
}
2019-08-17 10:43:16 +02:00
// TypeMustBe panics with errorStr error, if v type is not of reflect kind
func TypeMustBe(v reflect.Type, kind reflect.Kind, errorStr string) {
if v.Kind() != kind {
panic(errorStr)
}
}
2019-08-17 10:43:16 +02:00
// MustBeInitializedPtr panics with errorStr if val interface is nil
func MustBeInitializedPtr(val interface{}, errorStr string) {
if IsNil(val) {
panic(errorStr)
}
}
2019-09-20 13:55:07 +02:00
// PanicOnError panics if err is not nil
func PanicOnError(err error) {
if err != nil {
panic(err)
}
}
2019-09-20 18:20:26 +02:00
// ErrorCatch is used in defer to recover from panics and to set err
func ErrorCatch(err *error) {
recovered := recover()
if recovered == nil {
return
}
recoveredErr, isError := recovered.(error)
if isError {
*err = recoveredErr
} else {
*err = fmt.Errorf("%v", recovered)
}
}
func StringSliceContains(strings []string, contains string) bool {
for _, str := range strings {
if str == contains {
return true
}
}
return false
}