sqlboiler/bdb/interface.go

115 lines
2.9 KiB
Go
Raw Normal View History

// Package bdb supplies the sql(b)oiler (d)ata(b)ase abstractions.
package bdb
import "github.com/pkg/errors"
2016-04-03 09:15:35 +02:00
2016-03-23 05:25:57 +01:00
// Interface for a database driver. Functionality required to support a specific
// database type (eg, MySQL, Postgres etc.)
type Interface interface {
2016-04-03 09:15:35 +02:00
TableNames() ([]string, error)
Columns(tableName string) ([]Column, error)
PrimaryKeyInfo(tableName string) (*PrimaryKey, error)
ForeignKeyInfo(tableName string) ([]ForeignKey, error)
2016-03-23 05:25:57 +01:00
2016-04-03 09:15:35 +02:00
// TranslateColumnType takes a Database column type and returns a go column type.
TranslateColumnType(Column) Column
2016-08-14 01:27:34 +02:00
// UseLastInsertID should return true if the driver is capable of using
// the sql.Exec result's LastInsertId
UseLastInsertID() bool
// Open the database connection
Open() error
// Close the database connection
Close()
}
2016-04-03 09:15:35 +02:00
// Tables returns the table metadata for the given tables, or all tables if
// no tables are provided.
2016-08-15 14:42:40 +02:00
func Tables(db Interface) ([]Table, error) {
2016-04-03 09:15:35 +02:00
var err error
2016-08-15 14:42:40 +02:00
names, err := db.TableNames()
if err != nil {
return nil, errors.Wrap(err, "unable to get table names")
2016-04-03 09:15:35 +02:00
}
var tables []Table
for _, name := range names {
t := Table{Name: name}
if t.Columns, err = db.Columns(name); err != nil {
return nil, errors.Wrapf(err, "unable to fetch table column info (%s)", name)
2016-04-03 09:15:35 +02:00
}
for i, c := range t.Columns {
t.Columns[i] = db.TranslateColumnType(c)
}
if t.PKey, err = db.PrimaryKeyInfo(name); err != nil {
return nil, errors.Wrapf(err, "unable to fetch table pkey info (%s)", name)
2016-04-03 09:15:35 +02:00
}
if t.FKeys, err = db.ForeignKeyInfo(name); err != nil {
return nil, errors.Wrapf(err, "unable to fetch table fkey info (%s)", name)
2016-04-03 09:15:35 +02:00
}
setIsJoinTable(&t)
tables = append(tables, t)
}
// Relationships have a dependency on foreign key nullability.
for i := range tables {
tbl := &tables[i]
2016-07-15 21:09:32 +02:00
setForeignKeyConstraints(tbl, tables)
}
for i := range tables {
tbl := &tables[i]
setRelationships(tbl, tables)
}
2016-04-03 09:15:35 +02:00
return tables, nil
}
// setIsJoinTable if there are:
// A composite primary key involving two columns
2016-04-03 10:02:41 +02:00
// Both primary key columns are also foreign keys
2016-04-03 09:15:35 +02:00
func setIsJoinTable(t *Table) {
2016-04-03 10:02:41 +02:00
if t.PKey == nil || len(t.PKey.Columns) != 2 || len(t.FKeys) < 2 {
2016-04-03 09:15:35 +02:00
return
}
for _, c := range t.PKey.Columns {
found := false
for _, f := range t.FKeys {
if c == f.Column {
found = true
break
}
}
if !found {
return
}
}
t.IsJoinTable = true
}
2016-07-15 21:09:32 +02:00
func setForeignKeyConstraints(t *Table, tables []Table) {
for i, fkey := range t.FKeys {
localColumn := t.GetColumn(fkey.Column)
foreignTable := GetTable(tables, fkey.ForeignTable)
foreignColumn := foreignTable.GetColumn(fkey.ForeignColumn)
t.FKeys[i].Nullable = localColumn.Nullable
2016-07-15 21:09:32 +02:00
t.FKeys[i].Unique = localColumn.Unique
t.FKeys[i].ForeignColumnNullable = foreignColumn.Nullable
2016-07-15 21:09:32 +02:00
t.FKeys[i].ForeignColumnUnique = foreignColumn.Unique
}
}
func setRelationships(t *Table, tables []Table) {
t.ToManyRelationships = toManyRelationships(*t, tables)
}