1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/*
This source file is part of the Swift.org open source project
Copyright (c) 2021-2024 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See https://swift.org/LICENSE.txt for license information
See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
package import Foundation
/// A read-write file manager.
///
/// A file-system manager is a type that's central to *managing* files on
/// a file-system, it performs actions like creating new files, copying, renaming
/// and deleting files, and organizing them in directories.
///
/// The Cocoa `FileManager` type is the default implementation of that protocol
/// that manages files stored on disk.
///
/// Should you need a file system with a different storage, create your own
/// protocol implementations to manage files in memory,
/// on a network, in a database, or elsewhere.
package protocol FileManagerProtocol: DataProvider {
/// Returns the data content of a file at the given path, if it exists.
func contents(atPath: String) -> Data?
/// Compares the contents of two files at the given paths.
func contentsEqual(atPath: String, andPath: String) -> Bool
/// The *current* directory path.
var currentDirectoryPath: String { get }
/// Returns `true` if a file or a directory exists at the given path.
func fileExists(atPath: String, isDirectory: UnsafeMutablePointer<ObjCBool>?) -> Bool
/// Returns `true` if a directory exists at the given path.
func directoryExists(atPath: String) -> Bool
/// Returns `true` if a file exists at the given path.
func fileExists(atPath: String) -> Bool
/// Copies a file from one location on the file-system to another.
func _copyItem(at: URL, to: URL) throws // Use a different name than FileManager to work around https://github.com/swiftlang/swift-foundation/issues/1125
/// Moves a file from one location on the file-system to another.
func moveItem(at: URL, to: URL) throws
/// Creates a new file folder at the given location.
func createDirectory(at: URL, withIntermediateDirectories: Bool, attributes: [FileAttributeKey : Any]?) throws
/// Removes a file from the given location.
func removeItem(at: URL) throws
/// Returns a list of items in a directory
func contentsOfDirectory(atPath path: String) throws -> [String]
func contentsOfDirectory(at url: URL, includingPropertiesForKeys keys: [URLResourceKey]?, options mask: FileManager.DirectoryEnumerationOptions) throws -> [URL]
/// Returns a unique temporary directory.
///
/// Each call to this function will return a new temporary directory.
func uniqueTemporaryDirectory() -> URL // Because we shadow 'FileManager.temporaryDirectory' in our tests, we can't also use 'temporaryDirectory' in FileManagerProtocol
/// Creates a file with the specified `contents` at the specified location.
///
/// - Parameters:
/// - at: The location to create the file
/// - contents: The data to write to the file.
///
/// - Note: This method doesn't exist on ``FileManager``.
/// There is a similar looking method but it doesn't provide information about potential errors.
///
/// - Throws: If the file couldn't be created with the specified contents.
func createFile(at: URL, contents: Data) throws
/// Returns the data content of a file at the given URL.
///
/// - Parameters:
/// - url: The location to create the file
///
/// - Note: This method doesn't exist on ``FileManager``.
/// There is a similar looking method but it doesn't provide information about potential errors.
///
/// - Throws: If the file couldn't be read.
func contents(of url: URL) throws -> Data
/// Creates a file with the given contents at the given url with the specified
/// writing options.
///
/// - Parameters:
/// - at: The location to create the file
/// - contents: The data to write to the file.
/// - options: Options for writing the data. Provide `nil` to use the default
/// writing options of the file manager.
func createFile(at location: URL, contents: Data, options writingOptions: NSData.WritingOptions?) throws
/// Performs a shallow search of the specified directory and returns the file and directory URLs for the contained items.
///
/// - Parameters:
/// - url: The URL for the directory whose contents to enumerate.
/// - mark: Options for the enumeration. Because this method performs only shallow enumerations, the only supported option is `skipsHiddenFiles`.
/// - Returns: The URLs of each file and directory that's contained in `url`.
func contentsOfDirectory(at url: URL, options mask: FileManager.DirectoryEnumerationOptions) throws -> (files: [URL], directories: [URL])
}
extension FileManagerProtocol {
/// Returns a Boolean value that indicates whether a directory exists at a specified path.
package func directoryExists(atPath path: String) -> Bool {
var isDirectory = ObjCBool(booleanLiteral: false)
let fileExistsAtPath = fileExists(atPath: path, isDirectory: &isDirectory)
return fileExistsAtPath && isDirectory.boolValue
}
}
/// Add compliance to `FileManagerProtocol` to `FileManager`,
/// most of the methods are already implemented in Foundation.
extension FileManager: FileManagerProtocol {
// This method doesn't exist on `FileManager`. There is a similar looking method but it doesn't provide information about potential errors.
package func contents(of url: URL) throws -> Data {
return try Data(contentsOf: url)
}
// This method doesn't exist on `FileManager`. There is a similar looking method but it doesn't provide information about potential errors.
package func createFile(at location: URL, contents: Data) throws {
try contents.write(to: location, options: .atomic)
}
package func createFile(at location: URL, contents: Data, options writingOptions: NSData.WritingOptions?) throws {
if let writingOptions {
try contents.write(to: location, options: writingOptions)
} else {
try contents.write(to: location)
}
}
// Because we shadow 'FileManager.temporaryDirectory' in our tests, we can't also use 'temporaryDirectory' in FileManagerProtocol/
package func uniqueTemporaryDirectory() -> URL {
temporaryDirectory.appendingPathComponent(ProcessInfo.processInfo.globallyUniqueString, isDirectory: true)
}
// This method doesn't exist on `FileManger`. We define it on the protocol to enable the FileManager to provide an implementation that avoids repeated reads to discover which contained items are files and which are directories.
package func contentsOfDirectory(at url: URL, options mask: DirectoryEnumerationOptions) throws -> (files: [URL], directories: [URL]) {
var allContents = try contentsOfDirectory(at: url, includingPropertiesForKeys: [.isDirectoryKey], options: .skipsHiddenFiles)
let partitionIndex = try allContents.partition {
try $0.resourceValues(forKeys: [.isDirectoryKey]).isDirectory == true
}
return (
files: Array( allContents[..<partitionIndex] ),
directories: Array( allContents[partitionIndex...] )
)
}
package func _copyItem(at source: URL, to destination: URL) throws {
// Call `NSFileManager/copyItem(at:to:)` and catch the error to workaround https://github.com/swiftlang/swift-foundation/issues/1125
do {
try copyItem(at: source, to: destination)
} catch let error as CocoaError {
// In Swift 6 on Linux, `FileManager/copyItems(at:to:)` raises an error _after_ successfully copying the files when it's moving over file attributes from the source to the destination.
// To workaround this issue, we check if the destination exist and the error wasn't that the destination _already_ existed.
if error.code != CocoaError.Code.fileWriteFileExists,
fileExists(atPath: destination.path)
{
// Ignore this error.
// The consequence is that the copied item may have some different attributes (creation date, owner, etc.) compared to the source.
// These attributes aren't critical for copying input files over to the output documentation archive.
return
}
// Otherwise, if this was any other error or if the destination file doesn't exist after calling `FileManager/copyItems(at:to:)`, re-throw the error to the caller.
throw error
}
}
}
|