-
Notifications
You must be signed in to change notification settings - Fork 128
Merging oneOf with many compatible enums of a single value #567
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
Comments
The generator doesn't have any special logic for the enum-of-one-case pattern and, for enums, it generates number-based symbol names. In an ideal world, what would you like the code to look like? If this is a common pattern we can consider proposals for generating but it needs to be generalisable. |
What does this give you over just this?
|
Ideally I'd be able to use the enum directly, e.g.
I should of provided more context, this has many "InstanceState": {
"description": "Running state of an Instance (primarily: booted or stopped)\n\nThis typically reflects whether it's starting, running, stopping, or stopped, but also includes states related to the Instance's lifecycle",
"oneOf": [
{
"description": "The instance is being created.",
"type": "string",
"enum": [
"creating"
]
},
{
"description": "The instance is currently starting up.",
"type": "string",
"enum": [
"starting"
]
},
{
"description": "The instance is currently running.",
"type": "string",
"enum": [
"running"
]
},
{
"description": "The instance has been requested to stop and a transition to \"Stopped\" is imminent.",
"type": "string",
"enum": [
"stopping"
]
},
{
"description": "The instance is currently stopped.",
"type": "string",
"enum": [
"stopped"
]
},
{
"description": "The instance is in the process of rebooting - it will remain in the \"rebooting\" state until the VM is starting once more.",
"type": "string",
"enum": [
"rebooting"
]
},
{
"description": "The instance is in the process of migrating - it will remain in the \"migrating\" state until the migration process is complete and the destination propolis is ready to continue execution.",
"type": "string",
"enum": [
"migrating"
]
},
{
"description": "The instance is attempting to recover from a failure.",
"type": "string",
"enum": [
"repairing"
]
},
{
"description": "The instance has encountered a failure.",
"type": "string",
"enum": [
"failed"
]
},
{
"description": "The instance has been deleted.",
"type": "string",
"enum": [
"destroyed"
]
}
]
}, |
Why are they split this way? You can spell the same with a single string enum that contains all those cases. Is it a workaround to add the descriptions? |
That's right: a simple |
Yeah that's unfortunate, one way you can work around it is to add the description to the enum itself, and document each case there. That'll make the code much easier to work with. But otherwise there's not much we can do, the oneOf is there, so the generator emits code for it. |
OOI, is this pattern of oneOf-of-enums-all-with-just-one-case entirely isomorphic to an enum when it comes to the HTTP representation? I'm asking because we're not likely to change how oneOfs are generated, you could consider preprocessing the document here. |
If I understand correctly, it sounds like the philosophy of this SDK generator is for simple and predictable transformations from, say, a |
Exactly, we even call out the tradeoffs in more detail here: https://swiftpackageindex.com/apple/swift-openapi-generator/1.2.1/documentation/swift-openapi-generator/project-scope-and-goals Thanks for understanding 🙂 |
Nonetheless, thanks for considering. 👍🏻 |
Question
I'm no expert in Swift nor OpenAPI, so forgive any sizeable gaps in my understanding.
I'm working with a schema that has a group of
oneOf
enums. It's structured like that to allow annotations directly on the enum (OAI/OpenAPI-Specification#348 (comment)).Unfortunately the current implementation of
swift-openapi-generator
generates somewhat verbose and less intuitive usage types for these.Input:
Output:
Which means I end up needing to write something like:
run_state: .case1(.created)
orrun_state: .case9(.failed)
.Is this something that the generator can handle? Or should I be using it differently?
The text was updated successfully, but these errors were encountered: