ebiten/internal/thread/thread.go

99 lines
2.0 KiB
Go
Raw Normal View History

// 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.
package thread
import (
"context"
"runtime"
)
type Thread interface {
Loop(ctx context.Context) error
Call(f func())
private()
}
// OSThread represents an OS thread.
type OSThread struct {
funcs chan func()
done chan struct{}
}
// NewOSThread creates a new thread.
func NewOSThread() *OSThread {
return &OSThread{
funcs: make(chan func()),
done: make(chan struct{}),
}
}
// Loop starts the thread loop until Stop is called on the current OS thread.
2022-12-28 06:46:54 +01:00
//
// Loop must be called on the thread.
func (t *OSThread) Loop(ctx context.Context) error {
runtime.LockOSThread()
defer runtime.UnlockOSThread()
for {
select {
case fn := <-t.funcs:
func() {
defer func() {
t.done <- struct{}{}
}()
fn()
}()
case <-ctx.Done():
return ctx.Err()
}
}
}
2019-06-05 17:19:12 +02:00
// Call calls f on the thread.
2019-02-09 07:32:00 +01: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.
func (t *OSThread) Call(f func()) {
t.funcs <- f
<-t.done
}
func (t *OSThread) private() {
}
// 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 {
return &NoopThread{}
}
// Loop does nothing.
func (t *NoopThread) Loop(ctx context.Context) error {
return nil
}
// Call executes the func immediately.
func (t *NoopThread) Call(f func()) {
f()
}
func (t *NoopThread) private() {
}