2017-03-22 19:44:22 +00:00
|
|
|
// Copyright 2017 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package les
|
|
|
|
|
2017-05-16 18:56:02 +00:00
|
|
|
import "sync"
|
2017-03-22 19:44:22 +00:00
|
|
|
|
2017-05-16 18:56:02 +00:00
|
|
|
// execQueue implements a queue that executes function calls in a single thread,
|
2017-03-22 19:44:22 +00:00
|
|
|
// in the same order as they have been queued.
|
|
|
|
type execQueue struct {
|
2017-05-16 18:56:02 +00:00
|
|
|
mu sync.Mutex
|
|
|
|
cond *sync.Cond
|
|
|
|
funcs []func()
|
|
|
|
closeWait chan struct{}
|
2017-03-22 19:44:22 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 18:56:02 +00:00
|
|
|
// newExecQueue creates a new execution queue.
|
|
|
|
func newExecQueue(capacity int) *execQueue {
|
|
|
|
q := &execQueue{funcs: make([]func(), 0, capacity)}
|
|
|
|
q.cond = sync.NewCond(&q.mu)
|
2017-03-22 19:44:22 +00:00
|
|
|
go q.loop()
|
|
|
|
return q
|
|
|
|
}
|
|
|
|
|
|
|
|
func (q *execQueue) loop() {
|
2017-05-16 18:56:02 +00:00
|
|
|
for f := q.waitNext(false); f != nil; f = q.waitNext(true) {
|
2017-03-22 19:44:22 +00:00
|
|
|
f()
|
|
|
|
}
|
2017-05-16 18:56:02 +00:00
|
|
|
close(q.closeWait)
|
2017-03-22 19:44:22 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 18:56:02 +00:00
|
|
|
func (q *execQueue) waitNext(drop bool) (f func()) {
|
|
|
|
q.mu.Lock()
|
|
|
|
if drop {
|
|
|
|
// Remove the function that just executed. We do this here instead of when
|
|
|
|
// dequeuing so len(q.funcs) includes the function that is running.
|
|
|
|
q.funcs = append(q.funcs[:0], q.funcs[1:]...)
|
|
|
|
}
|
|
|
|
for !q.isClosed() {
|
|
|
|
if len(q.funcs) > 0 {
|
|
|
|
f = q.funcs[0]
|
|
|
|
break
|
|
|
|
}
|
|
|
|
q.cond.Wait()
|
|
|
|
}
|
|
|
|
q.mu.Unlock()
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
|
|
|
func (q *execQueue) isClosed() bool {
|
|
|
|
return q.closeWait != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// canQueue returns true if more function calls can be added to the execution queue.
|
2017-03-22 19:44:22 +00:00
|
|
|
func (q *execQueue) canQueue() bool {
|
2017-05-16 18:56:02 +00:00
|
|
|
q.mu.Lock()
|
|
|
|
ok := !q.isClosed() && len(q.funcs) < cap(q.funcs)
|
|
|
|
q.mu.Unlock()
|
|
|
|
return ok
|
2017-03-22 19:44:22 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 18:56:02 +00:00
|
|
|
// queue adds a function call to the execution queue. Returns true if successful.
|
2017-03-22 19:44:22 +00:00
|
|
|
func (q *execQueue) queue(f func()) bool {
|
2017-05-16 18:56:02 +00:00
|
|
|
q.mu.Lock()
|
|
|
|
ok := !q.isClosed() && len(q.funcs) < cap(q.funcs)
|
|
|
|
if ok {
|
|
|
|
q.funcs = append(q.funcs, f)
|
|
|
|
q.cond.Signal()
|
2017-03-22 19:44:22 +00:00
|
|
|
}
|
2017-05-16 18:56:02 +00:00
|
|
|
q.mu.Unlock()
|
|
|
|
return ok
|
2017-03-22 19:44:22 +00:00
|
|
|
}
|
|
|
|
|
2017-05-16 18:56:02 +00:00
|
|
|
// quit stops the exec queue.
|
|
|
|
// quit waits for the current execution to finish before returning.
|
2017-03-22 19:44:22 +00:00
|
|
|
func (q *execQueue) quit() {
|
2017-05-16 18:56:02 +00:00
|
|
|
q.mu.Lock()
|
|
|
|
if !q.isClosed() {
|
|
|
|
q.closeWait = make(chan struct{})
|
|
|
|
q.cond.Signal()
|
|
|
|
}
|
|
|
|
q.mu.Unlock()
|
|
|
|
<-q.closeWait
|
2017-03-22 19:44:22 +00:00
|
|
|
}
|