2016-01-27 00:07:59 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-01-27 20:30:27 +00:00
|
|
|
"io"
|
2016-01-27 00:07:59 +00:00
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
type FSCatCommand struct {
|
|
|
|
Meta
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FSCatCommand) Help() string {
|
|
|
|
helpText := `
|
2016-01-31 19:10:45 +00:00
|
|
|
Usage: nomad fs cat <alloc-id> <path>
|
2016-01-27 00:07:59 +00:00
|
|
|
|
|
|
|
Dispays a file in an allocation directory at the given path.
|
2016-01-27 20:41:33 +00:00
|
|
|
The path is relative to the allocation directory and defaults to root if unspecified.
|
2016-01-27 20:52:52 +00:00
|
|
|
|
|
|
|
General Options:
|
|
|
|
|
|
|
|
` + generalOptionsUsage() + `
|
|
|
|
|
|
|
|
-verbose
|
|
|
|
Show full information.
|
|
|
|
`
|
2016-01-27 00:07:59 +00:00
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FSCatCommand) Synopsis() string {
|
2016-02-05 19:01:29 +00:00
|
|
|
return "Cat a file in an allocation directory"
|
2016-01-27 00:07:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FSCatCommand) Run(args []string) int {
|
2016-01-27 21:26:12 +00:00
|
|
|
var verbose bool
|
2016-01-27 00:07:59 +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-01-27 00:07:59 +00:00
|
|
|
|
|
|
|
if err := flags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
args = flags.Args()
|
|
|
|
|
|
|
|
if len(args) < 1 {
|
2016-01-27 20:41:33 +00:00
|
|
|
f.Ui.Error("allocation id is a required parameter")
|
2016-01-27 00:07:59 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
allocID := args[0]
|
|
|
|
path := "/"
|
|
|
|
if len(args) == 2 {
|
|
|
|
path = args[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := f.Meta.Client()
|
|
|
|
if err != nil {
|
|
|
|
f.Ui.Error(fmt.Sprintf("Error inititalizing client: %v", err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2016-01-27 20:56:38 +00:00
|
|
|
// 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-01-27 00:07:59 +00:00
|
|
|
alloc, _, err := client.Allocations().Info(allocID, nil)
|
|
|
|
if err != nil {
|
2016-01-27 00:34:01 +00:00
|
|
|
if len(allocID) == 1 {
|
2016-01-27 20:41:33 +00:00
|
|
|
f.Ui.Error(fmt.Sprintf("Alloc ID must contain at least two characters."))
|
2016-01-27 00:34:01 +00:00
|
|
|
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]
|
|
|
|
}
|
|
|
|
|
|
|
|
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",
|
2016-01-27 20:56:38 +00:00
|
|
|
limit(alloc.ID, length),
|
|
|
|
limit(alloc.EvalID, length),
|
2016-01-27 00:34:01 +00:00
|
|
|
alloc.JobID,
|
|
|
|
alloc.TaskGroup,
|
|
|
|
alloc.DesiredStatus,
|
|
|
|
alloc.ClientStatus,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
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-27 00:07:59 +00:00
|
|
|
}
|
|
|
|
|
2016-01-27 00:37:26 +00:00
|
|
|
// Stat the file to find it's size
|
2016-01-27 00:07:59 +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-27 00:07:59 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if file.IsDir {
|
2016-01-27 22:20:10 +00:00
|
|
|
f.Ui.Error(fmt.Sprintf("The file %q is a directory", file.Name))
|
2016-01-27 00:07:59 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2016-01-27 00:37:26 +00:00
|
|
|
// Get the contents of the file
|
2016-01-27 00:07:59 +00:00
|
|
|
offset := 0
|
|
|
|
limit := file.Size
|
2016-01-27 20:30:27 +00:00
|
|
|
r, _, err := client.AllocFS().ReadAt(alloc, path, int64(offset), limit, nil)
|
|
|
|
if err != nil {
|
2016-01-27 00:07:59 +00:00
|
|
|
f.Ui.Error(fmt.Sprintf("Error reading file: %v", err))
|
|
|
|
return 1
|
|
|
|
}
|
2016-01-27 20:30:27 +00:00
|
|
|
io.Copy(os.Stdout, r)
|
2016-01-27 00:07:59 +00:00
|
|
|
return 0
|
|
|
|
}
|