mirror of
https://github.com/dunglas/frankenphp.git
synced 2025-09-26 19:41:13 +08:00

* Makes go arrays more consistent with PHP arrays. * NewAssociativeArray. * linting * go linting * Exposes all primitive types. * Removes pointer alias * linting * Optimizes hash update. * Fixes extgen tests. * Moves file to tests. * Fixes suggested by @dunglas. * Replaces 'interface{}' with 'any'. * Panics on wrong zval. * interface improvements as suggested by @dunglas. * Adjusts docs. * Adjusts docs. * Removes PackedArray alias and adjusts docs. * Updates docs.
91 lines
1.8 KiB
Go
91 lines
1.8 KiB
Go
package frankenphp
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
// representation of a thread that handles tasks directly assigned by go
|
|
// implements the threadHandler interface
|
|
type taskThread struct {
|
|
thread *phpThread
|
|
execChan chan *task
|
|
}
|
|
|
|
// task callbacks will be executed directly on the PHP thread
|
|
// therefore having full access to the PHP runtime
|
|
type task struct {
|
|
callback func()
|
|
done sync.Mutex
|
|
}
|
|
|
|
func newTask(cb func()) *task {
|
|
t := &task{callback: cb}
|
|
t.done.Lock()
|
|
|
|
return t
|
|
}
|
|
|
|
func (t *task) waitForCompletion() {
|
|
t.done.Lock()
|
|
}
|
|
|
|
func convertToTaskThread(thread *phpThread) *taskThread {
|
|
handler := &taskThread{
|
|
thread: thread,
|
|
execChan: make(chan *task),
|
|
}
|
|
thread.setHandler(handler)
|
|
return handler
|
|
}
|
|
|
|
func (handler *taskThread) beforeScriptExecution() string {
|
|
thread := handler.thread
|
|
|
|
switch thread.state.get() {
|
|
case stateTransitionRequested:
|
|
return thread.transitionToNewHandler()
|
|
case stateBooting, stateTransitionComplete:
|
|
thread.state.set(stateReady)
|
|
handler.waitForTasks()
|
|
|
|
return handler.beforeScriptExecution()
|
|
case stateReady:
|
|
handler.waitForTasks()
|
|
|
|
return handler.beforeScriptExecution()
|
|
case stateShuttingDown:
|
|
// signal to stop
|
|
return ""
|
|
}
|
|
panic("unexpected state: " + thread.state.name())
|
|
}
|
|
|
|
func (handler *taskThread) afterScriptExecution(int) {
|
|
panic("task threads should not execute scripts")
|
|
}
|
|
|
|
func (handler *taskThread) getRequestContext() *frankenPHPContext {
|
|
return nil
|
|
}
|
|
|
|
func (handler *taskThread) name() string {
|
|
return "Task PHP Thread"
|
|
}
|
|
|
|
func (handler *taskThread) waitForTasks() {
|
|
for {
|
|
select {
|
|
case task := <-handler.execChan:
|
|
task.callback()
|
|
task.done.Unlock() // unlock the task to signal completion
|
|
case <-handler.thread.drainChan:
|
|
// thread is shutting down, do not execute the function
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func (handler *taskThread) execute(t *task) {
|
|
handler.execChan <- t
|
|
}
|