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

[native_assets_cli] Generate syntax from schemas #2071

Merged
merged 4 commits into from
Mar 10, 2025
Merged

Conversation

dcharkes
Copy link
Collaborator

@dcharkes dcharkes commented Mar 5, 2025

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 and fromJson 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 and fromJson. This means we have two layers now instead of one.

The mapping between semantic API and syntax is as follows:

  • For classes in the semantic API that occur both in the input and output (and have an equals and hashCode override), accessing the semantic API constructs semantic objects with their read-out fields.
  • For the classes in the semantic API that only occur on one side the readers are simply views on the syntax objects that forward the getters (and implement fallback behavior).
  • For the classes in the semantic API that occur only on one side, the writers simply contain a syntax node and forward the writes (and implement fallback behavior).

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.

@github-actions github-actions bot added type-infra A repository infrastructure change or enhancement package:native_assets_cli labels Mar 5, 2025
Copy link

github-actions bot commented Mar 5, 2025

PR Health

Breaking changes ✔️
Package Change Current Version New Version Needed Version Looking good?
Changelog Entry ✔️
Package Changed Files

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.

Package Leaked API symbols
License Headers ✔️
// Copyright (c) 2025, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
Files
no missing headers

All source files should start with a license header.

Unrelated files missing license headers
Files
pkgs/jni/lib/src/third_party/generated_bindings.dart
pkgs/objective_c/lib/src/ns_input_stream.dart

@dcharkes dcharkes marked this pull request as ready for review March 5, 2025 11:42
final extensionSchemas = schemas.extensionSchemas;
final baseSchemas = schemas.baseSchemas;
final baseName = baseSchemas.className;
if (baseName != typeName) {
Copy link
Member

@HosseinYousefi HosseinYousefi Mar 6, 2025

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!)

Copy link
Member

@HosseinYousefi HosseinYousefi left a 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

Base automatically changed from json-schema to main March 10, 2025 14:58
@dcharkes dcharkes merged commit b5727b5 into main Mar 10, 2025
38 checks passed
@dcharkes dcharkes deleted the generate-syntax branch March 10, 2025 15:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
package:native_assets_cli type-infra A repository infrastructure change or enhancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants