Coder Social home page Coder Social logo

Comments (2)

dearchap avatar dearchap commented on June 6, 2024

@rhugga Your sample code looks ok. I believe it should work. We've done some optimizations in urfave/cli since 2 years however all unit tests before those changes still pass. My guess is its the way the App.Run is called. Can you provide a complete sample with App initialization and when App.Run() is called ?

from cli.

dearchap avatar dearchap commented on June 6, 2024

@rhugga The following code based on your sample works as intended

package main

import (
	"context"
	"fmt"
	"os"

	"github.com/urfave/cli/v2"
)

// Options encapsulates run time options coming from the cli and env
type Options struct {
	Host string
}

// Load is a cli before func used to inject cli options into the app context
func (o *Options) Load(app *cli.Context) error {
	o.Host = app.String("host")
	return nil
}

func Cmd(ctx context.Context) *cli.Command {
	return &cli.Command{
		Name: "mycommand",
		Subcommands: []*cli.Command{
			MyCmd(ctx),
		},
	}
}

func MyCmd(ctx context.Context) *cli.Command {
	// here I instantiate my options struct
	options := &Options{}
	return &cli.Command{
		Name:   "foo",
		Before: options.Load,              // cli beforeFunc that loads cli options into my struct
		Action: MyCmdAction(ctx, options), // pass options to action function
	}
}

func MyCmdAction(ctx context.Context, o *Options) func(app *cli.Context) error {
	return func(app *cli.Context) error {
		fmt.Printf("OPTIONS=%+v\n", o) // nil here
		return nil
	}
}

func main() {
	a := &cli.App{
		Commands: []*cli.Command{
			Cmd(context.TODO()),
		},
		Flags: []cli.Flag{
			&cli.StringFlag{
				Name: "host",
			},
		},
	}

	a.Run(os.Args)
}
$ go run main.go --host hello mycommand foo 
OPTIONS=&{Host:hello}

I moved the flags to within the subcommand and that worked as well

$ go run main.go mycommand foo --host hello
OPTIONS=&{Host:hello}

So when you say it doesnt work is it possible you didnt specify the host flag on cmdline or maybe it was defined to pickup from the env ?

from cli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.