123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- // Copyright GoFrame Author(https://github.com/gogf/gf). All Rights Reserved.
- //
- // This Source Code Form is subject to the terms of the MIT License.
- // If a copy of the MIT was not distributed with this file,
- // You can obtain one at https://github.com/gogf/gf.
- package gins
- import (
- "fmt"
- "github.com/gogf/gf/errors/gerror"
- "github.com/gogf/gf/internal/intlog"
- "github.com/gogf/gf/text/gstr"
- "github.com/gogf/gf/util/gutil"
- "github.com/gogf/gf/database/gdb"
- "github.com/gogf/gf/text/gregex"
- "github.com/gogf/gf/util/gconv"
- )
- const (
- frameCoreComponentNameDatabase = "gf.core.component.database"
- configNodeNameDatabase = "database"
- )
- // Database returns an instance of database ORM object
- // with specified configuration group name.
- func Database(name ...string) gdb.DB {
- group := gdb.DefaultGroupName
- if len(name) > 0 && name[0] != "" {
- group = name[0]
- }
- instanceKey := fmt.Sprintf("%s.%s", frameCoreComponentNameDatabase, group)
- db := instances.GetOrSetFuncLock(instanceKey, func() interface{} {
- var (
- configMap map[string]interface{}
- configNodeKey string
- )
- // It firstly searches the configuration of the instance name.
- if Config().Available() {
- configNodeKey, _ = gutil.MapPossibleItemByKey(
- Config().GetMap("."),
- configNodeNameDatabase,
- )
- if configNodeKey == "" {
- configNodeKey = configNodeNameDatabase
- }
- configMap = Config().GetMap(configNodeKey)
- }
- if len(configMap) == 0 && !gdb.IsConfigured() {
- if !Config().Available() {
- exampleFileName := "config.example.toml"
- if Config().Available(exampleFileName) {
- panic(gerror.Newf(
- `configuration file "%s" not found, but found "%s", did you miss renaming the configuration example file?`,
- Config().GetFileName(),
- exampleFileName,
- ))
- } else {
- panic(gerror.Newf(
- `configuration file "%s" not found, did you miss the configuration file or the file name setting?`,
- Config().GetFileName(),
- ))
- }
- }
- panic(gerror.Newf(
- `database initialization failed: "%s" node not found, is configuration file or configuration node missing?`,
- configNodeNameDatabase,
- ))
- }
- if len(configMap) == 0 {
- configMap = make(map[string]interface{})
- }
- // Parse <m> as map-slice and adds it to gdb's global configurations.
- for g, groupConfig := range configMap {
- cg := gdb.ConfigGroup{}
- switch value := groupConfig.(type) {
- case []interface{}:
- for _, v := range value {
- if node := parseDBConfigNode(v); node != nil {
- cg = append(cg, *node)
- }
- }
- case map[string]interface{}:
- if node := parseDBConfigNode(value); node != nil {
- cg = append(cg, *node)
- }
- }
- if len(cg) > 0 {
- if gdb.GetConfig(group) == nil {
- intlog.Printf("add configuration for group: %s, %#v", g, cg)
- gdb.SetConfigGroup(g, cg)
- } else {
- intlog.Printf("ignore configuration as it already exists for group: %s, %#v", g, cg)
- intlog.Printf("%s, %#v", g, cg)
- }
- }
- }
- // Parse <m> as a single node configuration,
- // which is the default group configuration.
- if node := parseDBConfigNode(configMap); node != nil {
- cg := gdb.ConfigGroup{}
- if node.LinkInfo != "" || node.Host != "" {
- cg = append(cg, *node)
- }
- if len(cg) > 0 {
- if gdb.GetConfig(group) == nil {
- intlog.Printf("add configuration for group: %s, %#v", gdb.DefaultGroupName, cg)
- gdb.SetConfigGroup(gdb.DefaultGroupName, cg)
- } else {
- intlog.Printf("ignore configuration as it already exists for group: %s, %#v", gdb.DefaultGroupName, cg)
- intlog.Printf("%s, %#v", gdb.DefaultGroupName, cg)
- }
- }
- }
- // Create a new ORM object with given configurations.
- if db, err := gdb.New(name...); err == nil {
- if Config().Available() {
- // Initialize logger for ORM.
- var loggerConfigMap map[string]interface{}
- loggerConfigMap = Config().GetMap(fmt.Sprintf("%s.%s", configNodeKey, configNodeNameLogger))
- if len(loggerConfigMap) == 0 {
- loggerConfigMap = Config().GetMap(configNodeKey)
- }
- if len(loggerConfigMap) > 0 {
- if err := db.GetLogger().SetConfigWithMap(loggerConfigMap); err != nil {
- panic(err)
- }
- }
- }
- return db
- } else {
- // It panics often because it dose not find its configuration for given group.
- panic(err)
- }
- return nil
- })
- if db != nil {
- return db.(gdb.DB)
- }
- return nil
- }
- func parseDBConfigNode(value interface{}) *gdb.ConfigNode {
- nodeMap, ok := value.(map[string]interface{})
- if !ok {
- return nil
- }
- node := &gdb.ConfigNode{}
- err := gconv.Struct(nodeMap, node)
- if err != nil {
- panic(err)
- }
- if _, v := gutil.MapPossibleItemByKey(nodeMap, "link"); v != nil {
- node.LinkInfo = gconv.String(v)
- }
- // Parse link syntax.
- if node.LinkInfo != "" && node.Type == "" {
- match, _ := gregex.MatchString(`([a-z]+):(.+)`, node.LinkInfo)
- if len(match) == 3 {
- node.Type = gstr.Trim(match[1])
- node.LinkInfo = gstr.Trim(match[2])
- }
- }
- return node
- }
|