moby--moby/runtime/state.go

82 lines
1.3 KiB
Go
Raw Normal View History

package runtime
2013-01-19 00:13:39 +00:00
import (
2013-03-12 12:36:37 +00:00
"fmt"
2013-05-14 22:37:35 +00:00
"github.com/dotcloud/docker/utils"
"sync"
2013-01-28 22:30:05 +00:00
"time"
2013-01-19 00:13:39 +00:00
)
type State struct {
2013-11-21 20:21:03 +00:00
sync.RWMutex
2013-10-18 21:15:24 +00:00
Running bool
Pid int
ExitCode int
StartedAt time.Time
FinishedAt time.Time
2013-10-18 21:15:24 +00:00
Ghost bool
2013-01-19 00:13:39 +00:00
}
// String returns a human-readable description of the state
func (s *State) String() string {
2013-11-21 20:21:03 +00:00
s.RLock()
defer s.RUnlock()
if s.Running {
2013-04-11 16:26:17 +00:00
if s.Ghost {
return fmt.Sprintf("Ghost")
2013-04-11 16:26:17 +00:00
}
2013-11-22 00:41:41 +00:00
return fmt.Sprintf("Up %s", utils.HumanDuration(time.Now().UTC().Sub(s.StartedAt)))
}
return fmt.Sprintf("Exited (%d) %s ago", s.ExitCode, utils.HumanDuration(time.Now().UTC().Sub(s.FinishedAt)))
}
2013-11-21 20:21:03 +00:00
func (s *State) IsRunning() bool {
s.RLock()
defer s.RUnlock()
return s.Running
}
func (s *State) IsGhost() bool {
s.RLock()
defer s.RUnlock()
return s.Ghost
}
func (s *State) GetExitCode() int {
s.RLock()
defer s.RUnlock()
return s.ExitCode
}
func (s *State) SetGhost(val bool) {
s.Lock()
defer s.Unlock()
s.Ghost = val
}
func (s *State) SetRunning(pid int) {
s.Lock()
defer s.Unlock()
2013-01-19 00:13:39 +00:00
s.Running = true
s.Ghost = false
2013-01-19 00:13:39 +00:00
s.ExitCode = 0
s.Pid = pid
2013-11-22 00:41:41 +00:00
s.StartedAt = time.Now().UTC()
2013-01-19 00:13:39 +00:00
}
2013-11-21 20:21:03 +00:00
func (s *State) SetStopped(exitCode int) {
s.Lock()
defer s.Unlock()
2013-01-19 00:13:39 +00:00
s.Running = false
s.Pid = 0
2013-11-22 00:41:41 +00:00
s.FinishedAt = time.Now().UTC()
2013-01-19 00:13:39 +00:00
s.ExitCode = exitCode
}