task.go 14.6 KB
Newer Older
A
astaxie 已提交
1
// Copyright 2014 beego Author. All Rights Reserved.
A
astaxie 已提交
2
//
A
astaxie 已提交
3 4 5
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
A
astaxie 已提交
6
//
A
astaxie 已提交
7
//      http://www.apache.org/licenses/LICENSE-2.0
A
astaxie 已提交
8
//
A
astaxie 已提交
9 10 11 12 13 14
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

A
astaxie 已提交
15 16 17 18 19 20 21 22
package toolbox

import (
	"log"
	"math"
	"sort"
	"strconv"
	"strings"
weixiaoyiri's avatar
weixiaoyiri 已提交
23
	"sync"
A
astaxie 已提交
24 25 26 27 28 29 30 31 32 33 34 35
	"time"
)

// bounds provides a range of acceptable values (plus a map of name to value).
type bounds struct {
	min, max uint
	names    map[string]uint
}

// The bounds for each field.
var (
	AdminTaskList map[string]Tasker
36
	taskLock      sync.RWMutex
A
astaxie 已提交
37
	stop          chan bool
38
	changed       chan bool
A
astaxie 已提交
39
	isstart       bool
A
astaxie 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
	seconds       = bounds{0, 59, nil}
	minutes       = bounds{0, 59, nil}
	hours         = bounds{0, 23, nil}
	days          = bounds{1, 31, nil}
	months        = bounds{1, 12, map[string]uint{
		"jan": 1,
		"feb": 2,
		"mar": 3,
		"apr": 4,
		"may": 5,
		"jun": 6,
		"jul": 7,
		"aug": 8,
		"sep": 9,
		"oct": 10,
		"nov": 11,
		"dec": 12,
	}}
	weeks = bounds{0, 6, map[string]uint{
		"sun": 0,
		"mon": 1,
		"tue": 2,
		"wed": 3,
		"thu": 4,
		"fri": 5,
		"sat": 6,
	}}
)

const (
	// Set the top bit if a star was included in the expression.
	starBit = 1 << 63
)

A
astaxie 已提交
74
// Schedule time taks schedule
A
astaxie 已提交
75 76 77 78 79 80 81 82 83
type Schedule struct {
	Second uint64
	Minute uint64
	Hour   uint64
	Day    uint64
	Month  uint64
	Week   uint64
}

A
astaxie 已提交
84
// TaskFunc task func type
A
astaxie 已提交
85 86
type TaskFunc func() error

A
astaxie 已提交
87
// Tasker task interface
A
astaxie 已提交
88
type Tasker interface {
89
	GetSpec() string
A
astaxie 已提交
90 91 92 93 94 95 96 97
	GetStatus() string
	Run() error
	SetNext(time.Time)
	GetNext() time.Time
	SetPrev(time.Time)
	GetPrev() time.Time
}

傅小黑 已提交
98
// task error
A
astaxie 已提交
99 100 101 102 103
type taskerr struct {
	t       time.Time
	errinfo string
}

A
astaxie 已提交
104
// Task task struct
M
Ming Deng 已提交
105 106
// It's not a thread-safe structure.
// Only nearest errors will be saved in ErrList
A
astaxie 已提交
107 108 109
type Task struct {
	Taskname string
	Spec     *Schedule
110
	SpecStr  string
A
astaxie 已提交
111 112 113
	DoFunc   TaskFunc
	Prev     time.Time
	Next     time.Time
傅小黑 已提交
114 115
	Errlist  []*taskerr // like errtime:errinfo
	ErrLimit int        // max length for the errlist, 0 stand for no limit
M
Ming Deng 已提交
116
	errCnt int // records the error count during the execution
A
astaxie 已提交
117 118
}

A
astaxie 已提交
119
// NewTask add new task with name, time and func
A
astaxie 已提交
120 121 122 123 124
func NewTask(tname string, spec string, f TaskFunc) *Task {

	task := &Task{
		Taskname: tname,
		DoFunc:   f,
M
Ming Deng 已提交
125
		// Make configurable
A
astaxie 已提交
126
		ErrLimit: 100,
127
		SpecStr:  spec,
M
Ming Deng 已提交
128 129
		// we only store the pointer, so it won't use too many space
		Errlist: make([]*taskerr, 100, 100),
A
astaxie 已提交
130 131 132 133 134
	}
	task.SetCron(spec)
	return task
}

