// Schedule describes a job's duty cycle. type Schedule interface { // Next returns the next activation time, later than the given time. // Next is invoked initially, and then each time the job is run. Next(time.Time) time.Time }
// ScheduleParser is an interface for schedule spec parsers that return a Schedule type ScheduleParser interface { Parse(spec string) (Schedule, error) }
// 具体的parse, it is custom type ParseOption int
const ( Second ParseOption = 1 << iota// Seconds field, default 0 SecondOptional // Optional seconds field, default 0 Minute // Minutes field, default 0 Hour // Hours field, default 0 Dom // Day of month field, default * Month // Month field, default * Dow // Day of week field, default * DowOptional // Optional day of week field, default * Descriptor // Allow descriptors such as @monthly, @weekly, etc. )
type Parser struct { options ParseOption } ----------------------------------------------------------------------- // 但不定制parser的时候就是默认 var standardParser = NewParser( Minute | Hour | Dom | Month | Dow | Descriptor, ) // 解析一下 funcParseStandard(standardSpec string) (Schedule, error) { return standardParser.Parse(standardSpec) } // 同时在 parse.go中可以重新 New 一个 custom parser funcNewParser(options ParseOption) Parser { optionals := 0 if options&DowOptional > 0 { optionals++ } if options&SecondOptional > 0 { optionals++ } if optionals > 1 { panic("multiple optionals may not be configured") } return Parser{options} } // 也可以将一个string -> schedule func(p Parser) Parse(spec string) (Schedule, error){}