Skip to content

Commit a515f3e

Browse files
committed
Merge remote-tracking branch 'compnerd/bionic'
2 parents 2e0ab92 + 40b15f2 commit a515f3e

21 files changed

+83
-48
lines changed

CMakeLists.txt

+6-10
Original file line numberDiff line numberDiff line change
@@ -70,20 +70,16 @@ include(XCTest)
7070

7171
set(CF_DEPLOYMENT_SWIFT YES CACHE BOOL "Build for Swift" FORCE)
7272

73-
set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
74-
set(THREADS_PREFER_PTHREAD_FLAG OFF)
7573
if(HAS_LIBDISPATCH_API)
74+
set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
75+
set(THREADS_PREFER_PTHREAD_FLAG OFF)
76+
if(ANDROID)
77+
set(CMAKE_THREAD_LIBS_INIT "-lc")
78+
set(THREADS_HAVE_PTHREAD_ARG FALSE)
79+
endif()
7680
find_package(Threads REQUIRED)
7781
endif()
7882

79-
# CMake's Threads adds '-pthread' flag to the interface link
80-
# libraries, which isn't supported by Swift. This is not enabled
81-
# when building with MSVC, but it trips up the Android build, so
82-
# we need to clear out the threads INTERFACE_LINK_LIBRARIES.
83-
if (CMAKE_SYSTEM_NAME STREQUAL "Android")
84-
set_property(TARGET Threads::Threads PROPERTY INTERFACE_LINK_LIBRARIES "")
85-
endif()
86-
8783
set(SAVED_BUILD_SHARED_LIBS ${BUILD_SHARED_LIBS})
8884
set(BUILD_SHARED_LIBS NO)
8985
add_subdirectory(CoreFoundation EXCLUDE_FROM_ALL)

CoreFoundation/Base.subproj/ForSwiftFoundationOnly.h

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
#include <sys/stat.h>
6565
#include <sys/syscall.h>
6666
#include <termios.h>
67+
#include <linux/stat.h>
6768
#elif TARGET_OS_WASI
6869
#include <fcntl.h>
6970
#include <sys/stat.h>