A
astaxie 已提交
135 136 137
// GetSpec get spec string
func (t *Task) GetSpec() string {
	return t.SpecStr
138 139
}

A
astaxie 已提交
140 141
// GetStatus get current task status
func (t *Task) GetStatus() string {
A
astaxie 已提交
142
	var str string
A
astaxie 已提交
143
	for _, v := range t.Errlist {
144
		str += v.t.String() + ":" + v.errinfo + "<br>"
A
astaxie 已提交
145 146 147 148
	}
	return str
}

A
astaxie 已提交
149 150 151
// Run run all tasks
func (t *Task) Run() error {
	err := t.DoFunc()
A
astaxie 已提交
152
	if err != nil {
M
Ming Deng 已提交
153 154 155
		index := t.errCnt % t.ErrLimit
		t.Errlist[index] = &taskerr{t: t.Next, errinfo: err.Error()}
		t.errCnt++
A
astaxie 已提交
156 157 158 159
	}
	return err
}

A
astaxie 已提交
160 161 162
// SetNext set next time for this task
func (t *Task) SetNext(now time.Time) {
	t.Next = t.Spec.Next(now)
A
astaxie 已提交
163 164
}

A
astaxie 已提交
165 166 167
// GetNext get the next call time of this task
func (t *Task) GetNext() time.Time {
	return t.Next
A
astaxie 已提交
168
}
傅小黑 已提交
169

A
astaxie 已提交
170 171 172
// SetPrev set prev time of this task
func (t *Task) SetPrev(now time.Time) {
	t.Prev = now
A
astaxie 已提交
173 174
}

A
astaxie 已提交
175 176 177
// GetPrev get prev time of this task
func (t *Task) GetPrev() time.Time {
	return t.Prev
A
astaxie 已提交
178
}
A
astaxie 已提交
179

傅小黑 已提交
180 181 182 183 184 185 186 187
// six columns mean:
//       second:0-59
//       minute:0-59
//       hour:1-23
//       day:1-31
//       month:1-12
//       week:0-6(0 means Sunday)

A
astaxie 已提交
188
// SetCron some signals:
傅小黑 已提交
189 190 191 192
//       *: any time
//       ,:  separate signal
//      -:duration
//       /n : do as n times of time duration
A
astaxie 已提交
193
/////////////////////////////////////////////////////////
傅小黑 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
//	0/30 * * * * *                        every 30s
//	0 43 21 * * *                         21:43
//	0 15 05 * * *                        05:15
//	0 0 17 * * *                          17:00
//	0 0 17 * * 1                           17:00 in every Monday
//	0 0,10 17 * * 0,2,3                   17:00 and 17:10 in every Sunday, Tuesday and Wednesday
//	0 0-10 17 1 * *                       17:00 to 17:10 in 1 min duration each time on the first day of month
//	0 0 0 1,15 * 1                        0:00 on the 1st day and 15th day of month
//	0 42 4 1 * *                         4:42 on the 1st day of month
//	0 0 21 * * 1-6                       21:00 from Monday to Saturday
//	0 0,10,20,30,40,50 * * * *            every 10 min duration
//	0 */10 * * * *                     every 10 min duration
//	0 * 1 * * *                       1:00 to 1:59 in 1 min duration each time
//	0 0 1 * * *                       1:00
//	0 0 */1 * * *                      0 min of hour in 1 hour duration
//	0 0 * * * *                       0 min of hour in 1 hour duration
//	0 2 8-20/3 * * *                   8:02, 11:02, 14:02, 17:02, 20:02
//	0 30 5 1,15 * *                    5:30 on the 1st day and 15th day of month
A
astaxie 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
func (t *Task) SetCron(spec string) {
	t.Spec = t.parse(spec)
}

func (t *Task) parse(spec string) *Schedule {
	if len(spec) > 0 && spec[0] == '@' {
		return t.parseSpec(spec)
	}
	// Split on whitespace.  We require 5 or 6 fields.
	// (second) (minute) (hour) (day of month) (month) (day of week, optional)
	fields := strings.Fields(spec)
	if len(fields) != 5 && len(fields) != 6 {
		log.Panicf("Expected 5 or 6 fields, found %d: %s", len(fields), spec)
	}

	// If a sixth field is not provided (DayOfWeek), then it is equivalent to star.
	if len(fields) == 5 {
		fields = append(fields, "*")
	}

	schedule := &Schedule{
		Second: getField(fields[0], seconds),
		Minute: getField(fields[1], minutes),
		Hour:   getField(fields[2], hours),
		Day:    getField(fields[3], days),
		Month:  getField(fields[4], months),
		Week:   getField(fields[5], weeks),
	}

	return schedule
}

