Go's getopt problem
The Go standard library is full of good stuff, people will commonly tell you (or tell the world when they write about Go). And then they will add a little qualifier: except for the flag package; you don't want to use that and you should get a sane getopt package. Sometimes the people writing this will name one or two such packages, which usually still leaves you with a problem.
(I saw such a Go-related slide recently that recommended something like 'getopt' or 'go-flags'. Do you know how many people have had the clever idea to write a Go command line argument parser that they call 'getopt'? The answer is 'more than one'. The Go wiki alone lists two, one of which links to four more. I have no idea which specific 'getopt' package the author of the slides thought was the one to use.)
The flags package is perhaps the most frustrating thing about Go for me. Uniquely out of the standard library it is clearly insufficient to fill a common need at even a basic level, yet faced with this common need the Go authors not so much punt as ignore you. If you want standard Unix command line parsing in your Go project (even a very small and otherwise self-contained one), your very first job is to try to sort through a great many options to pick a decent one. In the process you will add an external dependency and as we all know external dependencies are a great way to blow up your little project. All it takes is picking a getopt package that the author decides either not to support any more or to change the API on and whoops, fun times.
(Having your first external dependency also vastly complicates the build
instructions for a little Go program. If you have a self-contained
little program you can tell your coworkers to run 'go build <foo>.go
'
or 'gccgo -o <foo> <foo>.go
'. Add even one external dependency and
suddenly they need $GOPATH
and everything that that implies.)
This is asinine. When the common advice is 'replace this standard library package', your standard library is flawed and you should fix this. The Go developers should pick or write one getopt package and put it in the standard library (and keep the flag package for backwards compatibility and for anyone who really needs it).
I don't expect this to happen, of course. If it was going to happen it would have happened already; it's not like this is a new problem.
(After all there's been enough time and demand for all sorts of people to write all sorts of argument parsing packages. Which is part of the problem.)
PS: yes, this is a grumpy rant. I do them sometimes.
(It is a close variant of why I want things to be in the Python standard library, especially for small projects.)
Comments on this page:
|
|