mirror of
https://github.com/ipfs/kubo.git
synced 2025-07-01 10:49:24 +08:00

- updated go-ctxgroup and goprocess ctxgroup: AddChildGroup was changed to AddChild. Used in two files: - p2p/net/mock/mock_net.go - routing/dht/dht.go - updated context from hg repo to git prev. commit in hg was ad01a6fcc8a19d3a4478c836895ffe883bd2ceab. (context: make parentCancelCtx iterative) represents commit 84f8955a887232b6308d79c68b8db44f64df455c in git repo - updated context to master (b6fdb7d8a4ccefede406f8fe0f017fb58265054c) Aaron Jacobs (2): net/context: Don't accept a context in the DoSomethingSlow example. context: Be clear that users must cancel the result of WithCancel. Andrew Gerrand (1): go.net: use golang.org/x/... import paths Bryan C. Mills (1): net/context: Don't leak goroutines in Done example. Damien Neil (1): context: fix removal of cancelled timer contexts from parent David Symonds (2): context: Fix WithValue example code. net: add import comments. Sameer Ajmani (1): context: fix TestAllocs to account for ints in interfaces
300 lines
6.7 KiB
Go
300 lines
6.7 KiB
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"reflect"
|
|
"strconv"
|
|
|
|
context "github.com/jbenet/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
|
|
"github.com/jbenet/go-ipfs/commands/files"
|
|
"github.com/jbenet/go-ipfs/core"
|
|
"github.com/jbenet/go-ipfs/repo/config"
|
|
u "github.com/jbenet/go-ipfs/util"
|
|
)
|
|
|
|
type optMap map[string]interface{}
|
|
|
|
type Context struct {
|
|
// this Context is temporary. Will be replaced soon, as we get
|
|
// rid of this variable entirely.
|
|
Context context.Context
|
|
|
|
Online bool
|
|
ConfigRoot string
|
|
|
|
config *config.Config
|
|
LoadConfig func(path string) (*config.Config, error)
|
|
|
|
node *core.IpfsNode
|
|
ConstructNode func() (*core.IpfsNode, error)
|
|
}
|
|
|
|
// GetConfig returns the config of the current Command exection
|
|
// context. It may load it with the providied function.
|
|
func (c *Context) GetConfig() (*config.Config, error) {
|
|
var err error
|
|
if c.config == nil {
|
|
if c.LoadConfig == nil {
|
|
return nil, errors.New("nil LoadConfig function")
|
|
}
|
|
c.config, err = c.LoadConfig(c.ConfigRoot)
|
|
}
|
|
return c.config, err
|
|
}
|
|
|
|
// GetNode returns the node of the current Command exection
|
|
// context. It may construct it with the providied function.
|
|
func (c *Context) GetNode() (*core.IpfsNode, error) {
|
|
var err error
|
|
if c.node == nil {
|
|
if c.ConstructNode == nil {
|
|
return nil, errors.New("nil ConstructNode function")
|
|
}
|
|
c.node, err = c.ConstructNode()
|
|
}
|
|
return c.node, err
|
|
}
|
|
|
|
// NodeWithoutConstructing returns the underlying node variable
|
|
// so that clients may close it.
|
|
func (c *Context) NodeWithoutConstructing() *core.IpfsNode {
|
|
return c.node
|
|
}
|
|
|
|
// Request represents a call to a command from a consumer
|
|
type Request interface {
|
|
Path() []string
|
|
Option(name string) *OptionValue
|
|
Options() optMap
|
|
SetOption(name string, val interface{})
|
|
SetOptions(opts map[string]interface{}) error
|
|
Arguments() []string
|
|
SetArguments([]string)
|
|
Files() files.File
|
|
SetFiles(files.File)
|
|
Context() *Context
|
|
SetContext(Context)
|
|
Command() *Command
|
|
Values() map[string]interface{}
|
|
Stdin() io.Reader
|
|
|
|
ConvertOptions() error
|
|
}
|
|
|
|
type request struct {
|
|
path []string
|
|
options optMap
|
|
arguments []string
|
|
files files.File
|
|
cmd *Command
|
|
ctx Context
|
|
optionDefs map[string]Option
|
|
values map[string]interface{}
|
|
stdin io.Reader
|
|
}
|
|
|
|
// Path returns the command path of this request
|
|
func (r *request) Path() []string {
|
|
return r.path
|
|
}
|
|
|
|
// Option returns the value of the option for given name.
|
|
func (r *request) Option(name string) *OptionValue {
|
|
// find the option with the specified name
|
|
option, found := r.optionDefs[name]
|
|
if !found {
|
|
return nil
|
|
}
|
|
|
|
// try all the possible names, break if we find a value
|
|
for _, n := range option.Names() {
|
|
val, found := r.options[n]
|
|
if found {
|
|
return &OptionValue{val, found, option}
|
|
}
|
|
}
|
|
|
|
// MAYBE_TODO: use default value instead of nil
|
|
return &OptionValue{nil, false, option}
|
|
}
|
|
|
|
// Options returns a copy of the option map
|
|
func (r *request) Options() optMap {
|
|
output := make(optMap)
|
|
for k, v := range r.options {
|
|
output[k] = v
|
|
}
|
|
return output
|
|
}
|
|
|
|
// SetOption sets the value of the option for given name.
|
|
func (r *request) SetOption(name string, val interface{}) {
|
|
// find the option with the specified name
|
|
option, found := r.optionDefs[name]
|
|
if !found {
|
|
return
|
|
}
|
|
|
|
// try all the possible names, if we already have a value then set over it
|
|
for _, n := range option.Names() {
|
|
_, found := r.options[n]
|
|
if found {
|
|
r.options[n] = val
|
|
return
|
|
}
|
|
}
|
|
|
|
r.options[name] = val
|
|
}
|
|
|
|
// SetOptions sets the option values, unsetting any values that were previously set
|
|
func (r *request) SetOptions(opts map[string]interface{}) error {
|
|
r.options = opts
|
|
return r.ConvertOptions()
|
|
}
|
|
|
|
// Arguments returns the arguments slice
|
|
func (r *request) Arguments() []string {
|
|
return r.arguments
|
|
}
|
|
|
|
func (r *request) SetArguments(args []string) {
|
|
r.arguments = args
|
|
}
|
|
|
|
func (r *request) Files() files.File {
|
|
return r.files
|
|
}
|
|
|
|
func (r *request) SetFiles(f files.File) {
|
|
r.files = f
|
|
}
|
|
|
|
func (r *request) Context() *Context {
|
|
return &r.ctx
|
|
}
|
|
|
|
func (r *request) SetContext(ctx Context) {
|
|
r.ctx = ctx
|
|
}
|
|
|
|
func (r *request) Command() *Command {
|
|
return r.cmd
|
|
}
|
|
|
|
type converter func(string) (interface{}, error)
|
|
|
|
var converters = map[reflect.Kind]converter{
|
|
Bool: func(v string) (interface{}, error) {
|
|
if v == "" {
|
|
return true, nil
|
|
}
|
|
return strconv.ParseBool(v)
|
|
},
|
|
Int: func(v string) (interface{}, error) {
|
|
val, err := strconv.ParseInt(v, 0, 32)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return int(val), err
|
|
},
|
|
Uint: func(v string) (interface{}, error) {
|
|
val, err := strconv.ParseUint(v, 0, 32)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return int(val), err
|
|
},
|
|
Float: func(v string) (interface{}, error) {
|
|
return strconv.ParseFloat(v, 64)
|
|
},
|
|
}
|
|
|
|
func (r *request) Values() map[string]interface{} {
|
|
return r.values
|
|
}
|
|
|
|
func (r *request) Stdin() io.Reader {
|
|
return r.stdin
|
|
}
|
|
|
|
func (r *request) ConvertOptions() error {
|
|
for k, v := range r.options {
|
|
opt, ok := r.optionDefs[k]
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
kind := reflect.TypeOf(v).Kind()
|
|
if kind != opt.Type() {
|
|
if kind == String {
|
|
convert := converters[opt.Type()]
|
|
str, ok := v.(string)
|
|
if !ok {
|
|
return u.ErrCast()
|
|
}
|
|
val, err := convert(str)
|
|
if err != nil {
|
|
value := fmt.Sprintf("value '%v'", v)
|
|
if len(str) == 0 {
|
|
value = "empty value"
|
|
}
|
|
return fmt.Errorf("Could not convert %s to type '%s' (for option '-%s')",
|
|
value, opt.Type().String(), k)
|
|
}
|
|
r.options[k] = val
|
|
|
|
} else {
|
|
return fmt.Errorf("Option '%s' should be type '%s', but got type '%s'",
|
|
k, opt.Type().String(), kind.String())
|
|
}
|
|
} else {
|
|
r.options[k] = v
|
|
}
|
|
|
|
for _, name := range opt.Names() {
|
|
if _, ok := r.options[name]; name != k && ok {
|
|
return fmt.Errorf("Duplicate command options were provided ('%s' and '%s')",
|
|
k, name)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NewEmptyRequest initializes an empty request
|
|
func NewEmptyRequest() (Request, error) {
|
|
return NewRequest(nil, nil, nil, nil, nil, nil)
|
|
}
|
|
|
|
// NewRequest returns a request initialized with given arguments
|
|
// An non-nil error will be returned if the provided option values are invalid
|
|
func NewRequest(path []string, opts optMap, args []string, file files.File, cmd *Command, optDefs map[string]Option) (Request, error) {
|
|
if path == nil {
|
|
path = make([]string, 0)
|
|
}
|
|
if opts == nil {
|
|
opts = make(map[string]interface{})
|
|
}
|
|
if args == nil {
|
|
args = make([]string, 0)
|
|
}
|
|
if optDefs == nil {
|
|
optDefs = make(map[string]Option)
|
|
}
|
|
|
|
ctx := Context{Context: context.TODO()}
|
|
values := make(map[string]interface{})
|
|
req := &request{path, opts, args, file, cmd, ctx, optDefs, values, os.Stdin}
|
|
err := req.ConvertOptions()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return req, nil
|
|
}
|