今天看啥  ›  专栏  ›  go4it

聊聊dbsync的Schedulable

go4it  · 掘金  ·  · 2021-04-22 23:13

文章预览

阅读 60

聊聊dbsync的Schedulable

本文主要研究一下dbsync的Schedulable

Schedulable

//Schedulable represent an abstraction that can be schedule
type Schedulable struct {
	URL string
	ID  string
	*contract.Sync
	Schedule *contract.Schedule
	Status   string
	status   uint32
}

//NewSchedulableFromURL create a new scheduleable from URL
func NewSchedulableFromURL(URL string) (*Schedulable, error) {
	result := &Schedulable{}
	resource := url.NewResource(URL)
	err := resource.Decode(result)
	return result, err
}
复制代码

Schedulable定义了URL、ID、*contract.Sync、Schedule、Status、status属性;NewSchedulableFromURL方法根据URL来创建Schedulable

Clone

func (s *Schedulable) Clone() *Schedulable {
	return &Schedulable{
		URL:      s.URL,
		ID:       s.ID,
		Sync:     s.Sync.Clone(),
		Schedule: s.Schedule,
		Status:   s.Status,
	}
}
复制代码

Clone方法会复制一份Schedulable

Done

//Done return true if schedulable is not running
func (s *Schedulable) Done() {
	atomic.StoreUint32(&s.status, statusScheduled)
}
复制代码

Done方法更新status为statusScheduled

IsRunning

//IsRunning return true if schedulable is running
func (s *Schedulable) IsRunning() bool {
	return atomic.LoadUint32(&s.status) == statusRunning
}
复制代码

IsRunning方法更新status为statusRunning

ScheduleNexRun

//ScheduleNexRun schedules next run
func (s *Schedulable) ScheduleNexRun(baseTime time.Time) error {
	return s.Schedule.Next(baseTime)
}
复制代码

ScheduleNexRun方法执行Schedule.Next(baseTime)

Init

//Init initializes scheduleable
func (s *Schedulable) Init() error {
	if s.ID == "" {
		s.ID = uRLToID(s.URL)
	}
	now := time.Now()
	if s.Schedule == nil {
		return nil
	}

	if s.Schedule.Frequency != nil && s.Schedule.Frequency.Value == 0 {
		s.Schedule.Frequency.Value = 1
	}
	if s.Schedule.NextRun == nil {
		if s.Schedule.Frequency != nil {
			s.Schedule.NextRun = &now
		} else {
			return s.Schedule.Next(now)
		}
	}
	return nil

}
复制代码

Init方法执行Schedulable的初始化

Validate

//Validate checks if Schedulable is valid
func (s *Schedulable) Validate() error {
	if s.Schedule == nil {
		return fmt.Errorf("schedule was emtpy")
	}
	if s.Schedule.Frequency == nil && s.Schedule.At == nil {
		return fmt.Errorf("schedule.Frequency and schedule.At were emtpy")
	}
	if s.ID == "" {
		return fmt.Errorf("ID were emtpy")
	}
	return nil
}
复制代码

Validate方法校验Schedule、Schedule.Frequency、Schedule.At、ID值

小结

dbsync的Schedulable定义了URL、ID、*contract.Sync、Schedule、Status、status属性,它提供了Clone、Done、IsRunning、ScheduleNexRun、Init、Validate方法。

doc

………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览