command.go 2.62 KB
Newer Older
Matt Bell's avatar
Matt Bell committed
1 2 3
package commands

import (
Matt Bell's avatar
Matt Bell committed
4
	"errors"
Matt Bell's avatar
Matt Bell committed
5 6
	"fmt"
	"strings"
7 8

	u "github.com/jbenet/go-ipfs/util"
Matt Bell's avatar
Matt Bell committed
9 10
)

11 12
var log = u.Logger("command")

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
13 14
// Function is the type of function that Commands use.
// It reads from the Request, and writes results to the Response.
15
type Function func(Request, Response)
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
16 17

// Command is a runnable command, with input arguments and options (flags).
18
// It can also have Subcommands, to group units of work into sets.
Matt Bell's avatar
Matt Bell committed
19
type Command struct {
20 21 22 23
	Help        string
	Options     []Option
	Run         Function
	Subcommands map[string]*Command
Matt Bell's avatar
Matt Bell committed
24 25
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
26 27
// ErrNotCallable signals a command that cannot be called.
var ErrNotCallable = errors.New("This command can't be called directly. Try one of its subcommands.")
Matt Bell's avatar
Matt Bell committed
28

29
// Call invokes the command for the given Request
30 31
func (c *Command) Call(req Request) Response {
	res := NewResponse(req)
Matt Bell's avatar
Matt Bell committed
32

33
	cmds, err := c.Resolve(req.Path())
Matt Bell's avatar
Matt Bell committed
34
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
35
		res.SetError(err, ErrClient)
Matt Bell's avatar
Matt Bell committed
36 37 38
		return res
	}
	cmd := cmds[len(cmds)-1]
Matt Bell's avatar
Matt Bell committed
39

40
	if cmd.Run == nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
41
		res.SetError(ErrNotCallable, ErrClient)
Matt Bell's avatar
Matt Bell committed
42 43
		return res
	}
Matt Bell's avatar
Matt Bell committed
44

45
	options, err := c.GetOptions(req.Path())
Matt Bell's avatar
Matt Bell committed
46
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
47
		res.SetError(err, ErrClient)
Matt Bell's avatar
Matt Bell committed
48 49
		return res
	}
Matt Bell's avatar
Matt Bell committed
50

51
	err = req.ConvertOptions(options)
Matt Bell's avatar
Matt Bell committed
52
	if err != nil {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
53
		res.SetError(err, ErrClient)
Matt Bell's avatar
Matt Bell committed
54 55
		return res
	}
Matt Bell's avatar
Matt Bell committed
56

57
	cmd.Run(req, res)
Matt Bell's avatar
Matt Bell committed
58 59

	return res
Matt Bell's avatar
Matt Bell committed
60 61
}

Matt Bell's avatar
Matt Bell committed
62 63
// Resolve gets the subcommands at the given path
func (c *Command) Resolve(path []string) ([]*Command, error) {
Matt Bell's avatar
Matt Bell committed
64 65
	cmds := make([]*Command, len(path)+1)
	cmds[0] = c
Matt Bell's avatar
Matt Bell committed
66

Matt Bell's avatar
Matt Bell committed
67 68
	cmd := c
	for i, name := range path {
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
69
		cmd = cmd.Subcommand(name)
Matt Bell's avatar
Matt Bell committed
70

Matt Bell's avatar
Matt Bell committed
71 72 73 74
		if cmd == nil {
			pathS := strings.Join(path[0:i], "/")
			return nil, fmt.Errorf("Undefined command: '%s'", pathS)
		}
Matt Bell's avatar
Matt Bell committed
75

Matt Bell's avatar
Matt Bell committed
76 77
		cmds[i+1] = cmd
	}
Matt Bell's avatar
Matt Bell committed
78

Matt Bell's avatar
Matt Bell committed
79
	return cmds, nil
Matt Bell's avatar
Matt Bell committed
80 81
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
82
// Get resolves and returns the Command addressed by path
Matt Bell's avatar
Matt Bell committed
83
func (c *Command) Get(path []string) (*Command, error) {
Matt Bell's avatar
Matt Bell committed
84 85 86 87 88
	cmds, err := c.Resolve(path)
	if err != nil {
		return nil, err
	}
	return cmds[len(cmds)-1], nil
Matt Bell's avatar
Matt Bell committed
89 90
}

91 92
// GetOptions gets the options in the given path of commands
func (c *Command) GetOptions(path []string) (map[string]Option, error) {
Matt Bell's avatar
Matt Bell committed
93 94 95 96 97 98
	options := make([]Option, len(c.Options))

	cmds, err := c.Resolve(path)
	if err != nil {
		return nil, err
	}
99 100
	cmds = append(cmds, globalCommand)

Matt Bell's avatar
Matt Bell committed
101 102 103 104 105 106 107
	for _, cmd := range cmds {
		options = append(options, cmd.Options...)
	}

	optionsMap := make(map[string]Option)
	for _, opt := range options {
		for _, name := range opt.Names {
108 109 110 111
			if _, found := optionsMap[name]; found {
				return nil, fmt.Errorf("Option name '%s' used multiple times", name)
			}

Matt Bell's avatar
Matt Bell committed
112 113 114 115 116
			optionsMap[name] = opt
		}
	}

	return optionsMap, nil
117 118
}

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
119 120
// Subcommand returns the subcommand with the given id
func (c *Command) Subcommand(id string) *Command {
121
	return c.Subcommands[id]
122
}