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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
#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
extension FileDescriptor {
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
/// Announces an intention to read specific region of file data.
///
/// - Parameters:
/// - offset: The offset to the starting point of the region.
/// - length: The length of the region.
///
/// The corresponding C function is `fcntl` with `F_RDADVISE` command.
@_alwaysEmitIntoClient
public func adviseRead(offset: Int64, length: Int32) throws {
try _adviseRead(offset: offset, length: length).get()
}
@usableFromInline
internal func _adviseRead(offset: Int64, length: Int32) -> Result<Void, Errno> {
var radvisory = radvisory(ra_offset: offset, ra_count: length)
return withUnsafeMutablePointer(to: &radvisory) { radvisoryPtr in
nothingOrErrno(retryOnInterrupt: false) {
system_fcntl(self.rawValue, F_RDADVISE, radvisoryPtr)
}
}
}
#endif
/// The advisory for specific access pattern to file data.
@frozen
public struct Advice: RawRepresentable, Hashable, Codable {
public var rawValue: CInt
/// Creates a strongly-typed advice from a raw C access mode.
@_alwaysEmitIntoClient
public init(rawValue: CInt) { self.rawValue = rawValue }
#if os(Linux)
/// Access the specified data in the near future.
///
/// The corresponding C constant is `POSIX_FADV_WILLNEED`.
@_alwaysEmitIntoClient
public static var willNeed: Advice { Advice(rawValue: POSIX_FADV_WILLNEED) }
#endif
}
#if os(Linux)
/// Announces an intention to access specific region of file data.
///
/// - Parameters:
/// - offset: The offset to the starting point of the region.
/// - length: The length of the region.
/// - advice: The advisory for the access pattern.
///
/// The corresponding C function is `posix_fadvise`.
@_alwaysEmitIntoClient
public func advise(offset: Int, length: Int, advice: Advice) throws {
try _advise(offset: offset, length: length, advice: advice).get()
}
@usableFromInline
internal func _advise(offset: Int, length: Int, advice: Advice) -> Result<Void, Errno> {
nothingOrErrno(retryOnInterrupt: false) {
system_posix_fadvise(self.rawValue, offset, length, advice.rawValue)
}
}
#endif
/// A structure representing type of file.
///
/// Typically created from `st_mode & S_IFMT`.
@frozen
public struct FileType: RawRepresentable {
/// The raw C file type.
@_alwaysEmitIntoClient
public var rawValue: CInterop.Mode
/// Creates a strongly-typed file type from a raw C file type.
@_alwaysEmitIntoClient
public init(rawValue: CInterop.Mode) {
self.rawValue = rawValue
}
public static var directory: FileType { FileType(rawValue: _S_IFDIR) }
public static var symlink: FileType { FileType(rawValue: _S_IFLNK) }
public static var file: FileType { FileType(rawValue: _S_IFREG) }
public static var characterDevice: FileType { FileType(rawValue: _S_IFCHR) }
public static var blockDevice: FileType { FileType(rawValue: _S_IFBLK) }
public static var socket: FileType { FileType(rawValue: _S_IFSOCK) }
public static var unknown: FileType { FileType(rawValue: _S_IFMT) }
/// A Boolean value indicating whether this file type represents a directory file.
@_alwaysEmitIntoClient
public var isDirectory: Bool {
_is(_S_IFDIR)
}
/// A Boolean value indicating whether this file type represents a symbolic link.
@_alwaysEmitIntoClient
public var isSymlink: Bool {
_is(_S_IFLNK)
}
/// A Boolean value indicating whether this file type represents a regular file.
@_alwaysEmitIntoClient
public var isFile: Bool {
_is(_S_IFREG)
}
/// A Boolean value indicating whether this file type represents a character-oriented device file.
@_alwaysEmitIntoClient
public var isCharacterDevice: Bool {
_is(_S_IFCHR)
}
/// A Boolean value indicating whether this file type represents a block-oriented device file.
@_alwaysEmitIntoClient
public var isBlockDevice: Bool {
_is(_S_IFBLK)
}
/// A Boolean value indicating whether this file type represents a socket.
@_alwaysEmitIntoClient
public var isSocket: Bool {
_is(_S_IFSOCK)
}
@_alwaysEmitIntoClient
internal func _is(_ mode: CInterop.Mode) -> Bool {
rawValue == mode
}
}
/// A metadata information about a file.
///
/// The corresponding C struct is `stat`.
@frozen
public struct Attributes: RawRepresentable {
/// The raw C file metadata structure.
@_alwaysEmitIntoClient
public let rawValue: stat
/// Creates a strongly-typed file type from a raw C file metadata structure.
@_alwaysEmitIntoClient
public init(rawValue: stat) {
self.rawValue = rawValue
}
@_alwaysEmitIntoClient
public var device: UInt64 {
UInt64(rawValue.st_dev)
}
@_alwaysEmitIntoClient
public var inode: UInt64 {
UInt64(rawValue.st_ino)
}
/// Returns the file type for this metadata.
@_alwaysEmitIntoClient
public var fileType: FileType {
FileType(rawValue: self.rawValue.st_mode & S_IFMT)
}
@_alwaysEmitIntoClient
public var linkCount: UInt32 {
UInt32(rawValue.st_nlink)
}
@_alwaysEmitIntoClient
public var size: Int64 {
Int64(rawValue.st_size)
}
@_alwaysEmitIntoClient
public var accessTime: Clock.TimeSpec {
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
Clock.TimeSpec(rawValue: self.rawValue.st_atimespec)
#else
Clock.TimeSpec(rawValue: self.rawValue.st_atim)
#endif
}
@_alwaysEmitIntoClient
public var modificationTime: Clock.TimeSpec {
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
Clock.TimeSpec(rawValue: self.rawValue.st_mtimespec)
#else
Clock.TimeSpec(rawValue: self.rawValue.st_mtim)
#endif
}
@_alwaysEmitIntoClient
public var creationTime: Clock.TimeSpec {
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
Clock.TimeSpec(rawValue: self.rawValue.st_ctimespec)
#else
Clock.TimeSpec(rawValue: self.rawValue.st_ctim)
#endif
}
}
/// Queries the metadata about the file
///
/// - Returns: The attributes of the file
///
/// The corresponding C function is `fstat`.
@_alwaysEmitIntoClient
public func attributes() throws -> Attributes {
try _attributes().get()
}
@usableFromInline
internal func _attributes() -> Result<Attributes, Errno> {
var stat: stat = stat()
return nothingOrErrno(retryOnInterrupt: false) {
system_fstat(self.rawValue, &stat)
}
.map { Attributes(rawValue: stat) }
}
/// Queries the current status of the file descriptor.
///
/// - Returns: The file descriptor's access mode and status.
///
/// The corresponding C function is `fcntl` with `F_GETFL` command.
@_alwaysEmitIntoClient
public func status() throws -> OpenOptions {
try _status().get()
}
@usableFromInline
internal func _status() -> Result<OpenOptions, Errno> {
valueOrErrno(retryOnInterrupt: false) {
system_fcntl(self.rawValue, _F_GETFL)
}
.map { OpenOptions(rawValue: $0) }
}
@_alwaysEmitIntoClient
public func setStatus(_ options: OpenOptions) throws {
try _setStatus(options).get()
}
@usableFromInline
internal func _setStatus(_ options: OpenOptions) -> Result<(), Errno> {
nothingOrErrno(retryOnInterrupt: false) {
system_fcntl(self.rawValue, F_SETFL, options.rawValue)
}
}
@_alwaysEmitIntoClient
public func setTimes(
access: Clock.TimeSpec = .omit, modification: Clock.TimeSpec = .omit
) throws {
try _setTime(access: access, modification: modification).get()
}
@usableFromInline
internal func _setTime(access: Clock.TimeSpec, modification: Clock.TimeSpec) -> Result<(), Errno> {
let times = ContiguousArray([access.rawValue, modification.rawValue])
return times.withUnsafeBufferPointer { timesPtr in
nothingOrErrno(retryOnInterrupt: false) {
system_futimens(self.rawValue, timesPtr.baseAddress!)
}
}
}
@_alwaysEmitIntoClient
public func truncate(size: Int64) throws {
try _truncate(size: size).get()
}
@usableFromInline
internal func _truncate(size: Int64) -> Result<(), Errno> {
return nothingOrErrno(retryOnInterrupt: false) {
system_ftruncate(self.rawValue, off_t(size))
}
}
public struct DirectoryEntry: RawRepresentable {
@_alwaysEmitIntoClient
public var rawValue: UnsafeMutablePointer<dirent>
@_alwaysEmitIntoClient
public init(rawValue: UnsafeMutablePointer<dirent>) {
self.rawValue = rawValue
}
@_alwaysEmitIntoClient
public var name: String {
withUnsafePointer(to: &rawValue.pointee.d_name) { dName in
dName.withMemoryRebound(to: UInt8.self, capacity: MemoryLayout.size(ofValue: dName)) {
// String initializer copies the given buffer contents, so it's safe.
return String(cString: $0)
}
}
}
public var fileType: FileType {
switch CInt(rawValue.pointee.d_type) {
case _DT_REG: return .file
case _DT_BLK: return .blockDevice
case _DT_CHR: return .characterDevice
case _DT_DIR: return .directory
case _DT_LNK: return .symlink
case _DT_SOCK: return .socket
default: return .unknown
}
}
}
public struct DirectoryStream: RawRepresentable, IteratorProtocol, Sequence {
@_alwaysEmitIntoClient
public let rawValue: CInterop.DirP
@_alwaysEmitIntoClient
public init(rawValue: CInterop.DirP) {
self.rawValue = rawValue
}
public func next() -> Result<DirectoryEntry, Errno>? {
// https://man7.org/linux/man-pages/man3/readdir.3.html#RETURN_VALUE
// > If the end of the directory stream is reached, NULL is returned
// > and errno is not changed. If an error occurs, NULL is returned
// > and errno is set to indicate the error. To distinguish end of
// > stream from an error, set errno to zero before calling readdir()
// > and then check the value of errno if NULL is returned.
system_errno = 0
if let dirent = system_readdir(rawValue) {
return .success(DirectoryEntry(rawValue: dirent))
} else {
let currentErrno = system_errno
if currentErrno == 0 {
// We successfully reached the end of the stream.
return nil
} else {
return .failure(Errno(rawValue: currentErrno))
}
}
}
}
public func contentsOfDirectory() throws -> DirectoryStream {
return try _contentsOfDirectory().get()
}
internal func _contentsOfDirectory() -> Result<DirectoryStream, Errno> {
guard let dirp = system_fdopendir(self.rawValue) else {
return .failure(Errno(rawValue: system_errno))
}
return .success(DirectoryStream(rawValue: dirp))
}
}
// MARK: - Synchronized Input and Output
extension FileDescriptor.OpenOptions {
@_alwaysEmitIntoClient
public static var dataSync: FileDescriptor.OpenOptions {
FileDescriptor.OpenOptions(rawValue: _O_DSYNC)
}
@_alwaysEmitIntoClient
public static var fileSync: FileDescriptor.OpenOptions {
FileDescriptor.OpenOptions(rawValue: _O_SYNC)
}
#if os(Linux)
@_alwaysEmitIntoClient
public static var readSync: FileDescriptor.OpenOptions {
FileDescriptor.OpenOptions(rawValue: _O_RSYNC)
}
#endif
}
|