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

Replace custom path type with URL in plugin API #7184

Merged
merged 1 commit into from
Dec 15, 2023

Conversation

neonichu
Copy link
Contributor

Plugins introduced their own custom path type which doesn't have Windows support, causing several issues with plugins on Windows. We should rectify this situation by using Foundation's URL type instead which already works fine on Windows.

rdar://117230149

@neonichu neonichu self-assigned this Dec 11, 2023
@neonichu
Copy link
Contributor Author

@swift-ci please test

@neonichu
Copy link
Contributor Author

Two things to point out:

  • this introduces a bunch of deprecation warnings for the code in PackagePlugin itself since we still need to create paths for backwards compatibility. I am not sure how to avoid these
  • since URL is now part of the public interface of PackagePlugin, we can no longer use implementation-only imports for Foundation

@neonichu
Copy link
Contributor Author

I will look into adding a few new test cases which exercise the new APIs instead of the old ones.

@neonichu
Copy link
Contributor Author

I'm actually a bit surprised that the test suite passes, I seem to be able to see problems with rather trivial manual testing...

@neonichu
Copy link
Contributor Author

/Users/neonacho/Projects/public/swift-package-manager/Fixtures/Miscellaneous/Plugins/MySourceGenPlugin/.build/plugins/cache/MySourceGenPrebuildPlugin

Ah fun, turns out if you ever build using bootstrap, that plugin library will be preferred for running plugins, so what happened was that my SwiftPM was using URLs but the plugin was using an old library which just led to kinda broken paths on the plugin side.

@neonichu neonichu force-pushed the use-urls-for-plugin-api branch from 0f0d56c to ffdb487 Compare December 12, 2023 19:55
@neonichu
Copy link
Contributor Author

Added a test now which exercises both build tool and prebuild APIs using URLs. This required bumping our version to 5.11 so that the new APIs can be used in the example.

I think two tasks remain for this PR:

  • change the deprecation of Path such that we can avoid deprecations in our own code (or at least minimize them)
  • introduce some kind of versioning for the plugin API library to avoid the same confusion I had with mixing and matching incompatible versions. This should mostly impact development, but it's still worthwhile to handle

@neonichu neonichu force-pushed the use-urls-for-plugin-api branch from ffdb487 to 0783c4c Compare December 12, 2023 23:03

