-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RSDK-9284 - automate CLI flag parsing #4581
base: main
Are you sure you want to change the base?
Conversation
camelFormattedName = matchAllCap.ReplaceAllString(camelFormattedName, "${1}-${2}") | ||
camelFormattedName = strings.ToLower(camelFormattedName) | ||
|
||
return ctx.Value(camelFormattedName) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like some guardrails might be nice here, but I'm not sure that we can say at compile time what's safe and what's not. Even if an argument is non-optional, I expect there are cases where a nil value is normal and expected.
cli/app.go
Outdated
type foo struct { | ||
FooFoo string | ||
Bar int | ||
} | ||
|
||
func doFoo(foo foo, ctx *cli.Context) error { | ||
fmt.Printf("FooFoo is %s and Bar is %v.", foo.FooFoo, foo.Bar) | ||
return nil | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will get deleted in the final project obviously, but I wanted to show an example of what new development would look like. Also, it highlights how we successfully set a field FooFoo
with a flag of foo-foo
fyi @dgottlieb since we discussed this idea a bit during the scope doc process. |
Note to reviewers: this is currently a POC and definitely not ready for prime time. Before I go ahead and make changes to all existing methods, I wanted to get buy-in from folks on this as an approach. Once we have agreement on the shape of this implementation, I'll do the (verbose, but mechanical) work of changing existing methods which should hopefully be trivial to review despite having an estimated large loc diff.
The nice thing about this approach is it provides safe, easy, typeful access to flag data while requiring minimal change in how developers create actions (they have to define a struct with their flag fields and the
Action
field is now populated slightly differently), but there should be an easily replicable pattern in the code base such that this is not harmful.A notable shortcoming of this approach is that the names of the fields in the struct must match (or fuzzy match, taking account for differences in snake/camel/kebab case) the names of the flag. Since a developer is defining the struct, we don't currently have a way to enforce that things are correct. I do think it would be possible using reflection to have some sort of assert that the flags and the fields of the struct fuzzy match, but I fear this will require some decent refactoring and is more of a "programmatic enforcement" issue rather than a "automate flag parsing" issue and so should be done in a future PR.
One other (minor) restriction: the fields on the struct must be public. The reflection library can't access them if they're private, leading to a runtime error.
One other thing to note: I don't think we can get away with not requiring a
CLI.context
in thestruct
ful methods that we're asking users to now define, as certain existing methods (DownloadModuleAction
, e.g.) use fields on thectx
within the method. This means that if a user wants to access flags the old way, we can't stop them. Again, this might be resolvable but probably should go in a separate ticket.