rclone/cmd/cachestats/cachestats.go

62 lines
1.3 KiB
Go
Raw Normal View History

2021-09-09 14:25:25 +02:00
//go:build !plan9 && !js
2017-11-12 18:54:25 +01:00
// Package cachestats provides the cachestats command.
2017-11-12 18:54:25 +01:00
package cachestats
import (
"encoding/json"
"fmt"
"github.com/rclone/rclone/backend/cache"
"github.com/rclone/rclone/cmd"
"github.com/rclone/rclone/fs"
2017-11-12 18:54:25 +01:00
"github.com/spf13/cobra"
)
func init() {
cmd.Root.AddCommand(commandDefinition)
}
var commandDefinition = &cobra.Command{
Use: "cachestats source:",
Short: `Print cache stats for a remote`,
Long: `Print cache stats for a remote in JSON format
2017-11-12 18:54:25 +01:00
`,
Hidden: true,
Annotations: map[string]string{
"versionIntroduced": "v1.39",
"status": "Deprecated",
},
2017-11-12 18:54:25 +01:00
Run: func(command *cobra.Command, args []string) {
cmd.CheckArgs(1, 1, command, args)
fs.Logf(nil, `"rclone cachestats" is deprecated, use "rclone backend stats %s" instead`, args[0])
2017-11-12 18:54:25 +01:00
fsrc := cmd.NewFsSrc(args)
cmd.Run(false, false, command, func() error {
2017-11-12 18:54:25 +01:00
var fsCache *cache.Fs
fsCache, ok := fsrc.(*cache.Fs)
if !ok {
unwrap := fsrc.Features().UnWrap
if unwrap != nil {
fsCache, ok = unwrap().(*cache.Fs)
}
2017-11-12 18:54:25 +01:00
if !ok {
return fmt.Errorf("%s: is not a cache remote", fsrc.Name())
2017-11-12 18:54:25 +01:00
}
}
m, err := fsCache.Stats()
if err != nil {
return err
}
2017-11-12 18:54:25 +01:00
raw, err := json.MarshalIndent(m, "", " ")
if err != nil {
return err
}
fmt.Printf("%s\n", string(raw))
return nil
})
},
}