1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/timers.go

75 lines
1.3 KiB
Go
Raw Normal View History

2018-05-21 23:00:36 -04:00
package main
import (
"github.com/golang/protobuf/proto"
"time"
)
type Timer struct {
Id int32
Done bool
Cleared bool
Interval bool
Duration int32 // In milliseconds
}
var timers = make(map[int32]*Timer)
2018-05-21 23:00:36 -04:00
func InitTimers() {
Sub("timers", func(buf []byte) []byte {
msg := &Msg{}
check(proto.Unmarshal(buf, msg))
2018-05-25 15:36:13 -04:00
switch msg.Command {
case Msg_TIMER_START:
id := msg.TimerStartId
t := &Timer{
Id: id,
Done: false,
2018-05-25 15:36:13 -04:00
Interval: msg.TimerStartInterval,
Duration: msg.TimerStartDuration,
Cleared: false,
}
2018-05-25 15:36:13 -04:00
t.StartTimer()
timers[id] = t
return nil
2018-05-25 15:36:13 -04:00
case Msg_TIMER_CLEAR:
// TODO maybe need mutex here.
2018-05-25 15:36:13 -04:00
timer := timers[msg.TimerClearId]
timer.Clear()
2018-05-21 23:00:36 -04:00
default:
panic("[timers] Unexpected message " + string(buf))
}
2018-05-25 15:36:13 -04:00
return nil
2018-05-21 23:00:36 -04:00
})
}
func (t *Timer) Clear() {
if !t.Cleared {
wg.Done()
t.Cleared = true
delete(timers, t.Id)
}
t.Done = true
}
func (t *Timer) StartTimer() {
2018-05-21 23:00:36 -04:00
wg.Add(1)
go func() {
defer t.Clear()
for {
time.Sleep(time.Duration(t.Duration) * time.Millisecond)
if !t.Interval {
t.Done = true
}
2018-05-23 17:23:50 -04:00
PubMsg("timers", &Msg{
2018-05-25 15:36:13 -04:00
Command: Msg_TIMER_READY,
TimerReadyId: t.Id,
TimerReadyDone: t.Done,
})
if t.Done {
return
}
}
2018-05-21 23:00:36 -04:00
}()
}