package gorm import ( "context" "sync" "time" "github.com/jinzhu/gorm/clause" "github.com/jinzhu/gorm/logger" "github.com/jinzhu/gorm/schema" ) // Config GORM config type Config struct { // GORM perform single create, update, delete operations in transactions by default to ensure database data integrity // You can disable it by setting `SkipDefaultTransaction` to true SkipDefaultTransaction bool // NamingStrategy tables, columns naming strategy NamingStrategy schema.Namer // Logger Logger logger.Interface // NowFunc the function to be used when creating a new timestamp NowFunc func() time.Time } // DB GORM DB definition type DB struct { *Config Dialector Instance DB CommonDB clone bool callbacks *callbacks cacheStore *sync.Map } // Session session config when create session with Session() method type Session struct { Context context.Context Logger logger.Interface NowFunc func() time.Time } // Open initialize db session based on dialector func Open(dialector Dialector, config *Config) (db *DB, err error) { if config == nil { config = &Config{} } if config.NamingStrategy == nil { config.NamingStrategy = schema.NamingStrategy{} } if config.Logger == nil { config.Logger = logger.Default } if config.NowFunc == nil { config.NowFunc = func() time.Time { return time.Now().Local() } } db = &DB{ Config: config, Dialector: dialector, clone: true, callbacks: InitializeCallbacks(), cacheStore: &sync.Map{}, } if dialector != nil { err = dialector.Initialize(db) } return } // Session create new db session func (db *DB) Session(config *Session) *DB { var ( tx = db.getInstance() txConfig = *tx.Config ) if config.Context != nil { tx.Context = config.Context } if config.Logger != nil { txConfig.Logger = config.Logger } if config.NowFunc != nil { txConfig.NowFunc = config.NowFunc } tx.Config = &txConfig tx.clone = true return tx } // WithContext change current instance db's context to ctx func (db *DB) WithContext(ctx context.Context) *DB { return db.Session(&Session{Context: ctx}) } // Debug start debug mode func (db *DB) Debug() (tx *DB) { return db.Session(&Session{Logger: db.Logger.LogMode(logger.Info)}) } // Set store value with key into current db instance's context func (db *DB) Set(key string, value interface{}) *DB { tx := db.getInstance() tx.Statement.Settings.Store(key, value) return tx } // Get get value with key from current db instance's context func (db *DB) Get(key string) (interface{}, bool) { if db.Statement != nil { return db.Statement.Settings.Load(key) } return nil, false } // Callback returns callback manager func (db *DB) Callback() *callbacks { return db.callbacks } func (db *DB) getInstance() *DB { if db.clone { ctx := db.Instance.Context if ctx == nil { ctx = context.Background() } return &DB{ Instance: Instance{ Context: ctx, Statement: &Statement{DB: db, Clauses: map[string]clause.Clause{}}, }, Config: db.Config, Dialector: db.Dialector, DB: db.DB, callbacks: db.callbacks, cacheStore: db.cacheStore, } } return db }