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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
import Darwin
#elseif os(Linux) || os(FreeBSD) || os(Android)
import Glibc
#elseif os(Windows)
import ucrt
#else
#error("Unsupported Platform")
#endif
import SystemPackage
// @available(macOS 10.16, iOS 14.0, watchOS 7.0, tvOS 14.0, *)
extension FileDescriptor {
/// Options for use with `*at` functions like `openAt`
/// Each function defines which option values are valid with it
@frozen
public struct AtOptions: OptionSet {
/// The raw C options.
@_alwaysEmitIntoClient
public var rawValue: Int32
/// Create a strongly-typed options value from raw C options.
@_alwaysEmitIntoClient
public init(rawValue: Int32) {
self.rawValue = rawValue
}
/// Indicates the operation does't follow symlinks
///
/// If you specify this option and the file you pass to
/// <doc:SystemPackage/FileDescriptor/attributes(at:options:)-803zm>
/// is a symbolic link, then it returns information about the link itself.
///
/// The corresponding C constant is `AT_SYMLINK_NOFOLLOW`.
@_alwaysEmitIntoClient
public static var noFollow: AtOptions { AtOptions(rawValue: _AT_SYMLINK_NOFOLLOW) }
/* FIXME: Disabled until CSystem will include "linux/fcntl.h"
#if os(Linux)
/// Indicates the operation does't mount the basename component automatically
///
/// If you specify this option and the file you pass to
/// <doc:SystemPackage/FileDescriptor/attributes(at:options:)-803zm>
/// is a auto-mount point, it does't mount the directory even if it's an auto-mount point.
///
/// The corresponding C constant is `AT_NO_AUTOMOUNT`.
@_alwaysEmitIntoClient
public static var noAutomount: AtOptions { AtOptions(rawValue: _AT_NO_AUTOMOUNT)}
#endif
*/
/// Indicates the operation removes directory
///
/// If you specify this option and the file path you pass to
/// <doc:SystemPackage/FileDescriptor/remove(at:options:)-1y194>
/// is not a directory, then that remove operation fails.
///
/// The corresponding C constant is `AT_REMOVEDIR`.
@_alwaysEmitIntoClient
public static var removeDirectory: AtOptions { AtOptions(rawValue: _AT_REMOVEDIR) }
}
/// Opens or creates a file relative to a directory file descriptor
///
/// - Parameters:
/// - path: The relative location of the file to open.
/// - mode: The read and write access to use.
/// - options: The behavior for opening the file.
/// - permissions: The file permissions to use for created files.
/// - retryOnInterrupt: Whether to retry the open operation
/// if it throws ``Errno/interrupted``.
/// The default is `true`.
/// Pass `false` to try only once and throw an error upon interruption.
/// - Returns: A file descriptor for the open file
///
/// The corresponding C function is `openat`.
@_alwaysEmitIntoClient
public func open(
at path: FilePath,
_ mode: FileDescriptor.AccessMode,
options: FileDescriptor.OpenOptions,
permissions: FilePermissions? = nil,
retryOnInterrupt: Bool = true
) throws -> FileDescriptor {
try path.withPlatformString {
try open(
at: $0, mode, options: options, permissions: permissions, retryOnInterrupt: retryOnInterrupt)
}
}
/// Opens or creates a file relative to a directory file descriptor
///
/// - Parameters:
/// - path: The relative location of the file to open.
/// - mode: The read and write access to use.
/// - options: The behavior for opening the file.
/// - permissions: The file permissions to use for created files.
/// - retryOnInterrupt: Whether to retry the open operation
/// if it throws ``Errno/interrupted``.
/// The default is `true`.
/// Pass `false` to try only once and throw an error upon interruption.
/// - Returns: A file descriptor for the open file
///
/// The corresponding C function is `openat`.
@_alwaysEmitIntoClient
public func open(
at path: UnsafePointer<CInterop.PlatformChar>,
_ mode: FileDescriptor.AccessMode,
options: FileDescriptor.OpenOptions,
permissions: FilePermissions? = nil,
retryOnInterrupt: Bool = true
) throws -> FileDescriptor {
try _open(
at: path, mode, options: options, permissions: permissions, retryOnInterrupt: retryOnInterrupt
).get()
}
@usableFromInline
internal func _open(
at path: UnsafePointer<CInterop.PlatformChar>,
_ mode: FileDescriptor.AccessMode,
options: FileDescriptor.OpenOptions,
permissions: FilePermissions?,
retryOnInterrupt: Bool
) -> Result<FileDescriptor, Errno> {
let oFlag = mode.rawValue | options.rawValue
let descOrError: Result<CInt, Errno> = valueOrErrno(retryOnInterrupt: retryOnInterrupt) {
if let permissions = permissions {
return system_openat(self.rawValue, path, oFlag, permissions.rawValue)
}
precondition(!options.contains(.create),
"Create must be given permissions")
return system_openat(self.rawValue, path, oFlag)
}
return descOrError.map { FileDescriptor(rawValue: $0) }
}
/// Returns attributes information about a file relative to a directory file descriptor
///
/// - Parameters:
/// - path: The relative location of the file to retrieve attributes.
/// - options: The behavior for retrieving attributes. Available options are:
/// - <doc:SystemPackage/FileDescriptor/AtOptions/noFollow>
/// - Returns: A set of attributes about the specified file.
///
/// The corresponding C function is `fstatat`.
@_alwaysEmitIntoClient
public func attributes(at path: FilePath, options: AtOptions) throws -> Attributes {
try path.withPlatformString { _attributes(at: $0, options: options) }.get()
}
/// Returns attributes information about a file relative to a directory file descriptor
///
/// - Parameters:
/// - path: The relative location of the file to retrieve attributes.
/// - options: The behavior for retrieving attributes. Available options are:
/// - <doc:SystemPackage/FileDescriptor/AtOptions/noFollow>
/// - Returns: A set of attributes about the specified file.
///
/// The corresponding C function is `fstatat`.
@_alwaysEmitIntoClient
public func attributes(at path: UnsafePointer<CInterop.PlatformChar>, options: AtOptions) throws -> Attributes {
try _attributes(at: path, options: options).get()
}
@usableFromInline
internal func _attributes(at path: UnsafePointer<CInterop.PlatformChar>, options: AtOptions) -> Result<Attributes, Errno> {
var stat: stat = stat()
return nothingOrErrno(retryOnInterrupt: false) {
system_fstatat(self.rawValue, path, &stat, options.rawValue)
}
.map { Attributes(rawValue: stat) }
}
/// Remove a file entry relative to a directory file descriptor
///
/// - Parameters:
/// - path: The relative location of the directory to remove.
/// - options: The behavior for removing a file entry. Available options are:
/// - <doc:SystemPackage/FileDescriptor/AtOptions/removeDirectory>
///
/// The corresponding C function is `unlinkat`.
@_alwaysEmitIntoClient
public func remove(at path: FilePath, options: AtOptions) throws {
try path.withPlatformString { _remove(at: $0, options: options) }.get()
}
/// Remove a file entry relative to a directory file descriptor
///
/// - Parameters:
/// - path: The relative location of the directory to remove.
/// - options: The behavior for removing a file entry. Available options are:
/// - <doc:SystemPackage/FileDescriptor/AtOptions/removeDirectory>
///
/// The corresponding C function is `unlinkat`.
@_alwaysEmitIntoClient
public func remove(at path: UnsafePointer<CInterop.PlatformChar>, options: AtOptions) throws {
try _remove(at: path, options: options).get()
}
@usableFromInline
internal func _remove(
at path: UnsafePointer<CInterop.PlatformChar>, options: AtOptions
) -> Result<(), Errno> {
return nothingOrErrno(retryOnInterrupt: false) {
system_unlinkat(self.rawValue, path, options.rawValue)
}
}
/// Create a directory relative to a directory file descriptor
///
/// - Parameters:
/// - path: The relative location of the directory to create.
/// - permissions: The file permissions to use for the created directory.
///
/// The corresponding C function is `mkdirat`.
@_alwaysEmitIntoClient
public func createDirectory(
at path: FilePath, permissions: FilePermissions
) throws {
try path.withPlatformString {
_createDirectory(at: $0, permissions: permissions)
}.get()
}
/// Create a directory relative to a directory file descriptor
///
/// - Parameters:
/// - path: The relative location of the directory to create.
/// - permissions: The file permissions to use for the created directory.
///
/// The corresponding C function is `mkdirat`.
@_alwaysEmitIntoClient
public func createDirectory(
at path: UnsafePointer<CInterop.PlatformChar>, permissions: FilePermissions
) throws {
try _createDirectory(at: path, permissions: permissions).get()
}
@usableFromInline
internal func _createDirectory(
at path: UnsafePointer<CInterop.PlatformChar>, permissions: FilePermissions
) -> Result<(), Errno> {
return nothingOrErrno(retryOnInterrupt: false) {
system_mkdirat(self.rawValue, path, permissions.rawValue)
}
}
/// Create a symbolic link relative to a directory file descriptor
///
/// - Parameters:
/// - original: The path to be refered by the created symbolic link.
/// - link: The relative location of the symbolic link to create
///
/// The corresponding C function is `symlinkat`.
@_alwaysEmitIntoClient
public func createSymlink(original: FilePath, link: FilePath) throws {
try original.withPlatformString { cOriginal in
try link.withPlatformString { cLink in
try _createSymlink(original: cOriginal, link: cLink).get()
}
}
}
/// Create a symbolic link relative to a directory file descriptor
///
/// - Parameters:
/// - original: The path to be refered by the created symbolic link.
/// - link: The relative location of the symbolic link to create
///
/// The corresponding C function is `symlinkat`.
@_alwaysEmitIntoClient
public func createSymlink(
original: UnsafePointer<CInterop.PlatformChar>,
link: UnsafePointer<CInterop.PlatformChar>
) throws {
try _createSymlink(original: original, link: link).get()
}
@usableFromInline
internal func _createSymlink(
original: UnsafePointer<CInterop.PlatformChar>,
link: UnsafePointer<CInterop.PlatformChar>
) -> Result<(), Errno> {
return nothingOrErrno(retryOnInterrupt: false) {
system_symlinkat(original, self.rawValue, link)
}
}
}
|