2016-06-12 20:19:23 +02:00
|
|
|
package main
|
2016-06-12 03:25:00 +02:00
|
|
|
|
|
|
|
import (
|
2016-06-20 07:22:50 +02:00
|
|
|
"fmt"
|
2016-06-12 03:25:00 +02:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"text/template"
|
|
|
|
|
2016-06-23 08:09:56 +02:00
|
|
|
"github.com/nullbio/sqlboiler/bdb"
|
2016-06-12 03:25:00 +02:00
|
|
|
"github.com/nullbio/sqlboiler/strmangle"
|
|
|
|
)
|
|
|
|
|
|
|
|
// templateData for sqlboiler templates
|
|
|
|
type templateData struct {
|
2016-06-23 08:09:56 +02:00
|
|
|
Tables []bdb.Table
|
|
|
|
Table bdb.Table
|
2016-06-12 03:25:00 +02:00
|
|
|
DriverName string
|
|
|
|
PkgName string
|
2016-06-20 07:22:50 +02:00
|
|
|
|
|
|
|
StringFuncs map[string]func(string) string
|
2016-06-12 03:25:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type templateList []*template.Template
|
|
|
|
|
|
|
|
func (t templateList) Len() int {
|
|
|
|
return len(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t templateList) Swap(k, j int) {
|
|
|
|
t[k], t[j] = t[j], t[k]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t templateList) Less(k, j int) bool {
|
|
|
|
// Make sure "struct" goes to the front
|
|
|
|
if t[k].Name() == "struct.tpl" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
res := strings.Compare(t[k].Name(), t[j].Name())
|
|
|
|
if res <= 0 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadTemplates loads all of the template files in the specified directory.
|
|
|
|
func loadTemplates(dir string) (templateList, error) {
|
|
|
|
wd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
pattern := filepath.Join(wd, dir, "*.tpl")
|
|
|
|
tpl, err := template.New("").Funcs(templateFunctions).ParseGlob(pattern)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
templates := templateList(tpl.Templates())
|
|
|
|
sort.Sort(templates)
|
|
|
|
|
|
|
|
return templates, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// loadTemplate loads a single template file.
|
|
|
|
func loadTemplate(dir string, filename string) (*template.Template, error) {
|
|
|
|
wd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
pattern := filepath.Join(wd, dir, filename)
|
|
|
|
tpl, err := template.New("").Funcs(templateFunctions).ParseFiles(pattern)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tpl.Lookup(filename), err
|
|
|
|
}
|
|
|
|
|
2016-06-20 07:22:50 +02:00
|
|
|
// templateStringMappers are placed into the data to make it easy to use the
|
|
|
|
// stringMap function.
|
|
|
|
var templateStringMappers = map[string]func(string) string{
|
2016-06-20 07:57:46 +02:00
|
|
|
// String ops
|
|
|
|
"quoteWrap": func(a string) string { return fmt.Sprintf(`"%s"`, a) },
|
|
|
|
|
|
|
|
// Pluralization
|
2016-06-20 07:22:50 +02:00
|
|
|
"singular": strmangle.Singular,
|
|
|
|
"plural": strmangle.Plural,
|
|
|
|
|
|
|
|
// Casing
|
|
|
|
"toLower": strings.ToLower,
|
|
|
|
"toUpper": strings.ToUpper,
|
|
|
|
"titleCase": strmangle.TitleCase,
|
|
|
|
"camelCase": strmangle.CamelCase,
|
|
|
|
}
|
|
|
|
|
2016-06-12 03:25:00 +02:00
|
|
|
// templateFunctions is a map of all the functions that get passed into the
|
|
|
|
// templates. If you wish to pass a new function into your own template,
|
|
|
|
// add a function pointer here.
|
|
|
|
var templateFunctions = template.FuncMap{
|
2016-06-20 07:22:50 +02:00
|
|
|
// String ops
|
2016-07-06 08:02:35 +02:00
|
|
|
"substring": strmangle.Substring,
|
|
|
|
"trimPrefix": func(pre, str string) string { return strings.TrimPrefix(str, pre) },
|
|
|
|
"remove": func(rem, str string) string { return strings.Replace(str, rem, "", -1) },
|
|
|
|
"replace": func(rep, with, str string) string { return strings.Replace(str, rep, with, -1) },
|
|
|
|
"prefix": func(add, str string) string { return fmt.Sprintf("%s%s", add, str) },
|
|
|
|
"quoteWrap": func(a string) string { return fmt.Sprintf(`"%s"`, a) },
|
2016-07-06 08:04:54 +02:00
|
|
|
"id": strmangle.Identifier,
|
2016-06-20 07:22:50 +02:00
|
|
|
|
|
|
|
// Pluralization
|
|
|
|
"singular": strmangle.Singular,
|
|
|
|
"plural": strmangle.Plural,
|
|
|
|
|
|
|
|
// Casing
|
|
|
|
"toLower": strings.ToLower,
|
|
|
|
"toUpper": strings.ToUpper,
|
|
|
|
"titleCase": strmangle.TitleCase,
|
|
|
|
"camelCase": strmangle.CamelCase,
|
|
|
|
|
|
|
|
// String Slice ops
|
|
|
|
"join": func(sep string, slice []string) string { return strings.Join(slice, sep) },
|
2016-06-27 08:54:23 +02:00
|
|
|
"joinSlices": strmangle.JoinSlices,
|
2016-06-20 07:22:50 +02:00
|
|
|
"stringMap": strmangle.StringMap,
|
|
|
|
"hasElement": strmangle.HasElement,
|
|
|
|
"prefixStringSlice": strmangle.PrefixStringSlice,
|
|
|
|
|
|
|
|
// Database related mangling
|
2016-06-23 08:48:49 +02:00
|
|
|
"whereClause": strmangle.WhereClause,
|
2016-06-20 07:22:50 +02:00
|
|
|
|
|
|
|
// dbdrivers ops
|
|
|
|
"driverUsesLastInsertID": strmangle.DriverUsesLastInsertID,
|
|
|
|
"makeDBName": strmangle.MakeDBName,
|
2016-06-23 08:48:49 +02:00
|
|
|
"filterColumnsByDefault": bdb.FilterColumnsByDefault,
|
2016-07-06 08:02:35 +02:00
|
|
|
"filterColumnsBySimpleDefault": bdb.FilterColumnsBySimpleDefault,
|
2016-06-23 08:48:49 +02:00
|
|
|
"filterColumnsByAutoIncrement": bdb.FilterColumnsByAutoIncrement,
|
|
|
|
"autoIncPrimaryKey": bdb.AutoIncPrimaryKey,
|
|
|
|
"sqlColDefinitions": bdb.SQLColDefinitions,
|
|
|
|
"sqlColDefStrings": bdb.SQLColDefStrings,
|
|
|
|
"columnNames": bdb.ColumnNames,
|
2016-06-26 05:19:13 +02:00
|
|
|
"toManyRelationships": bdb.ToManyRelationships,
|
2016-07-06 08:02:35 +02:00
|
|
|
"zeroValue": bdb.ZeroValue,
|
2016-07-08 18:39:36 +02:00
|
|
|
"defaultValues": bdb.DefaultValues,
|
2016-06-12 03:25:00 +02:00
|
|
|
}
|