2018-03-14 14:12:26 +08:00
|
|
|
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
|
2017-11-07 11:40:44 +08:00
|
|
|
// RAINBOND, Application Management Platform
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version. For any non-GPL usage of Rainbond,
|
|
|
|
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
|
|
|
|
// must be obtained first.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package db
|
|
|
|
|
|
|
|
import (
|
2017-11-30 15:03:10 +08:00
|
|
|
"errors"
|
2018-11-14 23:08:30 +08:00
|
|
|
"fmt"
|
2020-05-15 15:18:39 +08:00
|
|
|
"time"
|
2017-11-30 15:03:10 +08:00
|
|
|
|
2018-04-24 16:44:59 +08:00
|
|
|
"github.com/goodrain/rainbond/db/config"
|
|
|
|
"github.com/goodrain/rainbond/db/dao"
|
|
|
|
"github.com/goodrain/rainbond/db/mysql"
|
2017-11-07 11:40:44 +08:00
|
|
|
"github.com/jinzhu/gorm"
|
2020-09-19 17:17:28 +08:00
|
|
|
"github.com/sirupsen/logrus"
|
2017-11-07 11:40:44 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
//Manager db manager
|
|
|
|
type Manager interface {
|
|
|
|
CloseManager() error
|
|
|
|
Begin() *gorm.DB
|
2019-11-05 11:34:23 +08:00
|
|
|
EnsureEndTransactionFunc() func(tx *gorm.DB)
|
2019-12-12 11:59:02 +08:00
|
|
|
VolumeTypeDao() dao.VolumeTypeDao
|
2017-11-07 11:40:44 +08:00
|
|
|
LicenseDao() dao.LicenseDao
|
2018-05-10 17:45:23 +08:00
|
|
|
AppDao() dao.AppDao
|
2020-09-23 15:30:31 +08:00
|
|
|
ApplicationDao() dao.ApplicationDao
|
|
|
|
AppConfigGroupDao() dao.AppConfigGroupDao
|
2020-09-23 18:58:54 +08:00
|
|
|
AppConfigGroupDaoTransactions(db *gorm.DB) dao.AppConfigGroupDao
|
2020-09-23 15:30:31 +08:00
|
|
|
AppConfigGroupServiceDao() dao.AppConfigGroupServiceDao
|
2020-09-23 18:58:54 +08:00
|
|
|
AppConfigGroupServiceDaoTransactions(db *gorm.DB) dao.AppConfigGroupServiceDao
|
2020-09-23 15:30:31 +08:00
|
|
|
AppConfigGroupItemDao() dao.AppConfigGroupItemDao
|
2020-09-23 18:58:54 +08:00
|
|
|
AppConfigGroupItemDaoTransactions(db *gorm.DB) dao.AppConfigGroupItemDao
|
2020-02-21 22:43:28 +08:00
|
|
|
EnterpriseDao() dao.EnterpriseDao
|
2017-11-07 11:40:44 +08:00
|
|
|
TenantDao() dao.TenantDao
|
|
|
|
TenantDaoTransactions(db *gorm.DB) dao.TenantDao
|
|
|
|
TenantServiceDao() dao.TenantServiceDao
|
|
|
|
TenantServiceDeleteDao() dao.TenantServiceDeleteDao
|
|
|
|
TenantServiceDaoTransactions(db *gorm.DB) dao.TenantServiceDao
|
|
|
|
TenantServiceDeleteDaoTransactions(db *gorm.DB) dao.TenantServiceDeleteDao
|
|
|
|
TenantServicesPortDao() dao.TenantServicesPortDao
|
|
|
|
TenantServicesPortDaoTransactions(*gorm.DB) dao.TenantServicesPortDao
|
|
|
|
TenantServiceRelationDao() dao.TenantServiceRelationDao
|
|
|
|
TenantServiceRelationDaoTransactions(*gorm.DB) dao.TenantServiceRelationDao
|
|
|
|
TenantServiceEnvVarDao() dao.TenantServiceEnvVarDao
|
|
|
|
TenantServiceEnvVarDaoTransactions(*gorm.DB) dao.TenantServiceEnvVarDao
|
|
|
|
TenantServiceMountRelationDao() dao.TenantServiceMountRelationDao
|
|
|
|
TenantServiceMountRelationDaoTransactions(db *gorm.DB) dao.TenantServiceMountRelationDao
|
|
|
|
TenantServiceVolumeDao() dao.TenantServiceVolumeDao
|
|
|
|
TenantServiceVolumeDaoTransactions(*gorm.DB) dao.TenantServiceVolumeDao
|
2019-01-06 22:13:19 +08:00
|
|
|
TenantServiceConfigFileDao() dao.TenantServiceConfigFileDao
|
|
|
|
TenantServiceConfigFileDaoTransactions(*gorm.DB) dao.TenantServiceConfigFileDao
|
2017-11-07 11:40:44 +08:00
|
|
|
ServiceProbeDao() dao.ServiceProbeDao
|
|
|
|
ServiceProbeDaoTransactions(*gorm.DB) dao.ServiceProbeDao
|
|
|
|
TenantServiceLBMappingPortDao() dao.TenantServiceLBMappingPortDao
|
|
|
|
TenantServiceLBMappingPortDaoTransactions(*gorm.DB) dao.TenantServiceLBMappingPortDao
|
|
|
|
TenantServiceLabelDao() dao.TenantServiceLabelDao
|
|
|
|
TenantServiceLabelDaoTransactions(db *gorm.DB) dao.TenantServiceLabelDao
|
|
|
|
LocalSchedulerDao() dao.LocalSchedulerDao
|
|
|
|
TenantPluginDaoTransactions(db *gorm.DB) dao.TenantPluginDao
|
|
|
|
TenantPluginDao() dao.TenantPluginDao
|
|
|
|
TenantPluginDefaultENVDaoTransactions(db *gorm.DB) dao.TenantPluginDefaultENVDao
|
|
|
|
TenantPluginDefaultENVDao() dao.TenantPluginDefaultENVDao
|
|
|
|
TenantPluginBuildVersionDao() dao.TenantPluginBuildVersionDao
|
|
|
|
TenantPluginBuildVersionDaoTransactions(db *gorm.DB) dao.TenantPluginBuildVersionDao
|
|
|
|
TenantPluginVersionENVDao() dao.TenantPluginVersionEnvDao
|
|
|
|
TenantPluginVersionENVDaoTransactions(db *gorm.DB) dao.TenantPluginVersionEnvDao
|
2019-02-15 17:20:08 +08:00
|
|
|
TenantPluginVersionConfigDao() dao.TenantPluginVersionConfigDao
|
|
|
|
TenantPluginVersionConfigDaoTransactions(db *gorm.DB) dao.TenantPluginVersionConfigDao
|
2017-11-07 11:40:44 +08:00
|
|
|
TenantServicePluginRelationDao() dao.TenantServicePluginRelationDao
|
|
|
|
TenantServicePluginRelationDaoTransactions(db *gorm.DB) dao.TenantServicePluginRelationDao
|
2017-11-30 15:03:10 +08:00
|
|
|
TenantServicesStreamPluginPortDao() dao.TenantServicesStreamPluginPortDao
|
|
|
|
TenantServicesStreamPluginPortDaoTransactions(db *gorm.DB) dao.TenantServicesStreamPluginPortDao
|
2017-11-14 18:54:27 +08:00
|
|
|
|
|
|
|
CodeCheckResultDao() dao.CodeCheckResultDao
|
|
|
|
CodeCheckResultDaoTransactions(db *gorm.DB) dao.CodeCheckResultDao
|
2017-11-15 15:14:34 +08:00
|
|
|
|
2017-11-16 16:30:22 +08:00
|
|
|
ServiceEventDao() dao.EventDao
|
|
|
|
ServiceEventDaoTransactions(db *gorm.DB) dao.EventDao
|
2017-11-20 17:29:39 +08:00
|
|
|
|
|
|
|
VersionInfoDao() dao.VersionInfoDao
|
|
|
|
VersionInfoDaoTransactions(db *gorm.DB) dao.VersionInfoDao
|
2017-12-03 19:11:16 +08:00
|
|
|
|
|
|
|
RegionUserInfoDao() dao.RegionUserInfoDao
|
|
|
|
RegionUserInfoDaoTransactions(db *gorm.DB) dao.RegionUserInfoDao
|
2017-12-07 09:56:08 +08:00
|
|
|
|
|
|
|
RegionAPIClassDao() dao.RegionAPIClassDao
|
|
|
|
RegionAPIClassDaoTransactions(db *gorm.DB) dao.RegionAPIClassDao
|
2018-01-02 18:02:08 +08:00
|
|
|
|
|
|
|
RegionProcotolsDao() dao.RegionProcotolsDao
|
2018-10-15 14:22:59 +08:00
|
|
|
RegionProcotolsDaoTransactions(db *gorm.DB) dao.RegionProcotolsDao
|
2018-05-11 13:44:15 +08:00
|
|
|
|
|
|
|
NotificationEventDao() dao.NotificationEventDao
|
2018-05-23 11:08:44 +08:00
|
|
|
AppBackupDao() dao.AppBackupDao
|
2019-11-05 11:34:23 +08:00
|
|
|
AppBackupDaoTransactions(db *gorm.DB) dao.AppBackupDao
|
2018-11-14 23:08:30 +08:00
|
|
|
ServiceSourceDao() dao.ServiceSourceDao
|
2018-11-18 11:53:11 +08:00
|
|
|
|
|
|
|
// gateway
|
|
|
|
CertificateDao() dao.CertificateDao
|
2018-11-21 15:04:03 +08:00
|
|
|
CertificateDaoTransactions(db *gorm.DB) dao.CertificateDao
|
2018-11-18 11:53:11 +08:00
|
|
|
RuleExtensionDao() dao.RuleExtensionDao
|
2018-11-21 15:04:03 +08:00
|
|
|
RuleExtensionDaoTransactions(db *gorm.DB) dao.RuleExtensionDao
|
2019-02-15 17:20:08 +08:00
|
|
|
HTTPRuleDao() dao.HTTPRuleDao
|
|
|
|
HTTPRuleDaoTransactions(db *gorm.DB) dao.HTTPRuleDao
|
|
|
|
TCPRuleDao() dao.TCPRuleDao
|
|
|
|
TCPRuleDaoTransactions(db *gorm.DB) dao.TCPRuleDao
|
2019-03-11 01:07:10 +08:00
|
|
|
GwRuleConfigDao() dao.GwRuleConfigDao
|
|
|
|
GwRuleConfigDaoTransactions(db *gorm.DB) dao.GwRuleConfigDao
|
2019-02-24 05:13:54 +08:00
|
|
|
|
|
|
|
// third-party service
|
|
|
|
EndpointsDao() dao.EndpointsDao
|
|
|
|
EndpointsDaoTransactions(db *gorm.DB) dao.EndpointsDao
|
2019-02-28 11:50:54 +08:00
|
|
|
ThirdPartySvcDiscoveryCfgDao() dao.ThirdPartySvcDiscoveryCfgDao
|
|
|
|
ThirdPartySvcDiscoveryCfgDaoTransactions(db *gorm.DB) dao.ThirdPartySvcDiscoveryCfgDao
|
2019-11-13 11:05:25 +08:00
|
|
|
|
|
|
|
TenantServceAutoscalerRulesDao() dao.TenantServceAutoscalerRulesDao
|
|
|
|
TenantServceAutoscalerRulesDaoTransactions(db *gorm.DB) dao.TenantServceAutoscalerRulesDao
|
|
|
|
TenantServceAutoscalerRuleMetricsDao() dao.TenantServceAutoscalerRuleMetricsDao
|
|
|
|
TenantServceAutoscalerRuleMetricsDaoTransactions(db *gorm.DB) dao.TenantServceAutoscalerRuleMetricsDao
|
2019-11-14 15:30:40 +08:00
|
|
|
TenantServiceScalingRecordsDao() dao.TenantServiceScalingRecordsDao
|
|
|
|
TenantServiceScalingRecordsDaoTransactions(db *gorm.DB) dao.TenantServiceScalingRecordsDao
|
2020-09-19 17:17:28 +08:00
|
|
|
|
|
|
|
TenantServiceMonitorDao() dao.TenantServiceMonitorDao
|
|
|
|
TenantServiceMonitorDaoTransactions(db *gorm.DB) dao.TenantServiceMonitorDao
|
2017-11-07 11:40:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var defaultManager Manager
|
|
|
|
|
2020-05-15 15:18:39 +08:00
|
|
|
var supportDrivers map[string]struct{}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
supportDrivers = map[string]struct{}{
|
|
|
|
"mysql": {},
|
|
|
|
"cockroachdb": {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-07 11:40:44 +08:00
|
|
|
//CreateManager 创建manager
|
|
|
|
func CreateManager(config config.Config) (err error) {
|
2020-05-15 15:18:39 +08:00
|
|
|
if _, ok := supportDrivers[config.DBType]; !ok {
|
|
|
|
return fmt.Errorf("DB drivers: %s not supported", config.DBType)
|
|
|
|
}
|
|
|
|
|
2020-05-18 18:09:35 +08:00
|
|
|
for {
|
2017-11-07 11:40:44 +08:00
|
|
|
defaultManager, err = mysql.CreateManager(config)
|
2020-05-15 15:18:39 +08:00
|
|
|
if err == nil {
|
|
|
|
logrus.Infof("db manager is ready")
|
|
|
|
break
|
|
|
|
}
|
2020-05-18 19:32:58 +08:00
|
|
|
logrus.Errorf("get db manager failed, try time is %d,%s", 10, err.Error())
|
|
|
|
time.Sleep(10 * time.Second)
|
2017-11-07 11:40:44 +08:00
|
|
|
}
|
2019-02-15 17:20:08 +08:00
|
|
|
//TODO:etcd db plugin
|
|
|
|
//defaultManager, err = etcd.CreateManager(config)
|
2020-05-15 15:18:39 +08:00
|
|
|
return
|
2017-11-07 11:40:44 +08:00
|
|
|
}
|
|
|
|
|
2019-02-15 17:20:08 +08:00
|
|
|
//CloseManager close db manager
|
2017-11-07 11:40:44 +08:00
|
|
|
func CloseManager() error {
|
|
|
|
if defaultManager == nil {
|
|
|
|
return errors.New("default db manager not init")
|
|
|
|
}
|
|
|
|
return defaultManager.CloseManager()
|
|
|
|
}
|
|
|
|
|
2019-02-15 17:20:08 +08:00
|
|
|
//GetManager get db manager
|
2017-11-07 11:40:44 +08:00
|
|
|
func GetManager() Manager {
|
|
|
|
return defaultManager
|
|
|
|
}
|
2019-08-25 22:19:27 +08:00
|
|
|
|
2019-08-29 17:22:04 +08:00
|
|
|
// SetTestManager sets the default manager for unit test
|
|
|
|
func SetTestManager(m Manager) {
|
2019-08-25 22:19:27 +08:00
|
|
|
defaultManager = m
|
|
|
|
}
|