Skip to content

Commit 3bbd95e

Browse files
authored
[native_assets_cli] [doc] Document multiple invocation behavior (#1891)
Document the behavior of multiple invocations of hooks. Closes: #1739 We could keep `buildAssetTypes` as a list of strings for now. We might want to make link hooks work with multiple asset types later as a non-breaking change. Both Dart and Flutter only pass `[CodeAsset.type]`, so they are already satisfying that every asset type has its own invocation.
1 parent a6bb0f1 commit 3bbd95e

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

pkgs/native_assets_cli/lib/src/code_assets/config.dart

+9
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ class CodeConfig {
4141
final Architecture? _targetArchitecture;
4242

4343
final LinkModePreference linkModePreference;
44+
45+
/// A compiler toolchain able to target [targetOS] with [targetArchitecture].
4446
final CCompilerConfig? cCompiler;
4547

4648
/// The operating system being compiled for.
@@ -106,6 +108,13 @@ class CodeConfig {
106108
);
107109
}
108110

111+
/// The architecture the code code asset should be built for.
112+
///
113+
/// The build and link hooks are invoked once per [targetArchitecture]. If the
114+
/// invoker produces multi-architecture applications, the invoker is
115+
/// responsible for combining the [CodeAsset]s for individual architectures
116+
/// into a universal binary. So, the build and link hook implementations are
117+
/// not responsible for providing universal binaries.
109118
Architecture get targetArchitecture {
110119
// TODO: Remove once Dart 3.7 stable is out and we bump the minimum SDK to
111120
// 3.7.

pkgs/native_assets_cli/lib/src/config.dart

+16-1
Original file line numberDiff line numberDiff line change
@@ -611,10 +611,25 @@ final latestVersion = Version(1, 8, 0);
611611
/// catches issues with 2.)
612612
final latestParsableVersion = Version(1, 5, 0);
613613

614+
/// The configuration for a build or link hook invocation.
614615
final class HookConfig {
615616
final Map<String, Object?> json;
616617

617-
/// The asset types that the invoker of this hook supports.
618+
/// The asset types that should be built by an invocation of a hook.
619+
///
620+
/// The invoker of a hook may, and in most cases will, invoke the hook
621+
/// separately for different asset types.
622+
///
623+
/// This means that hooks should be written in a way that they are a no-op if
624+
/// they are invoked for an asset type that is not emitted by the hook. Most
625+
/// asset extensions provide a to check [buildAssetTypes] for their own asset
626+
/// type. For example, `CodeAsset`s can be used as follows:
627+
///
628+
/// ```dart
629+
/// if (input.config.buildCodeAssets) {
630+
/// // Emit code asset.
631+
/// }
632+
/// ```
618633
final List<String> buildAssetTypes;
619634

620635
HookConfig(this.json)

0 commit comments

Comments
 (0)