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
|
|
|
|
2018-12-27 18:20:53 +01:00
|
|
|
import (
|
2019-06-07 18:43:07 +02:00
|
|
|
"context"
|
2018-12-27 18:20:53 +01:00
|
|
|
)
|
|
|
|
|
2019-06-05 17:05:53 +02:00
|
|
|
// Thread represents an OS thread.
|
|
|
|
type Thread struct {
|
2020-02-21 01:59:45 +01:00
|
|
|
funcs chan func() error
|
|
|
|
results chan error
|
2018-12-27 18:20:53 +01:00
|
|
|
}
|
|
|
|
|
2019-06-05 17:05:53 +02:00
|
|
|
// New creates a new thread.
|
|
|
|
//
|
|
|
|
// It is assumed that the OS thread is fixed by runtime.LockOSThread when New is called.
|
|
|
|
func New() *Thread {
|
|
|
|
return &Thread{
|
2020-02-21 01:59:45 +01:00
|
|
|
funcs: make(chan func() error),
|
|
|
|
results: make(chan error),
|
2019-06-05 17:05:53 +02:00
|
|
|
}
|
|
|
|
}
|
2018-11-04 15:32:18 +01:00
|
|
|
|
2019-06-05 17:05:53 +02:00
|
|
|
// Loop starts the thread loop.
|
2018-11-04 15:32:18 +01:00
|
|
|
//
|
2019-06-05 17:05:53 +02:00
|
|
|
// Loop must be called on the thread.
|
2020-03-29 09:27:08 +02:00
|
|
|
//
|
|
|
|
// Loop can be called multiple times.
|
2019-06-07 18:43:07 +02:00
|
|
|
func (t *Thread) Loop(context context.Context) {
|
|
|
|
loop:
|
2018-11-04 15:32:18 +01:00
|
|
|
for {
|
|
|
|
select {
|
2019-06-05 17:05:53 +02:00
|
|
|
case f := <-t.funcs:
|
2020-02-21 01:59:45 +01:00
|
|
|
t.results <- f()
|
2019-06-07 18:43:07 +02:00
|
|
|
case <-context.Done():
|
|
|
|
break loop
|
2018-11-04 15:32:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
|
2019-06-05 17:19:12 +02:00
|
|
|
func (t *Thread) Call(f func() error) error {
|
2020-03-29 09:25:15 +02:00
|
|
|
t.funcs <- f
|
|
|
|
return <-t.results
|
2018-11-04 15:32:18 +01:00
|
|
|
}
|