-
Notifications
You must be signed in to change notification settings - Fork 79
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
Address a number of warnings on Windows #184
base: main
Are you sure you want to change the base?
Changes from all commits
96b4c6b
2c5ca0c
7371d7a
80dedf0
a8666d5
ca5a0e1
7fb020e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -324,7 +324,7 @@ public final class VariantGroup: GroupTreeReference, BuildFileRepresentable, @un | |
|
||
|
||
/// A ProductReference represents the product of a StandardTarget object. It acts as a placeholder so that product can be represented in other targets, but it contains no meaningful information itself; rather, it vends information about itself by querying its target for that information. A ProductReference object is not part of a product's group tree and has no parent property; rather, it is owned by and has an unowned backpointer to its target. | ||
public final class ProductReference: Reference, BuildFileRepresentable | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This isn't safe yet, I need to refactor how it initializes the |
||
public final class ProductReference: Reference, BuildFileRepresentable, @unchecked Sendable | ||
{ | ||
/// The name of this reference - primarily for debugging purposes. | ||
public let name: String | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -562,9 +562,13 @@ class LocalFS: FSProxy, @unchecked Sendable { | |
} | ||
|
||
func remove(_ path: Path) throws { | ||
#if os(Windows) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know that there's any value in this being platform-conditional. I think this is only using unlink in the first place out of some early attempt to avoid Foundation for whatever reason at the time which is long since irrelevant. And we're using FileManager in the implementation of most of these FSProxy these functions anyways, so we may as well get to benefit from Foundation's work. |
||
try fileManager.removeItem(atPath: path.str) | ||
#else | ||
guard unlink(path.str) == 0 else { | ||
throw POSIXError(errno, context: "unlink", path.str) | ||
} | ||
#endif | ||
} | ||
|
||
func removeDirectory(_ path: Path) throws { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,17 +15,22 @@ import SWBLibc | |
public import protocol Foundation.LocalizedError | ||
|
||
#if os(Windows) | ||
#if canImport(System) | ||
import System | ||
#else | ||
import SystemPackage | ||
#endif | ||
public import Foundation | ||
|
||
private func strerror(_ code: CInt) -> String { | ||
withUnsafeTemporaryAllocation(of: CChar.self, capacity: 95) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 95? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 94 + 1; the strerror message is limited to 94 characters. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, could you encode that in a comment (with a link to docs?) so it doesn't look like an arbitrary magic to future readers? |
||
guard strerror_s($0.baseAddress, $0.count, code) == 0 else { | ||
return "unknown error" | ||
} | ||
return String(cString: $0.baseAddress!) | ||
} | ||
} | ||
#endif | ||
|
||
public enum POSIX: Sendable { | ||
public static func getenv(_ name: String) throws -> String? { | ||
#if os(Windows) | ||
try name.withCString(encodedAs: CInterop.PlatformUnicodeEncoding.self) { wName in | ||
jakepetroules marked this conversation as resolved.
Show resolved
Hide resolved
|
||
try name.withCString(encodedAs: UTF16.self) { wName in | ||
let dwLength: DWORD = GetEnvironmentVariableW(wName, nil, 0) | ||
if dwLength == 0 { | ||
if GetLastError() == ERROR_ENVVAR_NOT_FOUND { | ||
|
@@ -36,7 +41,7 @@ public enum POSIX: Sendable { | |
return try withUnsafeTemporaryAllocation(of: WCHAR.self, capacity: Int(dwLength)) { | ||
switch GetEnvironmentVariableW(wName, $0.baseAddress!, DWORD($0.count)) { | ||
case dwLength - 1: | ||
return String(decodingCString: $0.baseAddress!, as: CInterop.PlatformUnicodeEncoding.self) | ||
return String(decodingCString: $0.baseAddress!, as: UTF16.self) | ||
case 0 where GetLastError() == ERROR_ENVVAR_NOT_FOUND: | ||
return nil | ||
default: | ||
|
@@ -54,13 +59,13 @@ public enum POSIX: Sendable { | |
let valueString = String(cString: value) | ||
#if os(Windows) | ||
if overwrite == 0 { | ||
if nameString.withCString(encodedAs: CInterop.PlatformUnicodeEncoding.self, { GetEnvironmentVariableW($0, nil, 0) }) == 0 && GetLastError() != ERROR_ENVVAR_NOT_FOUND { | ||
if nameString.withCString(encodedAs: UTF16.self, { GetEnvironmentVariableW($0, nil, 0) }) == 0 && GetLastError() != ERROR_ENVVAR_NOT_FOUND { | ||
throw POSIXError(errno, context: "GetEnvironmentVariableW", nameString) | ||
} | ||
return | ||
} | ||
guard nameString.withCString(encodedAs: CInterop.PlatformUnicodeEncoding.self, { nameWString in | ||
valueString.withCString(encodedAs: CInterop.PlatformUnicodeEncoding.self, { valueWString in | ||
guard nameString.withCString(encodedAs: UTF16.self, { nameWString in | ||
valueString.withCString(encodedAs: UTF16.self, { valueWString in | ||
SetEnvironmentVariableW(nameWString, valueWString) | ||
}) | ||
}) else { | ||
|
@@ -77,7 +82,7 @@ public enum POSIX: Sendable { | |
public static func unsetenv(_ name: UnsafePointer<CChar>) throws { | ||
let nameString = String(cString: name) | ||
#if os(Windows) | ||
guard nameString.withCString(encodedAs: CInterop.PlatformUnicodeEncoding.self, { SetEnvironmentVariableW($0, nil) }) else { | ||
guard nameString.withCString(encodedAs: UTF16.self, { SetEnvironmentVariableW($0, nil) }) else { | ||
throw POSIXError(errno, context: "SetEnvironmentVariableW", nameString) | ||
} | ||
#else | ||
|
@@ -105,7 +110,11 @@ public struct POSIXError: Error, LocalizedError, CustomStringConvertible, Equata | |
} | ||
|
||
public var description: String { | ||
#if os(Windows) | ||
let end = "\(strerror(code)) (\(code))" | ||
#else | ||
let end = "\(String(cString: strerror(code))) (\(code))" | ||
#endif | ||
if let context { | ||
return "\(context)(\(arguments.joined(separator: ", "))): \(end)" | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -683,14 +683,14 @@ private final class ProjectModelItemClass: ProjectModelItem { | |
#expect(fileGroup.children.count == 2) | ||
|
||
// Examine its children | ||
if let fileRef = try? #require(fileGroup.children.first as? FileReference) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We keep having to flip these #requires back and forth due to compiler bugs, I don't know that there's a way to avoid the warnings on every platform There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it a platform thing or a compiler version thing? I'm building with a relatively recent compiler. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As I understand it it's a compiler version thing: swiftlang/swift#79202 |
||
if let fileRef = fileGroup.children.first as? FileReference { | ||
#expect(fileRef.guid == "first-fileReference-guid") | ||
#expect(fileRef.sourceTree == SourceTree.groupRelative) | ||
#expect(fileRef.path.stringRep == "ClassOne.m") | ||
#expect(fileRef.fileTypeIdentifier == "sourcecode.c.objc") | ||
#expect(fileRef.regionVariantName == nil) | ||
} | ||
if let fileRef = try? #require(fileGroup.children[1] as? FileReference) { | ||
if let fileRef = fileGroup.children[1] as? FileReference { | ||
#expect(fileRef.guid == "second-fileReference-guid") | ||
#expect(fileRef.sourceTree == SourceTree.groupRelative) | ||
#expect(fileRef.path.stringRep == "ClassOne.h") | ||
|
@@ -740,14 +740,14 @@ private final class ProjectModelItemClass: ProjectModelItem { | |
#expect(versionGroup.children.count == 2) | ||
|
||
// Examine its children | ||
if let fileRef = try? #require(versionGroup.children[0] as? FileReference) { | ||
if let fileRef = versionGroup.children[0] as? FileReference { | ||
#expect(fileRef.guid == "first-versionedFile-guid") | ||
#expect(fileRef.sourceTree == SourceTree.groupRelative) | ||
#expect(fileRef.path.stringRep == "CoreData-1.xcdatamodel") | ||
#expect(fileRef.fileTypeIdentifier == "wrapper.xcdatamodel") | ||
#expect(fileRef.regionVariantName == nil) | ||
} | ||
if let fileRef = try? #require(versionGroup.children[1] as? FileReference) { | ||
if let fileRef = versionGroup.children[1] as? FileReference { | ||
#expect(fileRef.guid == "second-versionedFile-guid") | ||
#expect(fileRef.sourceTree == SourceTree.groupRelative) | ||
#expect(fileRef.path.stringRep == "CoreData-2.xcdatamodel") | ||
|
@@ -821,21 +821,21 @@ private final class ProjectModelItemClass: ProjectModelItem { | |
#expect(variantGroup.name == "Thingy.xib") | ||
|
||
// Examine its children, the xib and its localized strings files | ||
if let fileRef = try? #require(variantGroup.children[0] as? FileReference) { | ||
if let fileRef = variantGroup.children[0] as? FileReference { | ||
#expect(fileRef.guid == "xib-fileReference-guid") | ||
#expect(fileRef.sourceTree == SourceTree.groupRelative) | ||
#expect(fileRef.path.stringRep == "Thingy.xib") | ||
#expect(fileRef.fileTypeIdentifier == "file.xib") | ||
#expect(fileRef.regionVariantName == nil) | ||
} | ||
if let fileRef = try? #require(variantGroup.children[1] as? FileReference) { | ||
if let fileRef = variantGroup.children[1] as? FileReference { | ||
#expect(fileRef.guid == "fr-strings-fileReference-guid") | ||
#expect(fileRef.sourceTree == SourceTree.groupRelative) | ||
#expect(fileRef.path.stringRep == "Thingy.strings") | ||
#expect(fileRef.fileTypeIdentifier == "text.plist.strings") | ||
#expect(fileRef.regionVariantName == "fr") | ||
} | ||
if let fileRef = try? #require(variantGroup.children[2] as? FileReference) { | ||
if let fileRef = variantGroup.children[2] as? FileReference { | ||
#expect(fileRef.guid == "de-strings-fileReference-guid") | ||
#expect(fileRef.sourceTree == SourceTree.groupRelative) | ||
#expect(fileRef.path.stringRep == "Thingy.strings") | ||
|
@@ -941,7 +941,7 @@ private final class ProjectModelItemClass: ProjectModelItem { | |
] | ||
|
||
// Convert the test data into a property list, then read the build phase from it. | ||
if let buildPhase = try? #require(BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? SourcesBuildPhase) { | ||
if let buildPhase = try? BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? SourcesBuildPhase { | ||
// Examine the build phase. | ||
#expect(buildPhase.buildFiles.count == 1) | ||
} | ||
|
@@ -962,7 +962,7 @@ private final class ProjectModelItemClass: ProjectModelItem { | |
] | ||
|
||
// Convert the test data into a property list, then read the build phase from it. | ||
if let buildPhase = try? #require(BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? HeadersBuildPhase) { | ||
if let buildPhase = try? BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? HeadersBuildPhase { | ||
// Examine the build phase. | ||
#expect(buildPhase.buildFiles.count == 1) | ||
} | ||
|
@@ -983,7 +983,7 @@ private final class ProjectModelItemClass: ProjectModelItem { | |
] | ||
|
||
// Convert the test data into a property list, then read the build phase from it. | ||
if let buildPhase = try? #require(BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? ResourcesBuildPhase) { | ||
if let buildPhase = try? BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? ResourcesBuildPhase { | ||
// Examine the build phase. | ||
#expect(buildPhase.buildFiles.count == 1) | ||
} | ||
|
@@ -1007,7 +1007,7 @@ private final class ProjectModelItemClass: ProjectModelItem { | |
] | ||
|
||
// Convert the test data into a property list, then read the build phase from it. | ||
if let buildPhase = try? #require(BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? CopyFilesBuildPhase) { | ||
if let buildPhase = try? BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? CopyFilesBuildPhase { | ||
// Examine the build phase. | ||
#expect(buildPhase.destinationSubfolder.stringRep == "Resources") | ||
#expect(buildPhase.destinationSubpath.stringRep == "Subpath") | ||
|
@@ -1036,7 +1036,7 @@ private final class ProjectModelItemClass: ProjectModelItem { | |
] | ||
|
||
// Convert the test data into a property list, then read the build phase from it. | ||
if let buildPhase = try? #require(BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? ShellScriptBuildPhase) { | ||
if let buildPhase = try? BuildPhase.parsePIFDictAsBuildPhase(buildPhasePIF, pifLoader: pifLoader) as? ShellScriptBuildPhase { | ||
// Examine the build phase. | ||
#expect(buildPhase.guid == "some-shellScriptBuildPhase-guid") | ||
#expect(buildPhase.name == "A Shell Script Phase") | ||
|
@@ -1353,7 +1353,7 @@ private final class ProjectModelItemClass: ProjectModelItem { | |
|
||
// Because of the way reference resolution of a BuildFile.BuildableItem works, we don't have a context to resolve the build file's references to real references, so all we can do is check that the GUID is what we expect. | ||
func checkBuildFileRef(of buildPhase: BuildPhaseWithBuildFiles, fileRef: FileReference) throws { | ||
guard let buildFileRef = try? #require(buildPhase.buildFiles.first) else { | ||
guard let buildFileRef = buildPhase.buildFiles.first else { | ||
return | ||
} | ||
guard case let .reference(buildFileRefGuid) = buildFileRef.buildableItem else { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This brings back memories :)