gorm/main.go

455 lines
11 KiB
Go
Raw Normal View History

2013-10-25 14:04:48 +04:00
package gorm
2013-11-16 07:36:30 +04:00
import (
"database/sql"
2014-07-30 16:48:36 +04:00
"errors"
"fmt"
"reflect"
2015-01-20 07:15:24 +03:00
"strings"
"time"
2013-11-16 14:01:44 +04:00
)
2013-11-10 18:29:53 +04:00
// NowFunc returns current time, this function is exported in order to be able
// to give the flexiblity to the developer to costumize it accoring to their
// needs
//
// e.g: return time.Now().UTC()
//
var NowFunc = func() time.Time {
return time.Now()
}
2013-10-25 14:04:48 +04:00
type DB struct {
2014-01-04 11:08:00 +04:00
Value interface{}
2014-01-23 12:43:39 +04:00
Error error
2014-06-05 13:58:14 +04:00
RowsAffected int64
callback *callback
2013-11-16 07:36:30 +04:00
db sqlCommon
parent *DB
search *search
2014-01-23 12:43:39 +04:00
logMode int
logger logger
dialect Dialect
2013-11-16 07:36:30 +04:00
singularTable bool
source string
2014-08-20 12:25:01 +04:00
values map[string]interface{}
2013-10-25 14:04:48 +04:00
}
func Open(dialect string, args ...interface{}) (DB, error) {
var db DB
2014-01-23 12:43:39 +04:00
var err error
if len(args) == 0 {
err = errors.New("invalid database source")
2015-02-17 17:55:14 +03:00
} else {
var source string
var dbSql sqlCommon
switch value := args[0].(type) {
case string:
var driver = dialect
if len(args) == 1 {
source = value
} else if len(args) >= 2 {
driver = value
source = args[1].(string)
}
dbSql, err = sql.Open(driver, source)
case sqlCommon:
source = reflect.Indirect(reflect.ValueOf(value)).FieldByName("dsn").String()
dbSql = value
}
2015-02-17 17:55:14 +03:00
db = DB{
dialect: NewDialect(dialect),
logger: defaultLogger,
callback: DefaultCallback,
source: source,
values: map[string]interface{}{},
db: dbSql,
}
2015-02-17 17:55:14 +03:00
db.parent = &db
}
2014-01-23 12:43:39 +04:00
return db, err
2013-10-25 14:04:48 +04:00
}
2014-04-24 06:54:27 +04:00
func (s *DB) Close() error {
return s.parent.db.(*sql.DB).Close()
}
func (s *DB) DB() *sql.DB {
return s.db.(*sql.DB)
}
2015-01-06 10:11:41 +03:00
func (s *DB) New() *DB {
clone := s.clone()
clone.search = nil
return clone
2015-01-06 10:11:41 +03:00
}
2015-02-17 17:55:14 +03:00
// CommonDB Return the underlying sql.DB or sql.Tx instance.
// Use of this method is discouraged. It's mainly intended to allow
// coexistence with legacy non-GORM code.
func (s *DB) CommonDB() sqlCommon {
return s.db
}
2014-01-29 06:25:58 +04:00
func (s *DB) Callback() *callback {
s.parent.callback = s.parent.callback.clone()
return s.parent.callback
}
2014-01-03 15:23:41 +04:00
func (s *DB) SetLogger(l logger) {
2013-11-16 07:36:30 +04:00
s.parent.logger = l
2013-11-11 05:05:14 +04:00
}
2015-02-17 17:55:14 +03:00
func (s *DB) LogMode(enable bool) *DB {
if enable {
s.logMode = 2
} else {
s.logMode = 1
}
2013-11-16 11:01:31 +04:00
return s
2013-11-16 07:36:30 +04:00
}
2015-02-17 17:55:14 +03:00
func (s *DB) SingularTable(enable bool) {
s.parent.singularTable = enable
2013-11-16 07:36:30 +04:00
}
func (s *DB) Where(query interface{}, args ...interface{}) *DB {
return s.clone().search.where(query, args...).db
}
func (s *DB) Or(query interface{}, args ...interface{}) *DB {
2013-11-16 11:01:31 +04:00
return s.clone().search.or(query, args...).db
2013-11-16 07:36:30 +04:00
}
func (s *DB) Not(query interface{}, args ...interface{}) *DB {
return s.clone().search.not(query, args...).db
}
func (s *DB) Limit(value interface{}) *DB {
return s.clone().search.limit(value).db
}
func (s *DB) Offset(value interface{}) *DB {
return s.clone().search.offset(value).db
}
func (s *DB) Order(value string, reorder ...bool) *DB {
return s.clone().search.order(value, reorder...).db
2013-11-11 07:11:49 +04:00
}
func (s *DB) Select(query interface{}, args ...interface{}) *DB {
return s.clone().search.selects(query, args...).db
2013-11-06 17:43:41 +04:00
}
2013-11-17 09:22:09 +04:00
func (s *DB) Group(query string) *DB {
return s.clone().search.group(query).db
}
func (s *DB) Having(query string, values ...interface{}) *DB {
return s.clone().search.having(query, values...).db
}
func (s *DB) Joins(query string) *DB {
return s.clone().search.joins(query).db
}
2013-11-18 10:35:44 +04:00
func (s *DB) Scopes(funcs ...func(*DB) *DB) *DB {
for _, f := range funcs {
2015-02-17 17:55:14 +03:00
s = f(s)
2013-11-18 10:35:44 +04:00
}
2015-02-17 17:55:14 +03:00
return s
2013-11-18 10:35:44 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) Unscoped() *DB {
return s.clone().search.unscoped().db
2013-10-25 14:04:48 +04:00
}
2014-01-28 05:48:44 +04:00
func (s *DB) Attrs(attrs ...interface{}) *DB {
return s.clone().search.attrs(attrs...).db
}
func (s *DB) Assign(attrs ...interface{}) *DB {
return s.clone().search.assign(attrs...).db
}
2013-11-16 07:36:30 +04:00
func (s *DB) First(out interface{}, where ...interface{}) *DB {
newScope := s.clone().NewScope(out)
2015-02-17 17:55:14 +03:00
newScope.Search = newScope.Search.clone().limit(1)
return newScope.InstanceSet("gorm:order_by_primary_key", "ASC").
inlineCondition(where...).callCallbacks(s.parent.callback.queries).db
2013-10-25 14:04:48 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) Last(out interface{}, where ...interface{}) *DB {
newScope := s.clone().NewScope(out)
2015-02-17 17:55:14 +03:00
newScope.Search = newScope.Search.clone().limit(1)
return newScope.InstanceSet("gorm:order_by_primary_key", "DESC").
inlineCondition(where...).callCallbacks(s.parent.callback.queries).db
2013-10-31 13:31:00 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) Find(out interface{}, where ...interface{}) *DB {
2014-01-28 08:28:44 +04:00
return s.clone().NewScope(out).inlineCondition(where...).callCallbacks(s.parent.callback.queries).db
2013-10-25 14:04:48 +04:00
}
2013-11-17 08:02:22 +04:00
func (s *DB) Row() *sql.Row {
2014-01-28 05:48:44 +04:00
return s.NewScope(s.Value).row()
2013-11-17 08:02:22 +04:00
}
func (s *DB) Rows() (*sql.Rows, error) {
2014-01-28 05:48:44 +04:00
return s.NewScope(s.Value).rows()
2013-11-17 08:02:22 +04:00
}
2014-01-03 14:14:51 +04:00
func (s *DB) Scan(dest interface{}) *DB {
scope := s.clone().NewScope(s.Value).InstanceSet("gorm:query_destination", dest)
2014-01-28 05:48:44 +04:00
Query(scope)
return scope.db
2013-10-30 11:21:58 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) FirstOrInit(out interface{}, where ...interface{}) *DB {
2013-11-16 14:01:44 +04:00
c := s.clone()
2015-02-17 17:55:14 +03:00
if result := c.First(out, where...); result.Error != nil {
if !result.RecordNotFound() {
return result
}
2014-01-28 08:28:44 +04:00
c.NewScope(out).inlineCondition(where...).initialize()
2014-01-28 06:23:31 +04:00
} else {
2014-01-28 12:56:51 +04:00
c.NewScope(out).updatedAttrsWithValues(convertInterfaceToMap(s.search.AssignAttrs), false)
2013-11-16 07:36:30 +04:00
}
2013-11-16 14:01:44 +04:00
return c
2013-10-31 04:15:19 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) FirstOrCreate(out interface{}, where ...interface{}) *DB {
2013-11-16 14:01:44 +04:00
c := s.clone()
2015-02-17 17:55:14 +03:00
if result := c.First(out, where...); result.Error != nil {
if !result.RecordNotFound() {
return result
}
2014-01-28 08:28:44 +04:00
c.NewScope(out).inlineCondition(where...).initialize().callCallbacks(s.parent.callback.creates)
} else if len(c.search.AssignAttrs) > 0 {
c.NewScope(out).InstanceSet("gorm:update_interface", s.search.AssignAttrs).callCallbacks(s.parent.callback.updates)
2013-11-16 07:36:30 +04:00
}
2013-11-16 14:01:44 +04:00
return c
}
2013-11-16 08:19:35 +04:00
func (s *DB) Update(attrs ...interface{}) *DB {
return s.Updates(toSearchableMap(attrs...), true)
}
2014-01-27 07:06:13 +04:00
func (s *DB) Updates(values interface{}, ignoreProtectedAttrs ...bool) *DB {
return s.clone().NewScope(s.Value).
2014-01-27 18:36:08 +04:00
Set("gorm:ignore_protected_attrs", len(ignoreProtectedAttrs) > 0).
InstanceSet("gorm:update_interface", values).
2014-01-27 18:36:08 +04:00
callCallbacks(s.parent.callback.updates).db
2013-11-16 08:19:35 +04:00
}
2013-11-17 17:39:50 +04:00
func (s *DB) UpdateColumn(attrs ...interface{}) *DB {
return s.UpdateColumns(toSearchableMap(attrs...))
2013-11-17 17:39:50 +04:00
}
func (s *DB) UpdateColumns(values interface{}) *DB {
return s.clone().NewScope(s.Value).
Set("gorm:update_column", true).
InstanceSet("gorm:update_interface", values).
callCallbacks(s.parent.callback.updates).db
2013-11-17 17:39:50 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) Save(value interface{}) *DB {
2014-01-27 04:26:59 +04:00
scope := s.clone().NewScope(value)
2014-01-26 15:34:06 +04:00
if scope.PrimaryKeyZero() {
2014-01-27 07:06:13 +04:00
return scope.callCallbacks(s.parent.callback.creates).db
2014-01-26 15:34:06 +04:00
}
2015-02-17 03:34:01 +03:00
return scope.callCallbacks(s.parent.callback.updates).db
}
func (s *DB) Create(value interface{}) *DB {
scope := s.clone().NewScope(value)
return scope.callCallbacks(s.parent.callback.creates).db
}
2014-07-24 14:30:12 +04:00
func (s *DB) Delete(value interface{}, where ...interface{}) *DB {
return s.clone().NewScope(value).inlineCondition(where...).callCallbacks(s.parent.callback.deletes).db
2013-10-25 14:04:48 +04:00
}
2014-01-03 14:14:51 +04:00
func (s *DB) Raw(sql string, values ...interface{}) *DB {
2014-01-28 12:56:51 +04:00
return s.clone().search.raw(true).where(sql, values...).db
2014-01-03 14:14:51 +04:00
}
func (s *DB) Exec(sql string, values ...interface{}) *DB {
2014-01-28 06:29:12 +04:00
scope := s.clone().NewScope(nil)
2015-01-20 07:15:24 +03:00
generatedSql := scope.buildWhereCondition(map[string]interface{}{"query": sql, "args": values})
generatedSql = strings.TrimSuffix(strings.TrimPrefix(generatedSql, "("), ")")
scope.Raw(generatedSql)
2014-01-28 06:29:12 +04:00
return scope.Exec().db
2013-10-25 14:04:48 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) Model(value interface{}) *DB {
c := s.clone()
2014-01-04 11:08:00 +04:00
c.Value = value
2013-11-16 07:36:30 +04:00
return c
2013-10-25 14:04:48 +04:00
}
2014-01-28 13:09:43 +04:00
func (s *DB) Related(value interface{}, foreignKeys ...string) *DB {
return s.clone().NewScope(s.Value).related(value, foreignKeys...).db
2013-10-25 14:04:48 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) Pluck(column string, value interface{}) *DB {
2014-01-28 07:37:32 +04:00
return s.NewScope(s.Value).pluck(column, value).db
2013-10-25 14:04:48 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) Count(value interface{}) *DB {
2014-01-28 07:38:53 +04:00
return s.NewScope(s.Value).count(value).db
2013-10-25 14:04:48 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) Table(name string) *DB {
return s.clone().search.table(name).db
2013-10-25 14:04:48 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) Debug() *DB {
2013-11-16 11:01:31 +04:00
return s.clone().LogMode(true)
2013-11-16 07:36:30 +04:00
}
func (s *DB) Begin() *DB {
c := s.clone()
if db, ok := c.db.(sqlDb); ok {
tx, err := db.Begin()
c.db = interface{}(tx).(sqlCommon)
c.err(err)
} else {
2013-11-16 14:01:44 +04:00
c.err(CantStartTransaction)
2013-11-16 07:36:30 +04:00
}
return c
}
2013-11-16 07:36:30 +04:00
func (s *DB) Commit() *DB {
if db, ok := s.db.(sqlTx); ok {
s.err(db.Commit())
} else {
s.err(NoValidTransaction)
}
return s
}
func (s *DB) Rollback() *DB {
if db, ok := s.db.(sqlTx); ok {
s.err(db.Rollback())
} else {
s.err(NoValidTransaction)
}
return s
2013-10-25 14:04:48 +04:00
}
2013-10-26 11:47:30 +04:00
2013-11-23 17:38:31 +04:00
func (s *DB) NewRecord(value interface{}) bool {
2014-01-28 06:23:31 +04:00
return s.clone().NewScope(value).PrimaryKeyZero()
2013-11-23 17:38:31 +04:00
}
2013-11-24 07:29:37 +04:00
func (s *DB) RecordNotFound() bool {
return s.Error == RecordNotFound
}
2013-11-16 07:36:30 +04:00
// Migrations
func (s *DB) CreateTable(value interface{}) *DB {
2014-01-28 11:54:19 +04:00
return s.clone().NewScope(value).createTable().db
2013-10-27 04:06:01 +04:00
}
2013-11-16 07:36:30 +04:00
func (s *DB) DropTable(value interface{}) *DB {
2014-01-28 11:54:19 +04:00
return s.clone().NewScope(value).dropTable().db
2013-10-28 16:27:25 +04:00
}
2014-08-05 18:14:40 +04:00
func (s *DB) DropTableIfExists(value interface{}) *DB {
return s.clone().NewScope(value).dropTableIfExists().db
}
2014-08-29 09:28:54 +04:00
func (s *DB) HasTable(value interface{}) bool {
scope := s.clone().NewScope(value)
tableName := scope.TableName()
return scope.Dialect().HasTable(scope, tableName)
}
2014-08-20 07:56:39 +04:00
func (s *DB) AutoMigrate(values ...interface{}) *DB {
db := s.clone()
for _, value := range values {
db = db.NewScope(value).NeedPtr().autoMigrate().db
2014-08-20 07:56:39 +04:00
}
return db
2013-10-26 11:47:30 +04:00
}
2013-11-01 11:01:39 +04:00
2013-11-17 16:38:43 +04:00
func (s *DB) ModifyColumn(column string, typ string) *DB {
2014-01-28 11:54:19 +04:00
s.clone().NewScope(s.Value).modifyColumn(column, typ)
2013-11-16 07:36:30 +04:00
return s
2013-11-01 11:01:39 +04:00
}
2013-11-07 05:09:54 +04:00
2013-11-16 07:36:30 +04:00
func (s *DB) DropColumn(column string) *DB {
2014-01-28 11:54:19 +04:00
s.clone().NewScope(s.Value).dropColumn(column)
2013-11-16 07:36:30 +04:00
return s
2013-11-07 05:09:54 +04:00
}
2013-11-11 09:16:08 +04:00
2014-06-01 02:12:31 +04:00
func (s *DB) AddIndex(indexName string, column ...string) *DB {
2014-06-01 02:35:56 +04:00
s.clone().NewScope(s.Value).addIndex(false, indexName, column...)
return s
}
2015-02-07 14:04:10 +03:00
/*
Add foreign key to the given scope
Example:
db.Model(&User{}).AddForeignKey("city_id", "cities(id)", "RESTRICT", "RESTRICT")
*/
func (s *DB) AddForeignKey(field string, dest string, onDelete string, onUpdate string) *DB {
s.clone().NewScope(s.Value).addForeignKey(field, dest, onDelete, onUpdate)
return s
}
2014-06-01 02:35:56 +04:00
func (s *DB) AddUniqueIndex(indexName string, column ...string) *DB {
s.clone().NewScope(s.Value).addIndex(true, indexName, column...)
2013-11-16 07:36:30 +04:00
return s
2013-11-11 11:48:31 +04:00
}
2014-07-29 13:28:10 +04:00
func (s *DB) RemoveIndex(indexName string) *DB {
s.clone().NewScope(s.Value).removeIndex(indexName)
return s
}
2014-07-30 10:30:21 +04:00
func (s *DB) Association(column string) *Association {
2015-02-17 17:55:14 +03:00
var err error
2014-07-30 10:30:21 +04:00
scope := s.clone().NewScope(s.Value)
2014-07-30 16:48:36 +04:00
2015-02-17 17:55:14 +03:00
if primaryField := scope.PrimaryKeyField(); primaryField.IsBlank {
err = errors.New("primary key can't be nil")
2014-07-30 16:48:36 +04:00
} else {
2015-02-17 17:55:14 +03:00
if field, ok := scope.FieldByName(column); ok {
if field.Relationship == nil || field.Relationship.ForeignFieldName == "" {
err = fmt.Errorf("invalid association %v for %v", column, scope.IndirectValue().Type())
} else {
return &Association{Scope: scope, Column: column, PrimaryKey: primaryField.Field.Interface(), Field: field}
}
} else {
err = fmt.Errorf("%v doesn't have column %v", scope.IndirectValue().Type(), column)
}
2014-07-30 16:48:36 +04:00
}
2015-02-17 17:55:14 +03:00
return &Association{Error: err}
2013-11-11 09:16:08 +04:00
}
2014-08-20 12:25:01 +04:00
2015-02-01 18:19:29 +03:00
func (s *DB) Preload(column string, conditions ...interface{}) *DB {
return s.clone().search.preload(column, conditions...).db
}
2014-08-20 12:25:01 +04:00
// Set set value by name
func (s *DB) Set(name string, value interface{}) *DB {
2014-08-25 13:10:46 +04:00
return s.clone().InstantSet(name, value)
}
2014-08-25 13:10:46 +04:00
func (s *DB) InstantSet(name string, value interface{}) *DB {
2014-08-20 12:25:01 +04:00
s.values[name] = value
return s
}
// Get get value by name
func (s *DB) Get(name string) (value interface{}, ok bool) {
value, ok = s.values[name]
return
}