Giter VIP home page Giter VIP logo

Comments (3)

ericonr avatar ericonr commented on August 14, 2024

What exactly would the difference be between "invalid option" and "error in flags", if any?

Does verify return anything? We could have a flag for it to exit with an error if it finds any issues.

For sign, we could have a return value if the file doesn't exist.

Also in general, do you think the return value for error in configuration value could also be used for database errors, if they happen?

from sbctl.

ericonr avatar ericonr commented on August 14, 2024

I don't love this impl, and perhaps it makes more sense to do this with custom error types + logging, but something like

var (
	NoError          = 0
	NoRootError      = 1
	ConfError        = 2
	OptionError      = 3
	FlagError        = 4
	SignError        = 5
	BundleError      = 6
	MissingKeysError = 10
)

func ExitWithCode(e string, n int) {
	err.Print(e)
	os.Exit(n)
}

and then

func removeFileCmd() *cobra.Command {
	return &cobra.Command{
		Use:   "remove-file",
		Short: "Remove file from database",
		Run: func(cmd *cobra.Command, args []string) {
			if len(args) < 1 {
				sbctl.ExitWithCode("Need to specify file", sbctl.OptionError)
			}
			files := sbctl.ReadFileDatabase(sbctl.DBPath)
			delete(files, args[0])
			sbctl.WriteFileDatabase(sbctl.DBPath, files)
		},
	}
}

seems to work.

from sbctl.

igo95862 avatar igo95862 commented on August 14, 2024

I think it should be error based using errors.Unwrap(). Each error should map to an exit code with 1 being some unknown error.

Function will either need to changed to return errors or panic-defer-recover can be used.

from sbctl.

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.