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

[ffigen] Support transitive categories of built-in types #1930

Merged
merged 9 commits into from
Jan 24, 2025
Merged

Conversation

liamappelbe
Copy link
Contributor

@liamappelbe liamappelbe commented Jan 23, 2025

The core of the fix was simple: in FindDirectTransitiveDepsVisitation, I had to add a special case for the categories of interfaces defined in package:objective_c. But this caused a bunch of problems, so most of the PR is fixing the downstream effects of this change.

  • In ListBindingsVisitation, I had to union all the directTransitives into the transitives to fix a bug where these new categories were missing all their SELs, msgSends, and class objects.
  • In the visitors, I had to make a distinction between directlyIncluded (stuff that's explicitly mentioned in the config), and indirectlyIncluded (like super types, which we want to fully codegen even when they're not explicitly mentioned in the config). This fixes a bug where all of NSObject's categories were being generated even though the user didn't ask for them.
  • Had to start tracking which categories were in package:objective_c (ObjCBuiltInFunctions.builtInCategories), so we don't codegen them in user bindings

Fixes #1820

Copy link

github-actions bot commented Jan 23, 2025

PR Health

Breaking changes ✔️
Package Change Current Version New Version Needed Version Looking good?
objective_c Breaking 4.1.0 5.0.0-wip 5.0.0 ✔️
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

@coveralls
Copy link

coveralls commented Jan 23, 2025

Coverage Status

coverage: 90.511% (+1.9%) from 88.604%
when pulling f776f75 on transcat
into ca5f3d2 on main.

@liamappelbe liamappelbe changed the title WIP: [ffigen] Support transitive categories of built-in types [ffigen] Support transitive categories of built-in types Jan 23, 2025
@liamappelbe liamappelbe marked this pull request as ready for review January 23, 2025 02:30
@liamappelbe liamappelbe merged commit cb09254 into main Jan 24, 2025
29 of 34 checks passed
@liamappelbe liamappelbe deleted the transcat branch January 24, 2025 02:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

include-transitive-objc-categories not working for NSURL categories
3 participants