-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
56 lines (46 loc) · 1.06 KB
/
main.go
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
package main
import (
"fmt"
"os"
"os/signal"
"strings"
"syscall"
"time"
"github.com/ramonmoraes/timer/cmd"
)
func main() {
args := os.Args[1:]
if len(args) == 0 || len(args) > 2 {
fmt.Println(`Timer should receive a time arguments, may it be 2s or 2 s,
e.g:
3s or 3 s-> 3 seconds
2m or 2 m-> 2 minutes `)
return
}
waitTime := cmd.ParseTime(strings.Join(args, ""))
shouldPlay := handleInterruptions(waitTime)
if shouldPlay {
cmd.PlayBeep(2 * time.Second)
}
}
func handleInterruptions(waitTime time.Duration) bool {
started := time.Now()
done := make(chan bool, 1)
// Wait default expected time
go func() {
time.Sleep(waitTime)
done <- true
}()
// Custom handler for signals
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM, syscall.SIGSTOP)
go func() {
sig := <-sigs
executionTime := time.Now().Sub(started)
minutes := executionTime.Minutes()
seconds := executionTime.Seconds()
fmt.Printf("\n[%s] Timer runned for: %.0fm %.0fs\n", sig, minutes, seconds)
done <- false
}()
return <-done
}