feat(parser): add plugin-based parser strategies with ruamel-yaml support#1
Merged
feat(parser): add plugin-based parser strategies with ruamel-yaml support#1
Conversation
1a6ea86 to
c8744ae
Compare
char0n
approved these changes
Sep 17, 2025
…port Add comprehensive plugin architecture for OpenAPI parsing with multiple strategy support: - Add BaseParserStrategy interface for extensible parsing strategies - Implement DefaultOpenAPIParser, RuamelOpenAPIParser, and RuamelRoundTripOpenAPIParser strategies - Add plugin discovery system using importlib.metadata entry points - Support multiple parser strategies with last-successful-wins semantics - Add ruamel-yaml dependency for enhanced YAML parsing capabilities - Enhance OpenAPIParser with overloaded parse method supporting custom return types - Export load_uri function for external URI loading functionality - Add comprehensive URI resolution with HTTP/HTTPS, file://, and local path support - Implement proper error handling with UriResolutionError for resolution failures The parser now supports strategy-based parsing allowing users to choose between different parsing backends and enabling third-party extensions through the plugin system. This provides better flexibility for handling different YAML/JSON parsing requirements while maintaining backward compatibility. BREAKING CHANGE: OpenAPIParser constructor now accepts strategies parameter, changing the default initialization behavior. The parse method signature has been enhanced with optional return_type and strict parameters.
c8744ae to
8c8ad7a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add comprehensive plugin architecture for OpenAPI parsing with multiple strategy support:
BaseParserStrategyinterface for extensible parsing strategiesDefaultOpenAPIParser,RuamelOpenAPIParser, andRuamelRoundTripOpenAPIParserstrategiesimportlib.metadataentry pointsruamel-yamldependency for enhanced YAML parsing capabilitiesOpenAPIParserwith overloaded parse method supporting custom return typesload_urifunction for external URI loading functionalityThe parser now supports strategy-based parsing allowing users to choose between different parsing backends and enabling third-party extensions through the plugin system. This provides better flexibility for handling different YAML/JSON parsing requirements while maintaining backward compatibility.
BREAKING CHANGE:
OpenAPIParserconstructor now accepts strategies parameter, changing the default initialization behavior. The parse method signature has been enhanced with optional return_type and strict parameters.