2014-04-17 14:43:01 -07:00
|
|
|
package daemon
|
2014-04-07 11:01:35 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"sort"
|
2015-11-12 11:55:17 -08:00
|
|
|
|
|
|
|
"github.com/docker/docker/container"
|
2014-04-07 11:01:35 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// History is a convenience type for storing a list of containers,
|
|
|
|
// ordered by creation date.
|
2015-11-12 11:55:17 -08:00
|
|
|
type History []*container.Container
|
2014-04-07 11:01:35 -07:00
|
|
|
|
|
|
|
func (history *History) Len() int {
|
|
|
|
return len(*history)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (history *History) Less(i, j int) bool {
|
|
|
|
containers := *history
|
2014-04-14 06:54:40 +00:00
|
|
|
return containers[j].Created.Before(containers[i].Created)
|
2014-04-07 11:01:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (history *History) Swap(i, j int) {
|
|
|
|
containers := *history
|
2015-03-25 00:11:04 +03:00
|
|
|
containers[i], containers[j] = containers[j], containers[i]
|
2014-04-07 11:01:35 -07:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:01:53 -07:00
|
|
|
// Add the given container to history.
|
2015-11-12 11:55:17 -08:00
|
|
|
func (history *History) Add(container *container.Container) {
|
2014-04-07 11:01:35 -07:00
|
|
|
*history = append(*history, container)
|
2014-05-14 14:17:58 +03:00
|
|
|
}
|
|
|
|
|
2015-07-30 14:01:53 -07:00
|
|
|
func (history *History) sort() {
|
2014-04-07 11:01:35 -07:00
|
|
|
sort.Sort(history)
|
|
|
|
}
|