Sort VolumeInfos by VolumeId in Store.Status();
Ordered VolumeInfos is more Human-readable, especially when there is a lot of volumes.
This commit is contained in:
@@ -3,6 +3,7 @@ package storage
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/chrislusf/seaweedfs/go/operation"
|
||||
"sort"
|
||||
)
|
||||
|
||||
type VolumeInfo struct {
|
||||
@@ -42,3 +43,23 @@ func (vi VolumeInfo) String() string {
|
||||
return fmt.Sprintf("Id:%d, Size:%d, ReplicaPlacement:%s, Collection:%s, Version:%v, FileCount:%d, DeleteCount:%d, DeletedByteCount:%d, ReadOnly:%v",
|
||||
vi.Id, vi.Size, vi.ReplicaPlacement, vi.Collection, vi.Version, vi.FileCount, vi.DeleteCount, vi.DeletedByteCount, vi.ReadOnly)
|
||||
}
|
||||
|
||||
/*VolumesInfo sorting*/
|
||||
|
||||
type volumeInfos []*VolumeInfo
|
||||
|
||||
func (vis volumeInfos) Len() int {
|
||||
return len(vis)
|
||||
}
|
||||
|
||||
func (vis volumeInfos) Less(i, j int) bool {
|
||||
return vis[i].Id < vis[j].Id
|
||||
}
|
||||
|
||||
func (vis volumeInfos) Swap(i, j int) {
|
||||
vis[i], vis[j] = vis[j], vis[i]
|
||||
}
|
||||
|
||||
func sortVolumeInfos(vis volumeInfos) {
|
||||
sort.Sort(vis)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user