2019-03-20 04:58:00 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2019-12-13 08:22:37 +00:00
|
|
|
"io"
|
|
|
|
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2019-03-20 04:58:00 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-06-05 08:30:24 +00:00
|
|
|
Commands = append(Commands, &commandFsDu{})
|
2019-03-20 04:58:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type commandFsDu struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandFsDu) Name() string {
|
|
|
|
return "fs.du"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandFsDu) Help() string {
|
2019-03-23 18:54:26 +00:00
|
|
|
return `show disk usage
|
|
|
|
|
|
|
|
fs.du http://<filer_server>:<port>/dir
|
|
|
|
fs.du http://<filer_server>:<port>/dir/file_name
|
|
|
|
fs.du http://<filer_server>:<port>/dir/file_prefix
|
|
|
|
`
|
2019-03-20 04:58:00 +00:00
|
|
|
}
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
func (c *commandFsDu) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
2019-03-20 04:58:00 +00:00
|
|
|
|
2019-04-05 02:27:51 +00:00
|
|
|
filerServer, filerPort, path, err := commandEnv.parseUrl(findInputDirectory(args))
|
2019-03-20 04:58:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-04-05 02:27:51 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
if commandEnv.isDirectory(ctx, filerServer, filerPort, path) {
|
|
|
|
path = path + "/"
|
2019-03-20 04:58:00 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
var blockCount, byteCount uint64
|
|
|
|
dir, name := filer2.FullPath(path).DirAndName()
|
|
|
|
blockCount, byteCount, err = duTraverseDirectory(ctx, writer, commandEnv.getFilerClient(filerServer, filerPort), dir, name)
|
2019-03-20 04:58:00 +00:00
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
if name == "" && err == nil {
|
|
|
|
fmt.Fprintf(writer, "block:%4d\tbyte:%10d\t%s\n", blockCount, byteCount, dir)
|
|
|
|
}
|
2019-03-20 04:58:00 +00:00
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
return
|
2019-03-20 04:58:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
func duTraverseDirectory(ctx context.Context, writer io.Writer, filerClient filer2.FilerClient, dir, name string) (blockCount uint64, byteCount uint64, err error) {
|
2019-03-20 04:58:00 +00:00
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
err = filer2.ReadDirAllEntries(ctx, filerClient, dir, name, func(entry *filer_pb.Entry, isLast bool) {
|
|
|
|
if entry.IsDirectory {
|
|
|
|
subDir := fmt.Sprintf("%s/%s", dir, entry.Name)
|
|
|
|
if dir == "/" {
|
|
|
|
subDir = "/" + entry.Name
|
2019-03-20 04:58:00 +00:00
|
|
|
}
|
2019-12-13 08:22:37 +00:00
|
|
|
numBlock, numByte, err := duTraverseDirectory(ctx, writer, filerClient, subDir, "")
|
|
|
|
if err == nil {
|
|
|
|
blockCount += numBlock
|
|
|
|
byteCount += numByte
|
2019-03-20 04:58:00 +00:00
|
|
|
}
|
2019-12-13 08:22:37 +00:00
|
|
|
} else {
|
|
|
|
blockCount += uint64(len(entry.Chunks))
|
|
|
|
byteCount += filer2.TotalSize(entry.Chunks)
|
2019-03-20 04:58:00 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 08:22:37 +00:00
|
|
|
if name != "" && !entry.IsDirectory {
|
|
|
|
fmt.Fprintf(writer, "block:%4d\tbyte:%10d\t%s/%s\n", blockCount, byteCount, dir, name)
|
|
|
|
}
|
|
|
|
})
|
2019-03-20 04:58:00 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
func (env *CommandEnv) withFilerClient(ctx context.Context, filerServer string, filerPort int64, fn func(filer_pb.SeaweedFilerClient) error) error {
|
2019-03-20 04:58:00 +00:00
|
|
|
|
|
|
|
filerGrpcAddress := fmt.Sprintf("%s:%d", filerServer, filerPort+10000)
|
|
|
|
return util.WithCachedGrpcClient(ctx, func(grpcConnection *grpc.ClientConn) error {
|
|
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
|
|
|
return fn(client)
|
|
|
|
}, filerGrpcAddress, env.option.GrpcDialOption)
|
|
|
|
|
|
|
|
}
|
2019-12-13 08:22:37 +00:00
|
|
|
|
|
|
|
type commandFilerClient struct {
|
|
|
|
env *CommandEnv
|
|
|
|
filerServer string
|
|
|
|
filerPort int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (env *CommandEnv) getFilerClient(filerServer string, filerPort int64) *commandFilerClient {
|
|
|
|
return &commandFilerClient{
|
|
|
|
env: env,
|
|
|
|
filerServer: filerServer,
|
|
|
|
filerPort: filerPort,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (c *commandFilerClient) WithFilerClient(ctx context.Context, fn func(filer_pb.SeaweedFilerClient) error) error {
|
|
|
|
return c.env.withFilerClient(ctx, c.filerServer, c.filerPort, fn)
|
|
|
|
}
|