blob: 00698113a1af8e60739f56d52065a1fa50a3dc2d [file] [log] [blame]
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package event provides an infinitely buffered event queue.
package event // import "golang.org/x/exp/shiny/driver/internal/event"
import (
"sync"
)
// Queue is an infinitely buffered event queue. The zero value is usable, but
// a Queue value must not be copied.
type Queue struct {
mu sync.Mutex
cond sync.Cond // cond.L is lazily initialized to &Queue.mu.
events []interface{}
}
// NextEvent implements the screen.EventQueue interface.
func (q *Queue) NextEvent() interface{} {
q.mu.Lock()
defer q.mu.Unlock()
if q.cond.L == nil {
q.cond.L = &q.mu
}
for {
if len(q.events) > 0 {
e := q.events[0]
q.events = q.events[1:]
return e
}
q.cond.Wait()
}
}
// Send implements the screen.EventQueue interface.
func (q *Queue) Send(event interface{}) {
q.mu.Lock()
defer q.mu.Unlock()
if q.cond.L == nil {
q.cond.L = &q.mu
}
q.events = append(q.events, event)
q.cond.Signal()
}