2018-11-04 15:32:18 +01:00
|
|
|
// Copyright 2018 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2019-06-05 17:05:53 +02:00
|
|
|
package thread
|
2018-11-04 15:32:18 +01:00
|
|
|
|
2020-10-20 20:17:40 +02:00
|
|
|
// Thread defines threading behavior in Ebiten.
|
2020-10-20 19:55:17 +02:00
|
|
|
type Thread interface {
|
2022-01-02 19:30:29 +01:00
|
|
|
Call(func())
|
2020-10-20 19:55:17 +02:00
|
|
|
Loop()
|
2022-01-02 19:30:29 +01:00
|
|
|
Stop()
|
2020-10-20 19:55:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// OSThread represents an OS thread.
|
|
|
|
type OSThread struct {
|
2022-01-02 19:30:29 +01:00
|
|
|
funcs chan func()
|
|
|
|
done chan struct{}
|
|
|
|
terminate chan struct{}
|
2018-12-27 18:20:53 +01:00
|
|
|
}
|
|
|
|
|
2020-10-20 19:55:17 +02:00
|
|
|
// NewOSThread creates a new thread.
|
2019-06-05 17:05:53 +02:00
|
|
|
//
|
2020-10-20 19:55:17 +02:00
|
|
|
// It is assumed that the OS thread is fixed by runtime.LockOSThread when NewOSThread is called.
|
|
|
|
func NewOSThread() *OSThread {
|
|
|
|
return &OSThread{
|
2022-01-02 19:30:29 +01:00
|
|
|
funcs: make(chan func()),
|
|
|
|
done: make(chan struct{}),
|
|
|
|
terminate: make(chan struct{}),
|
2019-06-05 17:05:53 +02:00
|
|
|
}
|
|
|
|
}
|
2018-11-04 15:32:18 +01:00
|
|
|
|
2022-01-02 19:30:29 +01:00
|
|
|
// Loop starts the thread loop until Stop is called.
|
2018-11-04 15:32:18 +01:00
|
|
|
//
|
2019-06-05 17:05:53 +02:00
|
|
|
// Loop must be called on the thread.
|
2020-10-20 19:55:17 +02:00
|
|
|
func (t *OSThread) Loop() {
|
2022-01-02 19:30:29 +01:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case fn := <-t.funcs:
|
|
|
|
func() {
|
|
|
|
defer func() {
|
|
|
|
t.done <- struct{}{}
|
|
|
|
}()
|
|
|
|
|
|
|
|
fn()
|
|
|
|
}()
|
|
|
|
case <-t.terminate:
|
2020-08-29 19:10:49 +02:00
|
|
|
return
|
2018-11-04 15:32:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-02 19:30:29 +01:00
|
|
|
// Stop stops the thread loop.
|
|
|
|
func (t *OSThread) Stop() {
|
|
|
|
close(t.terminate)
|
|
|
|
}
|
|
|
|
|
2019-06-05 17:19:12 +02:00
|
|
|
// Call calls f on the thread.
|
2019-02-09 07:32:00 +01:00
|
|
|
//
|
2019-06-05 17:05:53 +02:00
|
|
|
// Do not call this from the same thread. This would block forever.
|
2020-02-23 17:54:52 +01:00
|
|
|
//
|
2020-03-29 09:27:08 +02:00
|
|
|
// Call blocks if Loop is not called.
|
2022-01-02 19:30:29 +01:00
|
|
|
func (t *OSThread) Call(f func()) {
|
2020-03-29 09:25:15 +02:00
|
|
|
t.funcs <- f
|
2022-01-02 19:30:29 +01:00
|
|
|
<-t.done
|
2018-11-04 15:32:18 +01:00
|
|
|
}
|
2020-10-20 19:55:17 +02:00
|
|
|
|
|
|
|
// NoopThread is used to disable threading.
|
|
|
|
type NoopThread struct{}
|
|
|
|
|
|
|
|
// NewNoopThread creates a new thread that does no threading.
|
2021-06-14 17:43:48 +02:00
|
|
|
func NewNoopThread() *NoopThread {
|
2020-10-20 19:55:17 +02:00
|
|
|
return &NoopThread{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop does nothing
|
|
|
|
func (t *NoopThread) Loop() {}
|
|
|
|
|
|
|
|
// Call executes the func immediately
|
2022-01-02 19:30:29 +01:00
|
|
|
func (t *NoopThread) Call(f func()) { f() }
|
|
|
|
|
|
|
|
// Stop does nothing
|
|
|
|
func (t *NoopThread) Stop() {}
|