func (t *Task) parseSpec(spec string) *Schedule {
	switch spec {
	case "@yearly", "@annually":
		return &Schedule{
			Second: 1 << seconds.min,
			Minute: 1 << minutes.min,
			Hour:   1 << hours.min,
			Day:    1 << days.min,
			Month:  1 << months.min,
			Week:   all(weeks),
		}

	case "@monthly":
		return &Schedule{
			Second: 1 << seconds.min,
			Minute: 1 << minutes.min,
			Hour:   1 << hours.min,
			Day:    1 << days.min,
			Month:  all(months),
			Week:   all(weeks),
		}

	case "@weekly":
		return &Schedule{
			Second: 1 << seconds.min,
			Minute: 1 << minutes.min,
			Hour:   1 << hours.min,
			Day:    all(days),
			Month:  all(months),
			Week:   1 << weeks.min,
		}

	case "@daily", "@midnight":
		return &Schedule{
			Second: 1 << seconds.min,
			Minute: 1 << minutes.min,
			Hour:   1 << hours.min,
			Day:    all(days),
			Month:  all(months),
			Week:   all(weeks),
		}

	case "@hourly":
		return &Schedule{
			Second: 1 << seconds.min,
			Minute: 1 << minutes.min,
			Hour:   all(hours),
			Day:    all(days),
			Month:  all(months),
			Week:   all(weeks),
		}
	}
	log.Panicf("Unrecognized descriptor: %s", spec)
	return nil
}

A
astaxie 已提交
300
// Next set schedule to next time
A
astaxie 已提交
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
func (s *Schedule) Next(t time.Time) time.Time {

	// Start at the earliest possible time (the upcoming second).
	t = t.Add(1*time.Second - time.Duration(t.Nanosecond())*time.Nanosecond)

	// This flag indicates whether a field has been incremented.
	added := false

	// If no time is found within five years, return zero.
	yearLimit := t.Year() + 5

WRAP:
	if t.Year() > yearLimit {
		return time.Time{}
	}

	// Find the first applicable month.
	// If it's this month, then do nothing.
	for 1<<uint(t.Month())&s.Month == 0 {
		// If we have to add a month, reset the other parts to 0.
		if !added {
			added = true
			// Otherwise, set the date at the beginning (since the current time is irrelevant).
			t = time.Date(t.Year(), t.Month(), 1, 0, 0, 0, 0, t.Location())
		}
		t = t.AddDate(0, 1, 0)

		// Wrapped around.
		if t.Month() == time.January {
			goto WRAP
		}
	}

	// Now get a day in that month.
	for !dayMatches(s, t) {
		if !added {
			added = true
			t = time.Date(t.Year(), t.Month(), t.Day(), 0, 0, 0, 0, t.Location())
		}
		t = t.AddDate(0, 0, 1)

		if t.Day() == 1 {
			goto WRAP
		}
	}

	for 1<<uint(t.Hour())&s.Hour == 0 {
		if !added {
			added = true
			t = time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), 0, 0, 0, t.Location())
		}
		t = t.Add(1 * time.Hour)

		if t.Hour() == 0 {
			goto WRAP
		}
	}

	for 1<<uint(t.Minute())&s.Minute == 0 {
		if !added {
			added = true
			t = time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), 0, 0, t.Location())
		}
		t = t.Add(1 * time.Minute)

		if t.Minute() == 0 {
			goto WRAP
		}
	}

	for 1<<uint(t.Second())&s.Second == 0 {
		if !added {
			added = true
			t = time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), 0, t.Location())
		}
		t = t.Add(1 * time.Second)

		if t.Second() == 0 {
			goto WRAP
		}
	}

	return t
}

