2023-12-27 22:59:20 +08:00
|
|
|
package application
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2024-01-05 08:55:34 +08:00
|
|
|
"encoding/binary"
|
2024-01-11 11:35:51 +08:00
|
|
|
"github.com/google/uuid"
|
2023-12-27 22:59:20 +08:00
|
|
|
"mayfly-go/internal/db/domain/entity"
|
|
|
|
|
"mayfly-go/internal/db/domain/repository"
|
|
|
|
|
"mayfly-go/pkg/model"
|
|
|
|
|
)
|
|
|
|
|
|
2024-01-23 04:06:08 +00:00
|
|
|
type DbBackupApp struct {
|
|
|
|
|
DbApp Db `inject:"DbApp"`
|
|
|
|
|
Scheduler *dbScheduler `inject:"DbScheduler"`
|
|
|
|
|
InstanceRepo repository.Instance `inject:"DbInstanceRepo"`
|
|
|
|
|
BackupRepo repository.DbBackup `inject:"DbBackupRepo"`
|
|
|
|
|
BackupHistoryRepo repository.DbBackupHistory `inject:"DbBackupHistoryRepo"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (app *DbBackupApp) Init() error {
|
2024-01-11 11:35:51 +08:00
|
|
|
var jobs []*entity.DbBackup
|
2024-01-23 04:06:08 +00:00
|
|
|
if err := app.BackupRepo.ListToDo(&jobs); err != nil {
|
|
|
|
|
return err
|
2024-01-11 11:35:51 +08:00
|
|
|
}
|
2024-01-23 04:06:08 +00:00
|
|
|
if err := app.Scheduler.AddJob(context.Background(), false, entity.DbJobTypeBackup, jobs); err != nil {
|
|
|
|
|
return err
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
2024-01-23 04:06:08 +00:00
|
|
|
return nil
|
2024-01-05 08:55:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (app *DbBackupApp) Close() {
|
2024-01-23 04:06:08 +00:00
|
|
|
app.Scheduler.Close()
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
|
|
|
|
|
2024-01-11 11:35:51 +08:00
|
|
|
func (app *DbBackupApp) Create(ctx context.Context, jobs []*entity.DbBackup) error {
|
2024-01-23 04:06:08 +00:00
|
|
|
return app.Scheduler.AddJob(ctx, true /* 保存到数据库 */, entity.DbJobTypeBackup, jobs)
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
|
|
|
|
|
2024-01-11 11:35:51 +08:00
|
|
|
func (app *DbBackupApp) Update(ctx context.Context, job *entity.DbBackup) error {
|
2024-01-23 04:06:08 +00:00
|
|
|
return app.Scheduler.UpdateJob(ctx, job)
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
|
|
|
|
|
2024-01-11 11:35:51 +08:00
|
|
|
func (app *DbBackupApp) Delete(ctx context.Context, jobId uint64) error {
|
2023-12-27 22:59:20 +08:00
|
|
|
// todo: 删除数据库备份历史文件
|
2024-01-23 04:06:08 +00:00
|
|
|
return app.Scheduler.RemoveJob(ctx, entity.DbJobTypeBackup, jobId)
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
|
|
|
|
|
2024-01-11 11:35:51 +08:00
|
|
|
func (app *DbBackupApp) Enable(ctx context.Context, jobId uint64) error {
|
2024-01-23 04:06:08 +00:00
|
|
|
return app.Scheduler.EnableJob(ctx, entity.DbJobTypeBackup, jobId)
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
|
|
|
|
|
2024-01-11 11:35:51 +08:00
|
|
|
func (app *DbBackupApp) Disable(ctx context.Context, jobId uint64) error {
|
2024-01-23 04:06:08 +00:00
|
|
|
return app.Scheduler.DisableJob(ctx, entity.DbJobTypeBackup, jobId)
|
2024-01-05 08:55:34 +08:00
|
|
|
}
|
|
|
|
|
|
2024-01-11 11:35:51 +08:00
|
|
|
func (app *DbBackupApp) Start(ctx context.Context, jobId uint64) error {
|
2024-01-23 04:06:08 +00:00
|
|
|
return app.Scheduler.StartJobNow(ctx, entity.DbJobTypeBackup, jobId)
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetPageList 分页获取数据库备份任务
|
2024-01-11 11:35:51 +08:00
|
|
|
func (app *DbBackupApp) GetPageList(condition *entity.DbJobQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error) {
|
2024-01-23 04:06:08 +00:00
|
|
|
return app.BackupRepo.GetPageList(condition, pageParam, toEntity, orderBy...)
|
2023-12-27 22:59:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetDbNamesWithoutBackup 获取未配置定时备份的数据库名称
|
|
|
|
|
func (app *DbBackupApp) GetDbNamesWithoutBackup(instanceId uint64, dbNames []string) ([]string, error) {
|
2024-01-23 04:06:08 +00:00
|
|
|
return app.BackupRepo.GetDbNamesWithoutBackup(instanceId, dbNames)
|
2024-01-05 08:55:34 +08:00
|
|
|
}
|
|
|
|
|
|
2024-01-11 11:35:51 +08:00
|
|
|
// GetHistoryPageList 分页获取数据库备份历史
|
2024-01-05 22:16:38 +08:00
|
|
|
func (app *DbBackupApp) GetHistoryPageList(condition *entity.DbBackupHistoryQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error) {
|
2024-01-23 04:06:08 +00:00
|
|
|
return app.BackupHistoryRepo.GetHistories(condition, pageParam, toEntity, orderBy...)
|
2024-01-05 22:16:38 +08:00
|
|
|
}
|
|
|
|
|
|
2024-01-05 08:55:34 +08:00
|
|
|
func NewIncUUID() (uuid.UUID, error) {
|
|
|
|
|
var uid uuid.UUID
|
|
|
|
|
now, seq, err := uuid.GetTime()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return uid, err
|
|
|
|
|
}
|
|
|
|
|
timeHi := uint32((now >> 28) & 0xffffffff)
|
|
|
|
|
timeMid := uint16((now >> 12) & 0xffff)
|
|
|
|
|
timeLow := uint16(now & 0x0fff)
|
|
|
|
|
timeLow |= 0x1000 // Version 1
|
|
|
|
|
|
|
|
|
|
binary.BigEndian.PutUint32(uid[0:], timeHi)
|
|
|
|
|
binary.BigEndian.PutUint16(uid[4:], timeMid)
|
|
|
|
|
binary.BigEndian.PutUint16(uid[6:], timeLow)
|
|
|
|
|
binary.BigEndian.PutUint16(uid[8:], seq)
|
|
|
|
|
|
|
|
|
|
copy(uid[10:], uuid.NodeID())
|
|
|
|
|
|
|
|
|
|
return uid, nil
|
|
|
|
|
}
|