2014-04-17 17:43:01 -04:00
|
|
|
package daemon
|
2014-04-07 14:01:35 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"sort"
|
|
|
|
)
|
|
|
|
|
|
|
|
// History is a convenience type for storing a list of containers,
|
|
|
|
// ordered by creation date.
|
|
|
|
type History []*Container
|
|
|
|
|
|
|
|
func (history *History) Len() int {
|
|
|
|
return len(*history)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (history *History) Less(i, j int) bool {
|
|
|
|
containers := *history
|
2014-04-14 02:54:40 -04:00
|
|
|
return containers[j].Created.Before(containers[i].Created)
|
2014-04-07 14:01:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (history *History) Swap(i, j int) {
|
|
|
|
containers := *history
|
|
|
|
tmp := containers[i]
|
|
|
|
containers[i] = containers[j]
|
|
|
|
containers[j] = tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
func (history *History) Add(container *Container) {
|
|
|
|
*history = append(*history, container)
|
2014-05-14 07:17:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (history *History) Sort() {
|
2014-04-07 14:01:35 -04:00
|
|
|
sort.Sort(history)
|
|
|
|
}
|