swiftlang / swift-corelibs-foundation

The Foundation Project, providing core utilities, internationalization, and OS independence
swift.org
Apache License 2.0
5.29k stars 1.13k forks source link

[SR-15378] Memory leaks with Data(contentsOf:) and String.replacingOccurrences(of:with:options:range:) #3193

Open swift-ci opened 3 years ago

swift-ci commented 3 years ago
Previous ID SR-15378
Radar None
Original Reporter Stefan Springer (JIRA User)
Type Bug
Environment Swift 5.5. on macOS 11.6
Additional Detail from JIRA | | | |------------------|-----------------| |Votes | 0 | |Component/s | Compiler, Foundation | |Labels | Bug | |Assignee | None | |Priority | Medium | md5: 75073759b3ea284a15da01390ca1c4b7

Issue Description:

The following examples need to be wrapped inside autoreleasepool / try autoreleasepool in order for the memory to be freed afterwards:

myString.replacingOccurrences(of: "[eo]", with: "l", options: .regularExpression, range: nil)
try Data(contentsOf: URL(fileURLWithPath: "myFile"))

This should not be necessary. And the effect of having memory leaks when not using autoreleasepool may come as a big surprise for beginners, since autoreleasepool is not even mentioned in the Swift book.

Furthermore, using autoreleasepool is not platform independent, and you then need to use something like the following for platform-independent code: https://github.com/apple/swift-docc/blob/38acdaddf610be6b943d82f0d9da628384784a81/Sources/SwiftDocC/Utility/FoundationExtensions/AutoreleasepoolShim.swift.

The issue seems to be a recurring topic, see e.g.:

Also see the discussion on https://forums.swift.org/t/the-role-of-autoreleasepool-in-swift-and-thoughts-about-memory-management-in-swift/52976.

bezig01 commented 2 years ago

Please correct the discussion link to another link (without the dot at the end). https://forums.swift.org/t/the-role-of-autoreleasepool-in-swift-and-thoughts-about-memory-management-in-swift/52976/15