2016-08-14 01:03:34 +02:00
|
|
|
// Package strmangle is a collection of string manipulation functions.
|
|
|
|
// Primarily used by boil and templates for code generation.
|
|
|
|
// Because it is focused on pipelining inside templates
|
2016-06-20 03:45:33 +02:00
|
|
|
// you will see some odd parameter ordering.
|
2016-04-25 03:43:09 +02:00
|
|
|
package strmangle
|
2016-02-29 10:39:49 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-07-02 00:52:40 +02:00
|
|
|
"math"
|
2016-08-02 04:55:40 +02:00
|
|
|
"regexp"
|
2016-02-29 10:39:49 +01:00
|
|
|
"strings"
|
|
|
|
|
2016-03-18 12:26:48 +01:00
|
|
|
"github.com/jinzhu/inflection"
|
2016-02-29 10:39:49 +01:00
|
|
|
)
|
|
|
|
|
2016-07-02 00:52:40 +02:00
|
|
|
var (
|
2016-07-17 05:33:16 +02:00
|
|
|
idAlphabet = []byte("abcdefghijklmnopqrstuvwxyz")
|
2016-08-15 11:51:00 +02:00
|
|
|
uppercaseWords = regexp.MustCompile(`^(?i)(id|uid|uuid|guid|[^aeiouy]*)[0-9]*$`)
|
2016-08-04 04:17:29 +02:00
|
|
|
smartQuoteRgx = regexp.MustCompile(`^(?i)"?[a-z_][_a-z0-9]*"?(\."?[_a-z][_a-z0-9]*"?)*(\.\*)?$`)
|
2016-07-02 00:52:40 +02:00
|
|
|
)
|
|
|
|
|
2016-08-17 07:19:23 +02:00
|
|
|
func init() {
|
|
|
|
// Override the uncountable inflections with an empty set.
|
|
|
|
// This way, people using words like Sheep will not have
|
|
|
|
// collisions with their model name (Sheep) and their
|
|
|
|
// function name (Sheep()). Instead, it will
|
|
|
|
// use the regular inflection rules: Sheep, Sheeps().
|
|
|
|
inflection.SetUncountable([]string{})
|
|
|
|
}
|
|
|
|
|
2016-08-02 05:25:02 +02:00
|
|
|
// IdentQuote attempts to quote simple identifiers in SQL tatements
|
|
|
|
func IdentQuote(s string) string {
|
2016-08-04 06:46:58 +02:00
|
|
|
if strings.ToLower(s) == "null" {
|
2016-08-02 04:55:40 +02:00
|
|
|
return s
|
|
|
|
}
|
2016-08-01 09:41:52 +02:00
|
|
|
|
2016-08-02 04:55:40 +02:00
|
|
|
if m := smartQuoteRgx.MatchString(s); m != true {
|
|
|
|
return s
|
|
|
|
}
|
2016-08-01 09:41:52 +02:00
|
|
|
|
2016-08-13 10:07:45 +02:00
|
|
|
buf := GetBuffer()
|
|
|
|
defer PutBuffer(buf)
|
|
|
|
|
2016-08-02 04:55:40 +02:00
|
|
|
splits := strings.Split(s, ".")
|
|
|
|
for i, split := range splits {
|
2016-08-13 10:07:45 +02:00
|
|
|
if i != 0 {
|
|
|
|
buf.WriteByte('.')
|
|
|
|
}
|
|
|
|
|
2016-08-04 04:17:29 +02:00
|
|
|
if strings.HasPrefix(split, `"`) || strings.HasSuffix(split, `"`) || split == "*" {
|
2016-08-13 10:07:45 +02:00
|
|
|
buf.WriteString(split)
|
2016-08-02 04:55:40 +02:00
|
|
|
continue
|
|
|
|
}
|
2016-08-01 09:41:52 +02:00
|
|
|
|
2016-08-13 10:07:45 +02:00
|
|
|
buf.WriteByte('"')
|
|
|
|
buf.WriteString(split)
|
|
|
|
buf.WriteByte('"')
|
2016-08-01 09:41:52 +02:00
|
|
|
}
|
|
|
|
|
2016-08-13 10:07:45 +02:00
|
|
|
return buf.String()
|
2016-08-01 09:41:52 +02:00
|
|
|
}
|
|
|
|
|
2016-08-04 06:46:58 +02:00
|
|
|
// IdentQuoteSlice applies IdentQuote to a slice.
|
|
|
|
func IdentQuoteSlice(s []string) []string {
|
|
|
|
if len(s) == 0 {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
strs := make([]string, len(s))
|
|
|
|
for i, str := range s {
|
|
|
|
strs[i] = IdentQuote(str)
|
|
|
|
}
|
|
|
|
|
|
|
|
return strs
|
|
|
|
}
|
|
|
|
|
2016-07-17 05:33:16 +02:00
|
|
|
// Identifier is a base conversion from Base 10 integers to Base 26
|
2016-07-02 00:52:40 +02:00
|
|
|
// integers that are represented by an alphabet from a-z
|
|
|
|
// See tests for example outputs.
|
|
|
|
func Identifier(in int) string {
|
|
|
|
ln := len(idAlphabet)
|
|
|
|
var n int
|
|
|
|
if in == 0 {
|
|
|
|
n = 1
|
|
|
|
} else {
|
|
|
|
n = 1 + int(math.Log(float64(in))/math.Log(float64(ln)))
|
|
|
|
}
|
|
|
|
|
2016-08-13 15:30:53 +02:00
|
|
|
cols := GetBuffer()
|
|
|
|
defer PutBuffer(cols)
|
2016-07-02 00:52:40 +02:00
|
|
|
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
divisor := int(math.Pow(float64(ln), float64(n-i-1)))
|
|
|
|
rem := in / divisor
|
2016-08-13 15:30:53 +02:00
|
|
|
cols.WriteByte(idAlphabet[rem])
|
2016-07-02 00:52:40 +02:00
|
|
|
|
|
|
|
in -= rem * divisor
|
|
|
|
}
|
|
|
|
|
2016-08-13 15:30:53 +02:00
|
|
|
return cols.String()
|
2016-07-02 00:52:40 +02:00
|
|
|
}
|
|
|
|
|
2016-04-25 03:43:09 +02:00
|
|
|
// Plural converts singular words to plural words (eg: person to people)
|
|
|
|
func Plural(name string) string {
|
2016-08-13 15:39:13 +02:00
|
|
|
buf := GetBuffer()
|
|
|
|
defer PutBuffer(buf)
|
|
|
|
|
2016-03-18 12:26:48 +01:00
|
|
|
splits := strings.Split(name, "_")
|
2016-08-13 15:39:13 +02:00
|
|
|
|
|
|
|
for i := 0; i < len(splits); i++ {
|
|
|
|
if i != 0 {
|
|
|
|
buf.WriteByte('_')
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == len(splits)-1 {
|
|
|
|
buf.WriteString(inflection.Plural(splits[len(splits)-1]))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
buf.WriteString(splits[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.String()
|
2016-03-18 12:26:48 +01:00
|
|
|
}
|
|
|
|
|
2016-04-25 03:43:09 +02:00
|
|
|
// Singular converts plural words to singular words (eg: people to person)
|
|
|
|
func Singular(name string) string {
|
2016-08-13 15:39:13 +02:00
|
|
|
buf := GetBuffer()
|
|
|
|
defer PutBuffer(buf)
|
|
|
|
|
2016-03-18 12:26:48 +01:00
|
|
|
splits := strings.Split(name, "_")
|
2016-08-13 15:39:13 +02:00
|
|
|
|
|
|
|
for i := 0; i < len(splits); i++ {
|
|
|
|
if i != 0 {
|
|
|
|
buf.WriteByte('_')
|
|
|
|
}
|
|
|
|
|
|
|
|
if i == len(splits)-1 {
|
|
|
|
buf.WriteString(inflection.Singular(splits[len(splits)-1]))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
buf.WriteString(splits[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf.String()
|
2016-03-18 12:26:48 +01:00
|
|
|
}
|
|
|
|
|
2016-04-25 03:43:09 +02:00
|
|
|
// TitleCase changes a snake-case variable name
|
2016-03-02 04:11:47 +01:00
|
|
|
// into a go styled object variable name of "ColumnName".
|
2016-03-01 17:34:57 +01:00
|
|
|
// titleCase also fully uppercases "ID" components of names, for example
|
2016-02-29 10:39:49 +01:00
|
|
|
// "column_name_id" to "ColumnNameID".
|
2016-04-25 03:43:09 +02:00
|
|
|
func TitleCase(name string) string {
|
2016-08-13 15:48:31 +02:00
|
|
|
buf := GetBuffer()
|
|
|
|
defer PutBuffer(buf)
|
|
|
|
|
2016-03-01 17:34:57 +01:00
|
|
|
splits := strings.Split(name, "_")
|
2016-02-29 10:39:49 +01:00
|
|
|
|
2016-08-13 15:48:31 +02:00
|
|
|
for _, split := range splits {
|
2016-08-03 07:31:59 +02:00
|
|
|
if uppercaseWords.MatchString(split) {
|
2016-08-13 15:48:31 +02:00
|
|
|
buf.WriteString(strings.ToUpper(split))
|
2016-02-29 10:39:49 +01:00
|
|
|
continue
|
|
|
|
}
|
2016-03-01 17:34:57 +01:00
|
|
|
|
2016-08-13 15:48:31 +02:00
|
|
|
buf.WriteString(strings.Title(split))
|
2016-02-29 10:39:49 +01:00
|
|
|
}
|
|
|
|
|
2016-08-13 15:48:31 +02:00
|
|
|
return buf.String()
|
2016-02-29 10:39:49 +01:00
|
|
|
}
|
|
|
|
|
2016-04-25 03:43:09 +02:00
|
|
|
// CamelCase takes a variable name in the format of "var_name" and converts
|
2016-02-29 10:39:49 +01:00
|
|
|
// it into a go styled variable name of "varName".
|
2016-03-01 17:34:57 +01:00
|
|
|
// camelCase also fully uppercases "ID" components of names, for example
|
2016-02-29 10:39:49 +01:00
|
|
|
// "var_name_id" to "varNameID".
|
2016-04-25 03:43:09 +02:00
|
|
|
func CamelCase(name string) string {
|
2016-08-13 15:48:31 +02:00
|
|
|
buf := GetBuffer()
|
|
|
|
defer PutBuffer(buf)
|
|
|
|
|
2016-03-01 17:34:57 +01:00
|
|
|
splits := strings.Split(name, "_")
|
2016-02-29 10:39:49 +01:00
|
|
|
|
2016-03-01 17:34:57 +01:00
|
|
|
for i, split := range splits {
|
2016-07-17 05:33:16 +02:00
|
|
|
if i == 0 {
|
2016-08-13 15:48:31 +02:00
|
|
|
buf.WriteString(split)
|
2016-02-29 10:39:49 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-08-13 15:48:31 +02:00
|
|
|
if uppercaseWords.MatchString(split) {
|
|
|
|
buf.WriteString(strings.ToUpper(split))
|
|
|
|
continue
|
2016-07-17 05:33:16 +02:00
|
|
|
}
|
|
|
|
|
2016-08-13 15:48:31 +02:00
|
|
|
buf.WriteString(strings.Title(split))
|
2016-02-29 10:39:49 +01:00
|
|
|
}
|
|
|
|
|
2016-08-13 15:48:31 +02:00
|
|
|
return buf.String()
|
2016-02-29 10:39:49 +01:00
|
|
|
}
|
|
|
|
|
2016-07-13 18:51:40 +02:00
|
|
|
// MakeStringMap converts a map[string]string into the format:
|
|
|
|
// "key": "value", "key": "value"
|
|
|
|
func MakeStringMap(types map[string]string) string {
|
2016-08-13 15:54:57 +02:00
|
|
|
buf := GetBuffer()
|
|
|
|
defer PutBuffer(buf)
|
|
|
|
|
|
|
|
c := 0
|
2016-07-13 18:51:40 +02:00
|
|
|
for k, v := range types {
|
2016-08-13 15:54:57 +02:00
|
|
|
buf.WriteString(fmt.Sprintf(`"%s": "%s"`, k, v))
|
|
|
|
if c < len(types)-1 {
|
|
|
|
buf.WriteString(", ")
|
|
|
|
}
|
|
|
|
|
|
|
|
c++
|
2016-07-13 18:51:40 +02:00
|
|
|
}
|
|
|
|
|
2016-08-13 15:54:57 +02:00
|
|
|
return buf.String()
|
2016-07-13 18:51:40 +02:00
|
|
|
}
|
|
|
|
|
2016-06-20 03:45:33 +02:00
|
|
|
// StringMap maps a function over a slice of strings.
|
|
|
|
func StringMap(modifier func(string) string, strs []string) []string {
|
|
|
|
ret := make([]string, len(strs))
|
2016-04-25 03:43:09 +02:00
|
|
|
|
2016-06-20 03:45:33 +02:00
|
|
|
for i, str := range strs {
|
|
|
|
ret[i] = modifier(str)
|
2016-05-06 11:31:51 +02:00
|
|
|
}
|
|
|
|
|
2016-06-20 03:45:33 +02:00
|
|
|
return ret
|
2016-04-25 03:43:09 +02:00
|
|
|
}
|
|
|
|
|
2016-06-20 03:45:33 +02:00
|
|
|
// PrefixStringSlice with the given str.
|
|
|
|
func PrefixStringSlice(str string, strs []string) []string {
|
|
|
|
ret := make([]string, len(strs))
|
2016-03-18 12:26:48 +01:00
|
|
|
|
2016-06-20 03:45:33 +02:00
|
|
|
for i, s := range strs {
|
|
|
|
ret[i] = fmt.Sprintf("%s%s", str, s)
|
2016-03-18 12:26:48 +01:00
|
|
|
}
|
|
|
|
|
2016-06-20 03:45:33 +02:00
|
|
|
return ret
|
2016-04-04 12:28:58 +02:00
|
|
|
}
|
|
|
|
|
2016-08-09 05:19:26 +02:00
|
|
|
// Placeholders generates the SQL statement placeholders for in queries.
|
2016-08-19 11:56:27 +02:00
|
|
|
// For example, ($1,$2,$3),($4,$5, $6) etc.
|
2016-08-09 05:19:26 +02:00
|
|
|
// It will start counting placeholders at "start".
|
|
|
|
func Placeholders(count int, start int, group int) string {
|
2016-08-13 15:55:52 +02:00
|
|
|
buf := GetBuffer()
|
|
|
|
defer PutBuffer(buf)
|
2016-08-08 15:30:29 +02:00
|
|
|
|
2016-08-11 10:23:47 +02:00
|
|
|
if start == 0 || group == 0 {
|
|
|
|
panic("Invalid start or group numbers supplied.")
|
|
|
|
}
|
|
|
|
|
2016-08-09 05:19:26 +02:00
|
|
|
if group > 1 {
|
2016-08-08 15:30:29 +02:00
|
|
|
buf.WriteByte('(')
|
|
|
|
}
|
2016-08-09 05:19:26 +02:00
|
|
|
for i := 0; i < count; i++ {
|
|
|
|
if i != 0 {
|
|
|
|
if group > 1 && i%group == 0 {
|
2016-08-13 09:57:13 +02:00
|
|
|
buf.WriteString("),(")
|
2016-08-08 15:30:29 +02:00
|
|
|
} else {
|
2016-08-13 09:57:13 +02:00
|
|
|
buf.WriteByte(',')
|
2016-08-08 15:30:29 +02:00
|
|
|
}
|
|
|
|
}
|
2016-08-09 05:19:26 +02:00
|
|
|
buf.WriteString(fmt.Sprintf("$%d", start+i))
|
2016-08-08 15:30:29 +02:00
|
|
|
}
|
2016-08-09 05:19:26 +02:00
|
|
|
if group > 1 {
|
2016-08-08 15:30:29 +02:00
|
|
|
buf.WriteByte(')')
|
2016-05-02 08:34:25 +02:00
|
|
|
}
|
|
|
|
|
2016-08-08 15:30:29 +02:00
|
|
|
return buf.String()
|
2016-05-02 08:34:25 +02:00
|
|
|
}
|
|
|
|
|
2016-08-09 07:57:54 +02:00
|
|
|
// SetParamNames takes a slice of columns and returns a comma separated
|
|
|
|
// list of parameter names for a template statement SET clause.
|
|
|
|
// eg: "col1"=$1, "col2"=$2, "col3"=$3
|
|
|
|
func SetParamNames(columns []string) string {
|
2016-08-13 15:59:02 +02:00
|
|
|
buf := GetBuffer()
|
|
|
|
defer PutBuffer(buf)
|
|
|
|
|
|
|
|
for i, c := range columns {
|
|
|
|
buf.WriteString(fmt.Sprintf(`"%s"=$%d`, c, i+1))
|
|
|
|
if i < len(columns)-1 {
|
|
|
|
buf.WriteString(", ")
|
|
|
|
}
|
2016-08-08 19:33:24 +02:00
|
|
|
}
|
2016-08-13 15:59:02 +02:00
|
|
|
|
|
|
|
return buf.String()
|
2016-08-08 19:33:24 +02:00
|
|
|
}
|
|
|
|
|
2016-08-09 07:57:54 +02:00
|
|
|
// WhereClause returns the where clause using start as the $ flag index
|
|
|
|
// For example, if start was 2 output would be: "colthing=$2 AND colstuff=$3"
|
|
|
|
func WhereClause(start int, cols []string) string {
|
2016-08-08 18:52:34 +02:00
|
|
|
if start == 0 {
|
2016-08-09 07:57:54 +02:00
|
|
|
panic("0 is not a valid start number for whereClause")
|
2016-08-08 18:52:34 +02:00
|
|
|
}
|
|
|
|
|
2016-08-13 16:01:06 +02:00
|
|
|
buf := GetBuffer()
|
|
|
|
defer PutBuffer(buf)
|
|
|
|
|
2016-08-09 07:57:54 +02:00
|
|
|
for i, c := range cols {
|
2016-08-13 16:01:06 +02:00
|
|
|
buf.WriteString(fmt.Sprintf(`"%s"=$%d`, c, start+i))
|
|
|
|
if i < len(cols)-1 {
|
|
|
|
buf.WriteString(" AND ")
|
|
|
|
}
|
2016-08-08 18:52:34 +02:00
|
|
|
}
|
|
|
|
|
2016-08-13 16:01:06 +02:00
|
|
|
return buf.String()
|
2016-08-08 18:52:34 +02:00
|
|
|
}
|
|
|
|
|
2016-06-27 08:54:23 +02:00
|
|
|
// JoinSlices merges two string slices of equal length
|
|
|
|
func JoinSlices(sep string, a, b []string) []string {
|
|
|
|
lna, lnb := len(a), len(b)
|
|
|
|
if lna != lnb {
|
|
|
|
panic("joinSlices: can only merge slices of same length")
|
|
|
|
} else if lna == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := make([]string, len(a))
|
|
|
|
for i, elem := range a {
|
|
|
|
ret[i] = fmt.Sprintf("%s%s%s", elem, sep, b[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|