CoreFoundation/Base.subproj/module.modulemap

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
framework module CoreFoundation [extern_c] [system] {
22
umbrella header "CoreFoundation.h"
33
explicit module CFPlugInCOM { header "CFPlugInCOM.h" }
4+
explicit module ForSwiftFoundationOnly {
5+
header "ForSwiftFoundationOnly.h"
6+
// Do not re-export imported Clang modules to avoid pulling in
7+
// system headers like linux/stat.h whose constants might conflict
8+
// with constants from the platform module.
9+
}
410

511
export *
612
module * {

Sources/Foundation/CGFloat.swift

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
88
//
99

10+
#if canImport(Android)
11+
import Android
12+
#endif
13+
1014
@frozen
1115
public struct CGFloat: Sendable {
1216
#if arch(i386) || arch(arm) || arch(wasm32)

Sources/Foundation/Data.swift

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ internal func malloc_good_size(_ size: Int) -> Int {
6464
import Glibc
6565
#elseif canImport(Musl)
6666
import Musl
67+
#elseif canImport(Android)
68+
import Android
6769
#elseif canImport(WASILibc)
6870
import WASILibc
6971
#endif

Sources/Foundation/FileManager+POSIX.swift

+20-10
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
//
88
#if !os(Windows)
99

10+
#if canImport(Android)
11+
import Android
12+
#endif
13+
1014
#if os(Android) && (arch(i386) || arch(arm)) // struct stat.st_mode is UInt32
1115
internal func &(left: UInt32, right: mode_t) -> mode_t {
1216
return mode_t(left) & right
1317
}
14-
#elseif os(Android)
15-
internal func &(left: mode_t, right: Int32) -> mode_t {
16-
return left & mode_t(right)
17-
}
1818
#endif
1919

2020
#if os(WASI)
@@ -413,7 +413,7 @@ extension FileManager {
413413
if !parent.isEmpty && !fileExists(atPath: parent, isDirectory: &isDir) {
414414
try createDirectory(atPath: parent, withIntermediateDirectories: true, attributes: attributes)
415415
}
416-
if mkdir(pathFsRep, mode_t(S_IRWXU) | mode_t(S_IRWXG) | mode_t(S_IRWXO)) != 0 {
416+
if mkdir(pathFsRep, S_IRWXU | S_IRWXG | S_IRWXO) != 0 {
417417
let posixError = errno
418418
if posixError == EEXIST && fileExists(atPath: path, isDirectory: &isDir) && isDir.boolValue {
419419
// Continue; if there is an existing file and it is a directory, that is still a success.
@@ -432,7 +432,7 @@ extension FileManager {
432432
throw _NSErrorWithErrno(EEXIST, reading: false, path: path)
433433
}
434434
} else {
435-
if mkdir(pathFsRep, mode_t(S_IRWXU) | mode_t(S_IRWXG) | mode_t(S_IRWXO)) != 0 {
435+
if mkdir(pathFsRep, S_IRWXU | S_IRWXG | S_IRWXO) != 0 {
436436
throw _NSErrorWithErrno(errno, reading: false, path: path)
437437
} else if let attr = attributes {
438438
try self.setAttributes(attr, ofItemAtPath: path)
@@ -807,8 +807,13 @@ extension FileManager {
807807
let ps = UnsafeMutablePointer<UnsafeMutablePointer<Int8>?>.allocate(capacity: 2)
808808
ps.initialize(to: UnsafeMutablePointer(mutating: fsRep))
809809
ps.advanced(by: 1).initialize(to: nil)
810-
let stream = ps.withMemoryRebound(to: UnsafeMutablePointer<CChar>.self, capacity: 2) {
811-
fts_open($0, FTS_PHYSICAL | FTS_XDEV | FTS_NOCHDIR | FTS_NOSTAT, nil)
810+
let stream = ps.withMemoryRebound(to: UnsafeMutablePointer<CChar>.self, capacity: 2) { rebound_ps in
811+
#if canImport(Android)
812+
let arg = rebound_ps
813+
#else
814+
let arg = ps
815+
#endif
816+
return fts_open(arg, FTS_PHYSICAL | FTS_XDEV | FTS_NOCHDIR | FTS_NOSTAT, nil)
812817
}
813818
ps.deinitialize(count: 2)
814819
ps.deallocate()
@@ -1177,8 +1182,13 @@ extension FileManager {
11771182
defer { ps.deallocate() }
11781183
ps.initialize(to: UnsafeMutablePointer(mutating: fsRep))
11791184
ps.advanced(by: 1).initialize(to: nil)
1180-
return ps.withMemoryRebound(to: UnsafeMutablePointer<CChar>.self, capacity: 2) {
1181-
fts_open($0, FTS_PHYSICAL | FTS_XDEV | FTS_NOCHDIR | FTS_NOSTAT, nil)
1185+
return ps.withMemoryRebound(to: UnsafeMutablePointer<CChar>.self, capacity: 2) { rebound_ps in
1186+
#if canImport(Android)
1187+
let arg = rebound_ps
1188+
#else
1189+
let arg = ps
1190+
#endif
1191+
return fts_open(arg, FTS_PHYSICAL | FTS_XDEV | FTS_NOCHDIR | FTS_NOSTAT, nil)
11821192
}
11831193
}
11841194
if _stream == nil {

Sources/Foundation/FileManager.swift

+7-9
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ import WinSDK
2323

2424
#if os(WASI)
2525
import WASILibc
26-
#endif
27-
28-
#if os(Android)
26+
#elseif canImport(Android)
2927
import Android
3028
#endif
3129

@@ -1346,12 +1344,12 @@ public struct FileAttributeType : RawRepresentable, Equatable, Hashable {
13461344
#else
13471345
internal init(statMode: mode_t) {
13481346
switch statMode & S_IFMT {
1349-
case mode_t(S_IFCHR): self = .typeCharacterSpecial
1350-
case mode_t(S_IFDIR): self = .typeDirectory
1351-
case mode_t(S_IFBLK): self = .typeBlockSpecial
1352-
case mode_t(S_IFREG): self = .typeRegular
1353-
case mode_t(S_IFLNK): self = .typeSymbolicLink
1354-
case mode_t(S_IFSOCK): self = .typeSocket
1347+
case S_IFCHR: self = .typeCharacterSpecial
1348+
case S_IFDIR: self = .typeDirectory
1349+
case S_IFBLK: self = .typeBlockSpecial
1350+
case S_IFREG: self = .typeRegular
1351+
case S_IFLNK: self = .typeSymbolicLink
1352+
case S_IFSOCK: self = .typeSocket
13551353
default: self = .typeUnknown
13561354
}
13571355
}

Sources/Foundation/Host.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
import WinSDK
1313
#endif
1414

15-
#if os(Android)
15+
#if canImport(Android)
1616
import Android
17-
// Android Glibc differs a little with respect to the Linux Glibc.
17+
// Android Bionic differs a little with respect to the Linux Glibc.
1818

1919
// IFF_LOOPBACK is part of the enumeration net_device_flags, which needs to
2020
// convert to UInt32.

Sources/Foundation/NSData.swift

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
#if !os(WASI)
1212
import Dispatch
1313
#endif
14+
#if canImport(Android)
15+
import Android
16+
#endif
1417

1518
extension NSData {
1619
public struct ReadingOptions : OptionSet {

Sources/Foundation/NSPathUtilities.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
@_implementationOnly import CoreFoundation
1111
#if os(Windows)
1212
import WinSDK
13+
#elseif canImport(Android)
14+
import Android
1315
#elseif os(WASI)
1416
import WASILibc
1517
// CoreFoundation brings <errno.h> but it conflicts with WASILibc.errno
@@ -803,7 +805,7 @@ internal func _NSCreateTemporaryFile(_ filePath: String) throws -> (Int32, Strin
803805
}
804806

805807
// Set the file mode to match macOS
806-
guard fchmod(fd, mode_t(S_IRUSR) | mode_t(S_IWUSR) | mode_t(S_IRGRP) | mode_t(S_IWGRP) | mode_t(S_IROTH) | mode_t(S_IWOTH)) != -1 else {
808+
guard fchmod(fd, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) != -1 else {
807809
let _errno = errno
808810
close(fd)
809811
throw _NSErrorWithErrno(_errno, reading: false, path: pathResult)

Sources/Foundation/NSPlatform.swift

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
#if os(macOS) || os(iOS)
1111
fileprivate let _NSPageSize = Int(vm_page_size)
1212
#elseif os(Linux) || os(Android) || os(OpenBSD)
13+
#if canImport(Android)
14+
import Android
15+
#endif
1316
fileprivate let _NSPageSize = Int(getpagesize())
1417
#elseif os(Windows)
1518
import WinSDK

Sources/Foundation/NSSwiftRuntime.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
@_exported import Glibc
1919
#elseif canImport(Musl)
2020
@_exported import Musl
21-
#elseif canImport(Android)
22-
@_exported import Android
21+
#elseif canImport(Bionic)
22+
@_exported import Bionic
2323
#elseif os(WASI)
2424
@_exported import WASILibc
2525
#elseif os(Windows)

Sources/Foundation/Process.swift

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ import struct WinSDK.HANDLE
1818

1919
#if canImport(Darwin)
2020
import Darwin
21+
#elseif canImport(Android)
22+
import Android
2123
#endif
2224

2325
extension Process {

Sources/FoundationNetworking/HTTPCookie.swift

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ import Foundation
1515

1616
#if os(Windows)
1717
import WinSDK
18+
#elseif canImport(Android)
19+
import Android
1820
#endif
1921

2022
public struct HTTPCookiePropertyKey : RawRepresentable, Equatable, Hashable {

Tests/Foundation/Tests/TestFileHandle.swift

+3-8
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
import Dispatch
2020
#if os(Windows)
2121
import WinSDK
22+
#elseif canImport(Android)
23+
import Android
2224
#endif
2325

2426
class TestFileHandle : XCTestCase {
@@ -111,14 +113,7 @@ class TestFileHandle : XCTestCase {
111113
#else
112114
var fds: [Int32] = [-1, -1]
113115
fds.withUnsafeMutableBufferPointer { (pointer) -> Void in
114-
let baseAddress = pointer.baseAddress
115-
#if canImport(Android)
116-
// pipe takes in a non-nullable pointer in the Android NDK only.
117-
guard let baseAddress else {
118-
return
119-
}
120-
#endif
121-
pipe(baseAddress)
116+
pipe(pointer.baseAddress!)
122117
}
123118

124119
close(fds[1])

Tests/Foundation/Tests/TestNSData.swift

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ import CoreFoundation
1717
#endif
1818
#endif
1919

20+
#if canImport(Android)
21+
import Android
22+
#endif
23+
2024
class TestNSData: LoopbackServerTest {
2125

2226
class AllOnesImmutableData : NSData {

Tests/Foundation/Tests/TestProcess.swift

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
88
//
99

10+
#if canImport(Android)
11+
import Android
12+
#endif
13+
1014
class TestProcess : XCTestCase {
1115

1216
func test_exit0() throws {

Tests/Foundation/Tests/TestSocketPort.swift

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
//
99
#if os(Windows)
1010
import WinSDK
11+
#elseif canImport(Android)
12+
import Android
1113
#endif
1214

1315
class TestPortDelegateWithBlock: NSObject, PortDelegate {

Tests/Foundation/Tests/TestTimeZone.swift

+1-6
Original file line numberDiff line numberDiff line change
@@ -160,12 +160,7 @@ class TestTimeZone: XCTestCase {
160160
var lt = tm()
161161
localtime_r(&t, &lt)
162162
let zoneName = NSTimeZone.system.abbreviation() ?? "Invalid Abbreviation"
163-
// tm_zone is nullable in the Android NDK only.
164-
let tm_zone: UnsafePointer<CChar>? = lt.tm_zone
165-
guard let tm_zone else {
166-
return
167-
}
168-
let expectedName = String(cString: tm_zone, encoding: .ascii) ?? "Invalid Zone"
163+
let expectedName = String(cString: lt.tm_zone!, encoding: .ascii) ?? "Invalid Zone"
169164
XCTAssertEqual(zoneName, expectedName, "expected name \"\(expectedName)\" is not equal to \"\(zoneName)\"")
170165
}
171166
#endif

Tests/Foundation/Tests/TestURL.swift

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
88
//
99

10+
#if canImport(Android)
11+
import Android
12+
#endif
13+
1014
let kURLTestParsingTestsKey = "ParsingTests"
1115

1216
let kURLTestTitleKey = "In-Title"

Tests/Tools/XDGTestHelper/main.swift

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import FoundationNetworking
1919
#endif
2020
#if os(Windows)
2121
import WinSDK
22+
#elseif os(Android)
23+
import Android
2224
#endif
2325

2426
enum HelperCheckStatus : Int32 {

0 commit comments

Comments
 (0)