-
Notifications
You must be signed in to change notification settings - Fork 251
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
Use Load/LoadAsync pattern to load OpenApi documents #1446
Conversation
/// <param name="diagnostic"></param> | ||
/// <param name="settings"></param> | ||
/// <returns></returns> | ||
public static OpenApiDocument Load(Stream stream, out OpenApiDiagnostic diagnostic, OpenApiReaderSettings settings = null) |
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.
These should be extension methods so that they appear on the OpenApiDocument class.
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.
we don't have an instance of OpenAPIDocument yet, and as far as I know static extension methods are not a thing. Maybe the design needs to be reviewed here?
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.
These should be extension methods so that they appear on the OpenApiDocument class.
So the format should ideally look like this:
var doc = new OpenApiDocument().Load(stream)
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.
in which case we wouldn't be returning the document from the method? Works for me but I'm not sure the internals of OpenAPIDocument are accessible in an extension method outside of the assembly.
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 would create an odd pattern of
var document = new OpenApiDocument();
document.Load();
Where document would now be null.
Perhaps marking OpenApiDocument as partial could do the trick as well (adding the static load methods in the reader lib)
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.
in which case we wouldn't be returning the document from the method? Works for me but I'm not sure the internals of OpenAPIDocument are accessible in an extension method outside of the assembly.
We can return a document in order to avoid null references when we return a void as @VisualBean has indicated here.
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 pattern is strange though. Why define those methods as extension methods if we're returning a new instance? How is the consumer supposed to know which instance to hold on to?
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.
Yeah you're right, that's a fair point. This then brings us back to how do we ensure the value of the original object is modified using the extension methods?
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.
Perhaps simply making static methods on the readers will provide an adequate solution without resorting to new classes people will have to use.
The main issue (compared to XmlDocument) is that reading is separate from the models. And extension methods on non-instances aren't a thing (yet).
The main problem Darrel seems to reference is that the readers aren't really 'readers', they simply parse the entirety of a string/stream/whatever and make a document (or fragment), so newing them seems wrong, as they don't keep state (other than options).
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.
the easiest compromise for now is probably to rename the static class to OpenAPIDocumentFactory (or something like that), and revert back to "regular" static method (not extension methods).
But I'd like to get @darrelmiller confirmation since I don't have all the context here for that work.
SonarCloud Quality Gate failed.
|
Goals
Constraints
ProposalIn the core library we create a static factory for loading/parsing any OpenAPI model object. T OpenApiModelFactory.LoadAsync(url) We can add simple static helper methods to the OpenAPIDocument class to avoid the "discovery problem". We need to be able to add support for other formats in the factory: OpenApiModelFactory.RegisterReader(IOpenApiReader) <- Making this up. Look at how Kiota does it. OpenApiJsonReader : IOpenApiReader <- Lives in the core library OpenApiModelFactory.RegisterReader(new OpenApiJsonReader) <= Do this by default in a static ctor. // User chooses to enable YAML parsing by adding reference to Microsoft.OpenApiReaders |
Is this representative of things now or a desired change? Why would we play favorite child with a specific format?
Assuming the factory lives in readers, and the LoadAsync method in core, this is not going to be possible due to circular references
Didn't we say we'd enable auto-registration through static constructors? (I've never done that in the past, I'm not sure this is possible) |
Superseded by #1553 |
Fixes #1434