2014-04-18 01:43:01 +04:00
|
|
|
package daemon
|
2014-04-07 22: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 10:54:40 +04:00
|
|
|
return containers[j].Created.Before(containers[i].Created)
|
2014-04-07 22:01:35 +04: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 22:01:35 +04:00
|
|
|
}
|
|
|
|
|
2015-07-31 00:01:53 +03:00
|
|
|
// Add the given container to history.
|
2014-04-07 22:01:35 +04:00
|
|
|
func (history *History) Add(container *Container) {
|
|
|
|
*history = append(*history, container)
|
2014-05-14 15:17:58 +04:00
|
|
|
}
|
|
|
|
|
2015-07-31 00:01:53 +03:00
|
|
|
func (history *History) sort() {
|
2014-04-07 22:01:35 +04:00
|
|
|
sort.Sort(history)
|
|
|
|
}
|