open-nomad/drivers/exec/handle.go

80 lines
1.7 KiB
Go
Raw Normal View History

2018-10-16 02:37:58 +00:00
package exec
import (
2018-12-05 16:04:18 +00:00
"context"
"strconv"
2018-10-16 02:37:58 +00:00
"sync"
"time"
hclog "github.com/hashicorp/go-hclog"
plugin "github.com/hashicorp/go-plugin"
2018-12-07 01:54:14 +00:00
"github.com/hashicorp/nomad/drivers/shared/executor"
2018-10-16 02:37:58 +00:00
"github.com/hashicorp/nomad/plugins/drivers"
)
type taskHandle struct {
2018-12-07 01:54:14 +00:00
exec executor.Executor
2018-10-16 02:37:58 +00:00
pid int
pluginClient *plugin.Client
logger hclog.Logger
// stateLock syncs access to all fields below
stateLock sync.RWMutex
taskConfig *drivers.TaskConfig
2018-10-16 02:37:58 +00:00
procState drivers.TaskState
startedAt time.Time
completedAt time.Time
exitResult *drivers.ExitResult
}
func (h *taskHandle) TaskStatus() *drivers.TaskStatus {
h.stateLock.RLock()
defer h.stateLock.RUnlock()
return &drivers.TaskStatus{
ID: h.taskConfig.ID,
Name: h.taskConfig.Name,
State: h.procState,
StartedAt: h.startedAt,
CompletedAt: h.completedAt,
ExitResult: h.exitResult,
DriverAttributes: map[string]string{
"pid": strconv.Itoa(h.pid),
},
}
}
func (h *taskHandle) IsRunning() bool {
h.stateLock.RLock()
defer h.stateLock.RUnlock()
2018-10-16 02:37:58 +00:00
return h.procState == drivers.TaskStateRunning
}
func (h *taskHandle) run() {
h.stateLock.Lock()
2018-10-16 02:37:58 +00:00
if h.exitResult == nil {
h.exitResult = &drivers.ExitResult{}
}
h.stateLock.Unlock()
2018-10-16 02:37:58 +00:00
// Block until process exits
2018-12-05 16:04:18 +00:00
ps, err := h.exec.Wait(context.Background())
h.stateLock.Lock()
defer h.stateLock.Unlock()
2018-10-16 02:37:58 +00:00
if err != nil {
h.exitResult.Err = err
h.procState = drivers.TaskStateUnknown
h.completedAt = time.Now()
return
}
h.procState = drivers.TaskStateExited
h.exitResult.ExitCode = ps.ExitCode
h.exitResult.Signal = ps.Signal
h.completedAt = ps.Time
// TODO: detect if the task OOMed
2018-10-16 02:37:58 +00:00
}