mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-11-30 10:48:15 +08:00
105 lines
4.2 KiB
Go
105 lines
4.2 KiB
Go
|
|
||
|
// RAINBOND, Application Management Platform
|
||
|
// Copyright (C) 2014-2017 Goodrain Co., Ltd.
|
||
|
|
||
|
// 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.
|
||
|
|
||
|
// 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.
|
||
|
|
||
|
// 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 (
|
||
|
"github.com/goodrain/rainbond/pkg/db/config"
|
||
|
"github.com/goodrain/rainbond/pkg/db/dao"
|
||
|
"github.com/goodrain/rainbond/pkg/db/mysql"
|
||
|
"errors"
|
||
|
|
||
|
"github.com/jinzhu/gorm"
|
||
|
)
|
||
|
|
||
|
//Manager db manager
|
||
|
type Manager interface {
|
||
|
CloseManager() error
|
||
|
Begin() *gorm.DB
|
||
|
LicenseDao() dao.LicenseDao
|
||
|
TenantDao() dao.TenantDao
|
||
|
TenantDaoTransactions(db *gorm.DB) dao.TenantDao
|
||
|
EventLogDao() dao.EventLogDao
|
||
|
EventLogDaoTransactions(*gorm.DB) dao.EventLogDao
|
||
|
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
|
||
|
K8sServiceDao() dao.K8sServiceDao
|
||
|
K8sServiceDaoTransactions(*gorm.DB) dao.K8sServiceDao
|
||
|
K8sDeployReplicationDao() dao.K8sDeployReplicationDao
|
||
|
K8sPodDao() dao.K8sPodDao
|
||
|
K8sPodDaoTransactions(*gorm.DB) dao.K8sPodDao
|
||
|
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
|
||
|
TenantServiceStatusDao() dao.ServiceStatusDao
|
||
|
TenantServiceStatusDaoTransactions(db *gorm.DB) dao.ServiceStatusDao
|
||
|
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
|
||
|
TenantServicePluginRelationDao() dao.TenantServicePluginRelationDao
|
||
|
TenantServicePluginRelationDaoTransactions(db *gorm.DB) dao.TenantServicePluginRelationDao
|
||
|
}
|
||
|
|
||
|
var defaultManager Manager
|
||
|
|
||
|
//CreateManager 创建manager
|
||
|
func CreateManager(config config.Config) (err error) {
|
||
|
if config.DBType == "mysql" || config.DBType == "cockroachdb" {
|
||
|
defaultManager, err = mysql.CreateManager(config)
|
||
|
} else {
|
||
|
//TODO:etcd 插件实现
|
||
|
//defaultManager, err = etcd.CreateManager(config)
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
//CloseManager 关闭
|
||
|
func CloseManager() error {
|
||
|
if defaultManager == nil {
|
||
|
return errors.New("default db manager not init")
|
||
|
}
|
||
|
return defaultManager.CloseManager()
|
||
|
}
|
||
|
|
||
|
//GetManager 获取管理器
|
||
|
func GetManager() Manager {
|
||
|
return defaultManager
|
||
|
}
|