andlabs-ui/redo/uitask.go

103 lines
2.1 KiB
Go
Raw Normal View History

// 6 july 2014
package ui
import (
"runtime"
2014-07-08 10:23:31 -05:00
"sync"
)
// Go initializes package ui.
// TODO write this bit
func Go() error {
runtime.LockOSThread()
if err := uiinit(); err != nil {
return err
}
go uitask()
uimsgloop()
return nil
}
// TODO Stop
// This is the ui main loop.
// It is spawned by Go as a goroutine.
func uitask() {
for {
select {
case req := <-Do:
// TODO foreign event
issue(req)
case <-stall: // wait for event to finish
<-stall // see below for information
}
}
}
// At each event, this is pulsed twice: once when the event begins, and once when the event ends.
// Do is not processed in between.
var stall = make(chan struct{})
2014-07-08 10:23:31 -05:00
type event struct {
// All events internally return bool; those that don't will be wrapped around to return a dummy value.
do func(c Doer) bool
lock sync.Mutex
}
func (e *event) set(f func(Doer)) {
e.lock.Lock()
defer e.lock.Unlock()
e.do = func(c Doer) bool {
f(c)
return false
}
}
func (e *event) setbool(f func(Doer) bool) {
e.lock.Lock()
defer e.lock.Unlock()
e.do = f
}
// This is the common code for running an event.
2014-07-07 23:29:43 -05:00
// It runs on the main thread without a message pump; it provides its own.
2014-07-08 10:23:31 -05:00
func (e *event) fire() bool {
stall <- struct{}{} // enter event handler
c := make(Doer)
2014-07-08 10:23:31 -05:00
result := false
go func() {
2014-07-08 10:23:31 -05:00
e.lock.Lock()
defer e.lock.Unlock()
result = e.do(c)
close(c)
}()
for req := range c {
2014-07-07 23:29:43 -05:00
// note: this is perform, not issue!
// doevent runs on the main thread without a message pump!
perform(req)
}
2014-07-07 23:29:43 -05:00
// leave the event handler; leave it only after returning from an event handler so we must issue it like a normal Request
issue(&Request{
op: func() {
stall <- struct{}{}
},
// unfortunately, closing a nil channel causes a panic
// therefore, we have to make a dummy channel
// TODO add conditional checks to the request handler instead?
resp: make(chan interface{}),
})
2014-07-08 10:23:31 -05:00
return result
2014-07-07 23:29:43 -05:00
}
// Common code for performing a Request.
// This should run on the main thread.
// Implementations of issue() should call this.
func perform(req *Request) {
req.op()
close(req.resp)
}