open-nomad/command/fs_stat.go

166 lines
3.8 KiB
Go
Raw Normal View History

2016-01-26 23:03:26 +00:00
package command
import (
"fmt"
"strings"
2016-02-12 23:26:11 +00:00
humanize "github.com/dustin/go-humanize"
2016-01-26 23:03:26 +00:00
)
type FSStatCommand struct {
Meta
}
func (f *FSStatCommand) Help() string {
helpText := `
2016-01-31 19:10:45 +00:00
Usage: nomad fs stat <alloc-id> <path>
2016-02-12 23:26:11 +00:00
Displays information about an entry in an allocation directory at the given path.
The path is relative to the allocation directory and defaults to root if unspecified.
2016-02-12 23:26:11 +00:00
2016-01-27 20:52:52 +00:00
General Options:
` + generalOptionsUsage() + `
2016-02-12 23:26:11 +00:00
Stat Options:
-H
Machine friendly output.
2016-01-27 20:52:52 +00:00
-verbose
Show full information.
-job <job-id>
Use a random allocation from a specified job-id.
2016-01-26 23:03:26 +00:00
`
return strings.TrimSpace(helpText)
}
func (f *FSStatCommand) Synopsis() string {
return "Stat an entry in an allocation directory"
2016-01-26 23:03:26 +00:00
}
func (f *FSStatCommand) Run(args []string) int {
2016-01-27 21:26:12 +00:00
var verbose bool
2016-02-12 23:26:11 +00:00
var machine bool
var job bool
2016-01-26 23:03:26 +00:00
flags := f.Meta.FlagSet("fs-list", FlagSetClient)
flags.Usage = func() { f.Ui.Output(f.Help()) }
2016-01-27 20:52:52 +00:00
flags.BoolVar(&verbose, "verbose", false, "")
2016-02-12 23:26:11 +00:00
flags.BoolVar(&machine, "H", false, "")
flags.BoolVar(&job, "job", false, "")
2016-01-26 23:03:26 +00:00
if err := flags.Parse(args); err != nil {
return 1
}
args = flags.Args()
if len(args) < 1 {
f.Ui.Error("allocation id is a required parameter")
2016-01-26 23:03:26 +00:00
return 1
}
path := "/"
if len(args) == 2 {
path = args[1]
}
client, err := f.Meta.Client()
if err != nil {
f.Ui.Error(fmt.Sprintf("Error initializing client: %v", err))
2016-01-26 23:03:26 +00:00
return 1
}
allocID := args[0]
if job {
allocID, err = getRandomJobAlloc(client, args[0])
if err != nil {
f.Ui.Error(fmt.Sprintf("Error querying API: %v", err))
2016-04-07 20:56:17 +00:00
return 1
}
}
// Truncate the id unless full length is requested
length := shortId
if verbose {
length = fullId
}
2016-01-27 00:34:01 +00:00
// Query the allocation info
2016-03-17 23:48:45 +00:00
if len(allocID) == 1 {
f.Ui.Error(fmt.Sprintf("Alloc ID must contain at least two characters."))
return 1
}
if len(allocID)%2 == 1 {
// Identifiers must be of even length, so we strip off the last byte
// to provide a consistent user experience.
allocID = allocID[:len(allocID)-1]
}
2016-01-27 00:34:01 +00:00
2016-03-17 23:48:45 +00:00
allocs, _, err := client.Allocations().PrefixList(allocID)
if err != nil {
f.Ui.Error(fmt.Sprintf("Error querying allocation: %v", err))
return 1
}
if len(allocs) == 0 {
f.Ui.Error(fmt.Sprintf("No allocation(s) with prefix or id %q found", allocID))
return 1
}
if len(allocs) > 1 {
// Format the allocs
out := make([]string, len(allocs)+1)
out[0] = "ID|Eval ID|Job ID|Task Group|Desired Status|Client Status"
for i, alloc := range allocs {
out[i+1] = fmt.Sprintf("%s|%s|%s|%s|%s|%s",
limit(alloc.ID, length),
limit(alloc.EvalID, length),
alloc.JobID,
alloc.TaskGroup,
alloc.DesiredStatus,
alloc.ClientStatus,
)
2016-01-27 00:34:01 +00:00
}
2016-03-17 23:48:45 +00:00
f.Ui.Output(fmt.Sprintf("Prefix matched multiple allocations\n\n%s", formatList(out)))
return 0
}
// Prefix lookup matched a single allocation
alloc, _, err := client.Allocations().Info(allocs[0].ID, nil)
if err != nil {
f.Ui.Error(fmt.Sprintf("Error querying allocation: %s", err))
return 1
2016-01-26 23:03:26 +00:00
}
if alloc.DesiredStatus == "failed" {
allocID := limit(alloc.ID, length)
msg := fmt.Sprintf(`The allocation %q failed to be placed. To see the cause, run:
nomad alloc-status %s`, allocID, allocID)
f.Ui.Error(msg)
return 0
}
2016-01-27 00:37:26 +00:00
// Get the file information
2016-01-26 23:03:26 +00:00
file, _, err := client.AllocFS().Stat(alloc, path, nil)
if err != nil {
2016-01-28 06:08:06 +00:00
f.Ui.Error(err.Error())
2016-01-26 23:03:26 +00:00
return 1
}
2016-01-27 00:37:26 +00:00
// Display the file information
2016-01-26 23:03:26 +00:00
out := make([]string, 2)
2016-01-27 22:20:10 +00:00
out[0] = "Mode|Size|Modified Time|Name"
2016-01-26 23:03:26 +00:00
if file != nil {
fn := file.Name
if file.IsDir {
fn = fmt.Sprintf("%s/", fn)
}
2016-02-12 23:26:11 +00:00
var size string
if machine {
size = fmt.Sprintf("%d", file.Size)
} else {
size = humanize.Bytes(uint64(file.Size))
}
out[1] = fmt.Sprintf("%s|%s|%s|%s", file.FileMode, size,
2016-01-27 22:56:17 +00:00
formatTime(file.ModTime), fn)
2016-01-26 23:03:26 +00:00
}
f.Ui.Output(formatList(out))
return 0
}