struct CommandConfiguration: Codable {
var version = 2
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Used this as a simple way to "version" the library. This allows us to detect cases where an old plugin library is being used with a newer SwiftPM which would otherwise silently exhibit broken behavior.

@neonichu
Copy link
Contributor Author

I think this should be ready now. There are still a handful of deprecation warnings that I am not certain how to resolve.

@neonichu
Copy link
Contributor Author

@swift-ci please test

@neonichu
Copy link
Contributor Author

@swift-ci please test package compatibility

@neonichu
Copy link
Contributor Author

@swift-ci please test windows

@neonichu
Copy link
Contributor Author

Hm, looks like on Linux, we don't see the "Applying" messages for plugins?

@neonichu
Copy link
Contributor Author

duplicate symbol '_async_MainTu' in:
    /Users/ec2-user/jenkins/workspace/swift-package-manager-with-xcode-self-hosted-PR-osx/branch-main/swiftpm/.build/x86_64-apple-macosx/debug/swift_package.build/Entrypoint.swift.o
    /Users/ec2-user/jenkins/workspace/swift-package-manager-with-xcode-self-hosted-PR-osx/branch-main/swiftpm/.build/x86_64-apple-macosx/debug/swift_test.build/Entrypoint.swift.o
duplicate symbol '_async_Main' in:
    /Users/ec2-user/jenkins/workspace/swift-package-manager-with-xcode-self-hosted-PR-osx/branch-main/swiftpm/.build/x86_64-apple-macosx/debug/swift_package.build/Entrypoint.swift.o
    /Users/ec2-user/jenkins/workspace/swift-package-manager-with-xcode-self-hosted-PR-osx/branch-main/swiftpm/.build/x86_64-apple-macosx/debug/swift_test.build/Entrypoint.swift.o
ld: 2 duplicate symbols for architecture x86_64
[174/175] Linking SwiftPMPackageTests
error: fatalError

Yah, I'm seeing this locally, too. It seems like we have accidentally created a dependency on 5.10 compilers here which hide the async main symbol.

@MaxDesiatov
Copy link
Contributor

I'm puzzled why this error didn't surface previously on CI when testing PRs that introduced this async entrypoint in the first place. Are reverts to those entrypoints the only available fix?

@MaxDesiatov
Copy link
Contributor

AFAIU the error wasn't independently reproducible with any of the async entrypoint PRs tested separately, and that's how they were merged, almost simultaneously. The combination of them leads to this error though. I'm applying the least disruptive revert of two possible in #7196.

@MaxDesiatov
Copy link
Contributor

@swift-ci test

@grynspan
Copy link
Contributor

Will this break plugins? How can a plugin detect when it should use URL instead of the old API?

@MaxDesiatov
Copy link
Contributor

MaxDesiatov commented Dec 13, 2023

The API is additive, thus not expected to break anything. IIUC, plugins using new swift-tools-version should use the new API, while old ones should still continue to work.

@grynspan
Copy link
Contributor

Thanks!

@neonichu
Copy link
Contributor Author

neonichu commented Dec 13, 2023

Yep, plugins declared in packages with tools-version 5.10 and earlier will work exactly as before. When upgrading a package to 5.11, there'll be deprecation warnings for Path based APIs to encourage using the URL ones, but they'll still work. We may declare the old APIs as unavailable at some point in the future to force migration to the new APIs, but even then, existing plugins will continue to work.

@neonichu
Copy link
Contributor Author

neonichu commented Dec 13, 2023

Ah, the "Applying" message doesn't show on Linux, because it is from "Applying debug entitlements to \(buildProduct.binaryPath.prettyPath())", it isn't about applying the plugin. Code-signing only happens on macOS, of course. I thought otherwise because Xcode does have a "Apply build tool plug-in" message.

@neonichu
Copy link
Contributor Author

Was able to resolve the last few deprecation warnings with @tomerd's help -- there was even a small bug hiding in there with an optional property not being set in the URL case.

Plugins introduced their own custom path type which doesn't have Windows support, causing several issues with plugins on Windows. We should rectify this situation by using Foundation's URL type instead which already works fine on Windows.

rdar://117230149
@neonichu neonichu force-pushed the use-urls-for-plugin-api branch from 0783c4c to 7185d6d Compare December 13, 2023 20:38
@neonichu
Copy link
Contributor Author

@swift-ci please test

@neonichu
Copy link
Contributor Author

@swift-ci please test package compatibility

@neonichu
Copy link
Contributor Author

@swift-ci please test windows

3 similar comments
@neonichu
Copy link
Contributor Author

@swift-ci please test windows

@neonichu
Copy link
Contributor Author

@swift-ci please test windows

@neonichu
Copy link
Contributor Author

@swift-ci please test windows

@MaxDesiatov
Copy link
Contributor

@swift-ci test windows

1 similar comment
@neonichu
Copy link
Contributor Author

@swift-ci test windows

@neonichu
Copy link
Contributor Author

Seeing the same test failure on Windows multiple time in a row now, so probably real:

Failed Tests (1):
  Swift(windows-x86_64) :: diagnostics/educational_notes_serialization.swift

cc @compnerd

@compnerd
Copy link
Member

compnerd commented Dec 14, 2023

It seems to be passing on the swift repository 🤔 CC: @xedin who added this test

swiftlang/swift#70391 is the original introduction

@compnerd
Copy link
Member

Seems to be failing on macOS: https://ci.swift.org/job/apple-llvm-project-pr-macos/4371/console

@neonichu
Copy link
Contributor Author

Sounds like swiftlang/swift#70470 is supposed to fix it.

@neonichu
Copy link
Contributor Author

@swift-ci test windows

@neonichu neonichu merged commit b86d1d4 into main Dec 15, 2023
@neonichu neonichu deleted the use-urls-for-plugin-api branch December 15, 2023 00:34
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.

4 participants