-
Notifications
You must be signed in to change notification settings - Fork 66
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
[native_assets_cli] Generate syntax from schemas #2071
Conversation
PR HealthBreaking changes ✔️
Changelog Entry ✔️
Changes to files need to be accounted for in their respective changelogs. API leaks ✔️The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.
License Headers ✔️
All source files should start with a license header. Unrelated files missing license headers
|
final extensionSchemas = schemas.extensionSchemas; | ||
final baseSchemas = schemas.baseSchemas; | ||
final baseName = baseSchemas.className; | ||
if (baseName != typeName) { |
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 general for all the throw UnimplementedError()
s, add a description on what these conditions are and why they are not implemented for the untrained eye (like mine!)
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.
LGTM with small nits
cd7c398
to
f86bd8a
Compare
Bug:
This PR generates a Dart syntax from the JSON schemas for hooks and the extensions.
Moreover, it uses the generated syntax in in
package:native_assets_cli
to replace the manually written JSON serialization and deserialization.This PR is meant to be behavior preserving for the current implementation. Any issues with the existing implementation are carried forward, and will be addressed later.
(It is a non-goal of this PR to change the current state.)
Design with Syntax and Semantic API
Before this PR, the semantic API immediately had a
toJson
andfromJson
that took care of any migrations in progress from old to new syntax.After this PR, the semantic API produces and consumes syntax object (and takes care of migrations in progress), and the syntax does
toJson
andfromJson
. This means we have two layers now instead of one.The mapping between semantic API and syntax is as follows:
equals
andhashCode
override), accessing the semantic API constructs semantic objects with their read-out fields.One interesting case is the
EncodedAsset
because it intentionally "leaks" the underlying JSON encoding into the semantic API as an extension point.(The extension point for configs doesn't have the same "leakage", because it's never passed from input to output, so there is no need to extra all data including keys one doesn't know about.)
Testing
This implementation passes all the existing test suites.
Open issues
This PR does not use the schemas yet for syntax checking. Unfortunately
package:json_schema
does not produce useful error messages. Moreover, introducing a concept of syntax errors next to semantic errors is a larger refactoring.