Skip to content
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

Generate a Client method for Dropshot websocket channels #183

Merged
merged 1 commit into from Sep 28, 2022

Conversation

lifning
Copy link
Contributor

@lifning lifning commented Aug 31, 2022

(rel: oxidecomputer/dropshot#403 )
Generated methods return ResponseValue<reqwest::Upgrade, which may be passed to a websocket protocol implementation such as tokio_tungstenite::WebSocketStream::from_raw_stream(rv.into_inner(), ...) for the purpose of implementing against the raw websocket connection, but may later be extended as a generic to allow higher-level channel message definitions. (rel: oxidecomputer/dropshot#429)

Per the changelog, consumers will need to depend on reqwest from git until such time upstream cuts a new crates.io release:

reqwest = {
    git = "https://github.com/seanmonstar/reqwest",
    rev = "6ceb23958c8b6d7f1d8ee093f0ad73184d133d40",
    features = ["json", "stream"]
}

@ahl
Copy link
Collaborator

ahl commented Sep 6, 2022

It would be great to see a release that includes seanmonstar/reqwest#1376 to move forward with this

Copy link
Collaborator

@ahl ahl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

very cool; it's a bummer that we'd need that git dependency, but I guess what can you do. If we do move forward with that, let's pause with merging this PR: I'd like to make a public release first to crates.io

Also it looks like some output needs updating to pass the tests.

progenitor-impl/src/method.rs Outdated Show resolved Hide resolved
Comment on lines 396 to 397
let typ = if dropshot_websocket {
OperationResponseType::Upgrade
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the Content-type meaningless for the response from one of these endpoints?
https://stackoverflow.com/a/39105228/1371209

I assume it will never be application/json (is that true?)

Could we do

let typ = if let Some(mt) = response.content.get("application/json") {
    // ...
} else if !dropshot_websocket {
    OperationResponseType::Raw
} else {
    OperationResponseType::Upgrade
}

My preference (when it doesn't suck!) is to have the typical case first. And can we please update the comment above to cover the new case as well?

Copy link
Contributor Author

@lifning lifning Sep 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

correct re: it not being application/json - the schema emitted from the API generated by dropshot looks like

"/instance/serial": {
    "get": {
        "operationId": "instance_serial",
        "responses": { "default": { "description": "", "content": { "*/*": { "schema": {} } } } },
        "x-dropshot-websocket": {}
    }
}

so */* is what we end up calling it. i think that ends up making the check for is_some in this if-else chain preempt our check for websocket, so i'm inclined to do it in this order:

let typ = if let Some(mt) = response.content.get("application/json") {
    // ...
    OperationResponseType::Type(typ)
} else if dropshot_websocket {
    OperationResponseType::Upgrade
} else if response.content.first().is_some() {
    OperationResponseType::Raw
} else {
    OperationResponseType::None
}

Comment on lines 18 to 20
base64 = "0.13"
rand = "0.8"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think these would need to be added here as well: https://github.com/oxidecomputer/progenitor/blob/main/progenitor-impl/src/lib.rs#L426

Is there a reasonable way to avoid these dependencies? "No" is a fine answer...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i guess the way to avoid it would be re-implementing them ourselves, which feels pretty far out of scope.
(for what it's worth, we're pulling these in to avoid pulling in all of tungstenite)
this (and potential future such cases of adding new deps) would also be less of an issue if we were to move to emitting code that uses crate re-exports from progenitor-client

Comment on lines 890 to 899
OperationResponseType::Upgrade => {
quote! {
Err(Error::ErrorResponse(
ResponseValue::upgrade(response).await?
))
}
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In what situation would we hit this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah! my mistake, we wouldn't, as per below we don't yet describe any error responses in the generated OpenAPI schema.

Comment on lines +154 to +161
"default": {
"description": "",
"content": {
"*/*": {
"schema": {}
}
}
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this case, what would the proper handling of a 4xx or 5xx response be? I realize that this is more germane for the dropshot code, but I'm thinking through how clients (direct or through progenitor) would handle it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

presently Dropshot just returns 400 Bad Request for all errors that can occur in its method for performing the websocket upgrade (and technically could also return a 500 Internal Error if a gamma ray flips the right bit, but that code is ordinarily unreachable), and doesn't explicitly specify any of that in the schema as is evident here.

I think the appropriate thing to do would be to update Dropshot to use more specific/appropriate error codes (e.g. 426 Upgrade Required for version mismatch) and model them accordingly in the generated schema for all websocket channel endpoints, at which point progenitor-client's ResponseValue would have something a little more clear to show for what went wrong.

progenitor/tests/build_propolis.rs Show resolved Hide resolved
@lifning
Copy link
Contributor Author

lifning commented Sep 9, 2022

very cool; it's a bummer that we'd need that git dependency, but I guess what can you do. If we do move forward with that, let's pause with merging this PR: I'd like to make a public release first to crates.io

thinking about it more, would it perhaps make sense for us to just re-export everything the generated code needs from our crate, and have the output import them that way so consumers don't have to garden their dependencies for updates like this in general? (like, git or not)

@ahl
Copy link
Collaborator

ahl commented Sep 9, 2022

thinking about it more, would it perhaps make sense for us to just re-export everything the generated code needs from our crate, and have the output import them that way so consumers don't have to garden their dependencies for updates like this in general? (like, git or not)

I've considered this in the past, but for reqwest in particular I was concerned with consumers who had their own uses outside of the generated client i.e. often uses seems to be broader than a single client. What do you think?

@lifning
Copy link
Contributor Author

lifning commented Sep 13, 2022

thinking about it more, would it perhaps make sense for us to just re-export everything the generated code needs from our crate, and have the output import them that way so consumers don't have to garden their dependencies for updates like this in general? (like, git or not)

I've considered this in the past, but for reqwest in particular I was concerned with consumers who had their own uses outside of the generated client i.e. often uses seems to be broader than a single client. What do you think?

if they're forced to version-match with us either way, i think it's better to model it within the cargo metadata rather than leaking the dependency graph. as it sits it feels more awkward than a re-export, especially when it comes to adding new features like this which are now a breaking change with much larger footprint than they'd have otherwise (making them find out which of our dependencies to version-bump in their Cargo.toml when our macro output stops working due to an update) vs. just having the transitive dependency solved in the golden path where people don't have their own independent dependency declared on reqwest (in addition to the comment above about base64 and rand as well).

essentially it would avoid having to explain (and keep re-explaining any time it changes) what to add to Cargo.toml when the general expectation people have when they think "i want to depend on progenitor-client" is to type progenitor-client = "X.Y.Z".

and re-exporting crates is a pretty common pattern in my personal experience - rocket re-exports tokio, for example, and in projects where i've needed to use parts of tokio directly in conjunction, i'm generally happier to put something like use rocket::tokio; in my code rather than something like tokio = "X.Y.Z" # NOTE: must match the version rocket depends on! in my Cargo.toml (which i've had to do with other crates)

@ahl
Copy link
Collaborator

ahl commented Sep 13, 2022

@lifning ok, let's try it.

@ahl
Copy link
Collaborator

ahl commented Sep 15, 2022

And by "it" I mean re-exporting reqwest.

@lifning lifning force-pushed the dropsock branch 4 times, most recently from eeaa9c8 to d229de5 Compare September 21, 2022 07:23
@lifning
Copy link
Contributor Author

lifning commented Sep 21, 2022

updated without re-exports thanks to the newly-tagged reqwest release! https://github.com/seanmonstar/reqwest/releases/tag/v0.11.12

progenitor-impl/src/lib.rs Outdated Show resolved Hide resolved
Copy link

@luqmana luqmana left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One small nit re: the unused import but otherwise LGTM. Thanks for driving this forward lif!

I think it'd be worth figuring out a different approach than requiring every consumer to manually add the needed dependencies but I think that's outside the scope of this PR.

Generated methods return `ResponseValue<reqwest::Upgrade`, which may be
passed to a websocket protocol implementation such as
`tokio_tungstenite::WebSocketStream::from_raw_stream(rv.into_inner(), ...)`
for the purpose of implementing against the raw websocket connection, but
may later be extended as a generic to allow higher-level channel message
definitions.

Per the changelog, consumers will need to depend on reqwest 0.11.12 or
newer for HTTP Upgrade support, as well as base64 and rand if any
endpoints are websocket channels:
```
[dependencies]
reqwest = { version = "0.11.12" features = ["json", "stream"] }
base64 = "0.13"
rand = "0.8"
```
@lifning lifning merged commit 4e2dcc5 into oxidecomputer:main Sep 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants