aboutsummaryrefslogtreecommitdiffstats
path: root/timer.go
blob: aeab5d939361466b57eea044a1ac82fc23a51e55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
/* SPDX-License-Identifier: GPL-2.0
 *
 * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
 */

package main

import (
	"sync"
	"time"
)

type Timer struct {
	mutex   sync.Mutex
	pending bool
	timer   *time.Timer
}

/* Starts the timer if not already pending
 */
func (t *Timer) Start(dur time.Duration) bool {
	t.mutex.Lock()
	defer t.mutex.Unlock()

	started := !t.pending
	if started {
		t.timer.Reset(dur)
	}
	return started
}

func (t *Timer) Stop() {
	t.mutex.Lock()
	defer t.mutex.Unlock()

	t.timer.Stop()
	select {
	case <-t.timer.C:
	default:
	}
	t.pending = false
}

func (t *Timer) Pending() bool {
	t.mutex.Lock()
	defer t.mutex.Unlock()

	return t.pending
}

func (t *Timer) Reset(dur time.Duration) {
	t.mutex.Lock()
	defer t.mutex.Unlock()
	t.timer.Reset(dur)
}

func (t *Timer) Wait() <-chan time.Time {
	return t.timer.C
}

func NewTimer() (t Timer) {
	t.pending = false
	t.timer = time.NewTimer(time.Hour)
	t.timer.Stop()
	select {
	case <-t.timer.C:
	default:
	}
	return
}