func dayMatches(s *Schedule, t time.Time) bool {
	var (
A
astaxie 已提交
388 389
		domMatch = 1<<uint(t.Day())&s.Day > 0
		dowMatch = 1<<uint(t.Weekday())&s.Week > 0
A
astaxie 已提交
390 391 392 393 394 395 396 397
	)

	if s.Day&starBit > 0 || s.Week&starBit > 0 {
		return domMatch && dowMatch
	}
	return domMatch || dowMatch
}

A
astaxie 已提交
398
// StartTask start all tasks
A
astaxie 已提交
399
func StartTask() {
weixiaoyiri's avatar
weixiaoyiri 已提交
400 401
	taskLock.Lock()
	defer taskLock.Unlock()
A
albertma 已提交
402 403 404 405
	if isstart {
		//If already started, no need to start another goroutine.
		return
	}
A
astaxie 已提交
406
	isstart = true
A
astaxie 已提交
407 408 409 410 411 412 413 414 415 416
	go run()
}

func run() {
	now := time.Now().Local()
	for _, t := range AdminTaskList {
		t.SetNext(now)
	}

	for {
417 418
		// we only use RLock here because NewMapSorter copy the reference, do not change any thing
		taskLock.RLock()
A
astaxie 已提交
419
		sortList := NewMapSorter(AdminTaskList)
420
		taskLock.RUnlock()
A
astaxie 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
		sortList.Sort()
		var effective time.Time
		if len(AdminTaskList) == 0 || sortList.Vals[0].GetNext().IsZero() {
			// If there are no entries yet, just sleep - it still handles new entries
			// and stop requests.
			effective = now.AddDate(10, 0, 0)
		} else {
			effective = sortList.Vals[0].GetNext()
		}
		select {
		case now = <-time.After(effective.Sub(now)):
			// Run every entry whose next time was this effective time.
			for _, e := range sortList.Vals {
				if e.GetNext() != effective {
					break
				}
A
albertma 已提交
437
				go e.Run()
A
astaxie 已提交
438 439 440 441
				e.SetPrev(e.GetNext())
				e.SetNext(effective)
			}
			continue
442
		case <-changed:
443
			now = time.Now().Local()
444
			taskLock.Lock()
445 446 447
			for _, t := range AdminTaskList {
				t.SetNext(now)
			}
448
			taskLock.Unlock()
449
			continue
A
astaxie 已提交
450 451 452 453 454 455
		case <-stop:
			return
		}
	}
}

A
astaxie 已提交
456
// StopTask stop all tasks
A
astaxie 已提交
457
func StopTask() {
weixiaoyiri's avatar
weixiaoyiri 已提交
458 459
	taskLock.Lock()
	defer taskLock.Unlock()
A
albertma 已提交
460 461 462 463
	if isstart {
		isstart = false
		stop <- true
	}
A
albertma 已提交
464

A
astaxie 已提交
465 466
}

A
astaxie 已提交
467
// AddTask add task with name
A
astaxie 已提交
468
func AddTask(taskname string, t Tasker) {
weixiaoyiri's avatar
weixiaoyiri 已提交
469 470
	taskLock.Lock()
	defer taskLock.Unlock()
Y
Yumin Wu 已提交
471
	t.SetNext(time.Now().Local())
A
astaxie 已提交
472
	AdminTaskList[taskname] = t
A
astaxie 已提交
473 474 475
	if isstart {
		changed <- true
	}
476 477
}

A
astaxie 已提交
478
// DeleteTask delete task with name
479
func DeleteTask(taskname string) {
weixiaoyiri's avatar
weixiaoyiri 已提交
480 481
	taskLock.Lock()
	defer taskLock.Unlock()
482
	delete(AdminTaskList, taskname)
A
astaxie 已提交
483 484 485
	if isstart {
		changed <- true
	}
A
astaxie 已提交
486 487
}

A
astaxie 已提交
488
// MapSorter sort map for tasker
A
astaxie 已提交
489 490 491 492 493
type MapSorter struct {
	Keys []string
	Vals []Tasker
}

A
astaxie 已提交
494
// NewMapSorter create new tasker map
A
astaxie 已提交
495 496 497 498 499 500 501 502 503 504 505 506
func NewMapSorter(m map[string]Tasker) *MapSorter {
	ms := &MapSorter{
		Keys: make([]string, 0, len(m)),
		Vals: make([]Tasker, 0, len(m)),
	}
	for k, v := range m {
		ms.Keys = append(ms.Keys, k)
		ms.Vals = append(ms.Vals, v)
	}
	return ms
}

