gorm/main.go

450 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
tagIdentifier string
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
var source string
var dbSql sqlCommon
if len(args) == 0 {
err = errors.New("invalid database source")
}
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
}
db = DB{dialect: NewDialect(dialect), tagIdentifier: "sql",
logger: defaultLogger, callback: DefaultCallback, source: source,
values: map[string]interface{}{}}
db.db = dbSql
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 {
s.search = nil
return s.clone()
}
// 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
}
2013-11-13 20:03:31 +04:00
func (s *DB) SetTagIdentifier(str string) {
2013-11-16 07:36:30 +04:00
s.parent.tagIdentifier = str
2013-11-13 20:03:31 +04:00
}
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
}
2013-11-16 11:01:31 +04:00
func (s *DB) LogMode(b bool) *DB {
if b {
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
}
func (s *DB) SingularTable(b bool) {
s.parent.singularTable = b
}
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 {
c := s
for _, f := range funcs {
c = f(c)
}
return c
}
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)
newScope.Search = newScope.Search.clone()
newScope.Search.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)
newScope.Search = newScope.Search.clone()
newScope.Search.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()
r := c.First(out, where...)
if r.Error != nil {
if !r.RecordNotFound() {
return r
}
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()
r := c.First(out, where...)
if r.Error != nil {
if !r.RecordNotFound() {
return r
}
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
} else {
2014-01-27 07:06:13 +04:00
return scope.callCallbacks(s.parent.callback.updates).db
2014-01-26 15:34:06 +04:00
}
}
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
}
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 {
scope := s.clone().NewScope(s.Value)
2014-07-30 16:48:36 +04:00
primaryKey := scope.PrimaryKeyValue()
primaryType := scope.TableName()
2014-07-30 16:48:36 +04:00
if reflect.DeepEqual(reflect.ValueOf(primaryKey), reflect.Zero(reflect.ValueOf(primaryKey).Type())) {
scope.Err(errors.New("primary key can't be nil"))
}
var field *Field
2014-08-28 13:21:43 +04:00
var ok bool
if field, ok = scope.FieldByName(SnakeToUpperCamel(column)); ok {
2014-07-31 07:08:26 +04:00
if field.Relationship == nil || field.Relationship.ForeignKey == "" {
2014-08-28 13:21:43 +04:00
scope.Err(fmt.Errorf("invalid association %v for %v", column, scope.IndirectValue().Type()))
2014-07-30 16:48:36 +04:00
}
} else {
2014-08-28 13:21:43 +04:00
scope.Err(fmt.Errorf("%v doesn't have column %v", scope.IndirectValue().Type(), column))
2014-07-30 16:48:36 +04:00
}
return &Association{Scope: scope, Column: column, Error: s.Error, PrimaryKey: primaryKey, PrimaryType: primaryType, Field: field}
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
}