-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4965 from baude/reviewcorrections3
APIv2 review corrections #3
- Loading branch information
Showing
20 changed files
with
299 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package define | ||
|
||
const ( | ||
// PodStateCreated indicates the pod is created but has not been started | ||
PodStateCreated = "Created" | ||
// PodStateErrored indicates the pod is in an errored state where | ||
// information about it can no longer be retrieved | ||
PodStateErrored = "Error" | ||
// PodStateExited indicates the pod ran but has been stopped | ||
PodStateExited = "Exited" | ||
// PodStatePaused indicates the pod has been paused | ||
PodStatePaused = "Paused" | ||
// PodStateRunning indicates that one or more of the containers in | ||
// the pod is running | ||
PodStateRunning = "Running" | ||
// PodStateStopped indicates all of the containers belonging to the pod | ||
// are stopped. | ||
PodStateStopped = "Stopped" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package libpod | ||
|
||
import "github.com/containers/libpod/libpod/define" | ||
|
||
// GetPodStatus determines the status of the pod based on the | ||
// statuses of the containers in the pod. | ||
// Returns a string representation of the pod status | ||
func (p *Pod) GetPodStatus() (string, error) { | ||
ctrStatuses, err := p.Status() | ||
if err != nil { | ||
return define.PodStateErrored, err | ||
} | ||
return CreatePodStatusResults(ctrStatuses) | ||
} | ||
|
||
func CreatePodStatusResults(ctrStatuses map[string]define.ContainerStatus) (string, error) { | ||
ctrNum := len(ctrStatuses) | ||
if ctrNum == 0 { | ||
return define.PodStateCreated, nil | ||
} | ||
statuses := map[string]int{ | ||
define.PodStateStopped: 0, | ||
define.PodStateRunning: 0, | ||
define.PodStatePaused: 0, | ||
define.PodStateCreated: 0, | ||
define.PodStateErrored: 0, | ||
} | ||
for _, ctrStatus := range ctrStatuses { | ||
switch ctrStatus { | ||
case define.ContainerStateExited: | ||
fallthrough | ||
case define.ContainerStateStopped: | ||
statuses[define.PodStateStopped]++ | ||
case define.ContainerStateRunning: | ||
statuses[define.PodStateRunning]++ | ||
case define.ContainerStatePaused: | ||
statuses[define.PodStatePaused]++ | ||
case define.ContainerStateCreated, define.ContainerStateConfigured: | ||
statuses[define.PodStateCreated]++ | ||
default: | ||
statuses[define.PodStateErrored]++ | ||
} | ||
} | ||
|
||
switch { | ||
case statuses[define.PodStateRunning] > 0: | ||
return define.PodStateRunning, nil | ||
case statuses[define.PodStatePaused] == ctrNum: | ||
return define.PodStatePaused, nil | ||
case statuses[define.PodStateStopped] == ctrNum: | ||
return define.PodStateExited, nil | ||
case statuses[define.PodStateStopped] > 0: | ||
return define.PodStateStopped, nil | ||
case statuses[define.PodStateErrored] > 0: | ||
return define.PodStateErrored, nil | ||
default: | ||
return define.PodStateCreated, nil | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.