A
astaxie 已提交
507
// Sort sort tasker map
A
astaxie 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
func (ms *MapSorter) Sort() {
	sort.Sort(ms)
}

func (ms *MapSorter) Len() int { return len(ms.Keys) }
func (ms *MapSorter) Less(i, j int) bool {
	if ms.Vals[i].GetNext().IsZero() {
		return false
	}
	if ms.Vals[j].GetNext().IsZero() {
		return true
	}
	return ms.Vals[i].GetNext().Before(ms.Vals[j].GetNext())
}
func (ms *MapSorter) Swap(i, j int) {
	ms.Vals[i], ms.Vals[j] = ms.Vals[j], ms.Vals[i]
	ms.Keys[i], ms.Keys[j] = ms.Keys[j], ms.Keys[i]
}

func getField(field string, r bounds) uint64 {
	// list = range {"," range}
	var bits uint64
	ranges := strings.FieldsFunc(field, func(r rune) bool { return r == ',' })
	for _, expr := range ranges {
		bits |= getRange(expr, r)
	}
	return bits
}

// getRange returns the bits indicated by the given expression:
//   number | number "-" number [ "/" number ]
func getRange(expr string, r bounds) uint64 {

	var (
		start, end, step uint
		rangeAndStep     = strings.Split(expr, "/")
		lowAndHigh       = strings.Split(rangeAndStep[0], "-")
		singleDigit      = len(lowAndHigh) == 1
	)

A
astaxie 已提交
548
	var extrastar uint64
A
astaxie 已提交
549 550 551
	if lowAndHigh[0] == "*" || lowAndHigh[0] == "?" {
		start = r.min
		end = r.max
A
astaxie 已提交
552
		extrastar = starBit
A
astaxie 已提交
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
	} else {
		start = parseIntOrName(lowAndHigh[0], r.names)
		switch len(lowAndHigh) {
		case 1:
			end = start
		case 2:
			end = parseIntOrName(lowAndHigh[1], r.names)
		default:
			log.Panicf("Too many hyphens: %s", expr)
		}
	}

	switch len(rangeAndStep) {
	case 1:
		step = 1
	case 2:
		step = mustParseInt(rangeAndStep[1])

		// Special handling: "N/step" means "N-max/step".
		if singleDigit {
			end = r.max
		}
	default:
		log.Panicf("Too many slashes: %s", expr)
	}

	if start < r.min {
		log.Panicf("Beginning of range (%d) below minimum (%d): %s", start, r.min, expr)
	}
	if end > r.max {
		log.Panicf("End of range (%d) above maximum (%d): %s", end, r.max, expr)
	}
	if start > end {
		log.Panicf("Beginning of range (%d) beyond end of range (%d): %s", start, end, expr)
	}

A
astaxie 已提交
589
	return getBits(start, end, step) | extrastar
A
astaxie 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
}

// parseIntOrName returns the (possibly-named) integer contained in expr.
func parseIntOrName(expr string, names map[string]uint) uint {
	if names != nil {
		if namedInt, ok := names[strings.ToLower(expr)]; ok {
			return namedInt
		}
	}
	return mustParseInt(expr)
}

// mustParseInt parses the given expression as an int or panics.
func mustParseInt(expr string) uint {
	num, err := strconv.Atoi(expr)
	if err != nil {
		log.Panicf("Failed to parse int from %s: %s", expr, err)
	}
	if num < 0 {
		log.Panicf("Negative number (%d) not allowed: %s", num, expr)
	}

	return uint(num)
}

// getBits sets all bits in the range [min, max], modulo the given step size.
func getBits(min, max, step uint) uint64 {
	var bits uint64

	// If step is 1, use shifts.
	if step == 1 {
		return ^(math.MaxUint64 << (max + 1)) & (math.MaxUint64 << min)
	}

	// Else, use a simple loop.
	for i := min; i <= max; i += step {
		bits |= 1 << i
	}
	return bits
}

// all returns all bits within the given bounds.  (plus the star bit)
func all(r bounds) uint64 {
	return getBits(r.min, r.max, 1) | starBit
}

func init() {
	AdminTaskList = make(map[string]Tasker)
A
astaxie 已提交
638
	stop = make(chan bool)
639
	changed = make(chan bool)
A
astaxie 已提交
640
}