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

[ClangImporter] Use SwiftImportAsNonGeneric. #6962

Merged
merged 1 commit into from
Apr 3, 2017

Conversation

jrose-apple
Copy link
Contributor

@jrose-apple jrose-apple commented Jan 21, 2017

Add support for the new 'SwiftImportAsNonGeneric' API note (apple/swift-clang#70 in upstream-with-swift), then replace a hardcoded set of class hierarchies to import as non-generic with explicit annotations in Foundation's API notes...and the one subclass of any of these types outside Foundation, ScriptingBridge's SBElementArray.

Swift side of rdar://problem/28455962.
rdar://problem/31226414

@jrose-apple
Copy link
Contributor Author

This is technically a breaking change for any third-party subclasses of the classes listed here; do you think we need to hide it behind an isSwiftVersion3?.

Additionally, allowing someone to use this in the "SwiftVersions" section is probably going to be a problem trying to interoperate across Swift 3 and Swift 4...

Copy link
Member

@DougGregor DougGregor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like us to be clear about whether we have a source-compatibility issue here.

decl = decl->getSuperClass();
}
return false;
return decl->hasAttr<clang::SwiftImportAsNonGenericAttr>();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The existing code explicitly looked up the superclass chain. Does clang:: SwiftImportAsNonGenericAttr actually get inherited by subclasses or are we changing behavior here? I suspect it's the latter (which the SBElementArray addition implies), but that makes this a source-compatibility break for Objective-C APIs that subclass NSMutable<something>.

In Swift 3 compatibility mode, should we follow the superclass chain here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It does not get inherited, which I think is the desired behavior going forward, but yeah, maybe it's a good idea for Swift 3 compatibility mode to walk the superclass chain.

Generic Objective-C classes with this annotation will be imported as
non-generic in Swift. The Swift 3 behavior hardcoded a certain set of
class /hierarchies/ as permanently non-generic, and this is preserved
in Swift 3 mode.

Actually using this API note in a versioned way (as opposed to just
marking the class non-generic in all language versions) will cause
horrible source compatibility problems in the mix-and-match cases,
where Swift 3 code presents a non-generic type that Swift 4 expects to
be generic or vice versa.  Fixes for this will come later; right now
it's more important to add support for the feature at all.

To avoid unwanted changes in Swift 4, this commit also adds API notes
to make any existing classes in the previously-hardcoded set continue
to import as non-generic even in Swift 4. The difference is that
/subclasses/ of these classes may come in as generic. (If we want to
make a change here, that can be a separate commit.)

rdar://problem/31226414 (Swift side of rdar://problem/28455962)
@jrose-apple jrose-apple force-pushed the SwiftImportAsNonGeneric branch from 2af0dc8 to 4eafd45 Compare March 23, 2017 20:47
@jrose-apple
Copy link
Contributor Author

Revised to preserve the entire-hierarchy behavior in Swift 3 mode, and noted in the commit message that there's also a big problem with mix-and-match code that I'll need to deal with down the line. What do you think now, Doug?

@swift-ci Please test

@DougGregor
Copy link
Member

Yeah, I think this is the right approach so we don't break Swift 3 code yet can do something more intentional for Swift 4.

@jrose-apple jrose-apple merged commit 08b6c5f into swiftlang:master Apr 3, 2017
@jrose-apple jrose-apple deleted the SwiftImportAsNonGeneric branch April 3, 2017 22:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants