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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftNIO open source project
//
// Copyright (c) 2023 Apple Inc. and the SwiftNIO project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftNIO project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
#if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) || os(Linux) || os(Android)
import SystemPackage
/// Options for opening file handles.
public enum OpenOptions {
/// Options for opening a file for reading.
public struct Read: Hashable, Sendable {
/// If the last path component is a symbolic link then this flag determines whether the
/// link is followed. If `false` and the last path component is a symbolic link then an
/// error is thrown.
public var followSymbolicLinks: Bool
/// Marks the descriptor of the opened file as 'close-on-exec'.
public var closeOnExec: Bool
/// Creates a new set of options for opening a file for reading.
///
/// - Parameters:
/// - followSymbolicLinks: Whether symbolic links should be followed, defaults to `true`.
/// - closeOnExec: Whether the descriptor should be marked as closed-on-exec, defaults
/// to `false`.
public init(
followSymbolicLinks: Bool = true,
closeOnExec: Bool = false
) {
self.followSymbolicLinks = followSymbolicLinks
self.closeOnExec = closeOnExec
}
}
/// Options for opening a directory.
public struct Directory: Hashable, Sendable {
/// If the last path component is a symbolic link then this flag determines whether the
/// link is followed. If `false` and the last path component is a symbolic link then an
/// error is thrown.
public var followSymbolicLinks: Bool
/// Marks the descriptor of the opened file as 'close-on-exec'.
public var closeOnExec: Bool
/// Creates a new set of options for opening a directory.
///
/// - Parameters:
/// - followSymbolicLinks: Whether symbolic links should be followed, defaults to `true`.
/// - closeOnExec: Whether the descriptor should be marked as closed-on-exec, defaults
/// to `false`.
public init(
followSymbolicLinks: Bool = true,
closeOnExec: Bool = false
) {
self.followSymbolicLinks = followSymbolicLinks
self.closeOnExec = closeOnExec
}
}
/// Options for opening a file for writing (or reading and writing).
///
/// You can use the following methods to create commonly used sets of options:
/// - ``newFile(replaceExisting:permissions:)`` to create a new file, optionally replacing
/// one which already exists.
/// - ``modifyFile(createIfNecessary:permissions:)`` to modify an existing file, optionally
/// creating it if it doesn't exist.
public struct Write: Hashable, Sendable {
/// The behavior for opening an existing file.
public var existingFile: OpenOptions.ExistingFile
/// The creation options for a new file, if one should be created. `nil` means that no
/// file should be created.
public var newFile: OpenOptions.NewFile?
/// If the last path component is a symbolic link then this flag determines whether the
/// link is followed. If `false` and the last path component is a symbolic link then an
/// error is thrown.
public var followSymbolicLinks: Bool
/// Marks the descriptor of the opened file as 'close-on-exec'.
public var closeOnExec: Bool
/// Creates a new set of options for opening a directory.
///
/// - Parameters:
/// - existingFile: Options for handling an existing file.
/// - newFile: Options for creating a new file.
/// - followSymbolicLinks: Whether symbolic links should be followed, defaults to `true`.
/// - closeOnExec: Whether the descriptor should be marked as closed-on-exec, defaults
/// to `false`.
public init(
existingFile: OpenOptions.ExistingFile,
newFile: OpenOptions.NewFile?,
followSymbolicLinks: Bool = true,
closeOnExec: Bool = false
) {
self.existingFile = existingFile
self.newFile = newFile
self.followSymbolicLinks = followSymbolicLinks
self.closeOnExec = closeOnExec
}
/// Create a new file for writing to.
///
/// - Parameters:
/// - replaceExisting: Whether any existing file of the same name is replaced. If
/// this is `true` then any existing file of the same name will be replaced with the
/// new file. If this is `false` and a file already exists an error is thrown.
/// - permissions: The permissions to apply to the newly created file. Default permissions
/// (read-write owner permissions and read permissions for everyone else) are applied
/// if `nil`.
/// - Returns: Options for creating a new file for writing.
public static func newFile(
replaceExisting: Bool,
permissions: FilePermissions? = nil
) -> Self {
return Write(
existingFile: replaceExisting ? .truncate : .none,
newFile: NewFile(permissions: permissions)
)
}
/// Opens a file for modifying.
///
/// - Parameters:
/// - createIfNecessary: Whether a file should be created if one doesn't exist. If
/// `false` and a file doesn't exist then an error is thrown.
/// - permissions: The permissions to apply to the newly created file. Default permissions
/// (read-write owner permissions and read permissions for everyone else) are applied
/// if `nil`. Ignored if `createIfNonExistent` is `false`.
/// - Returns: Options for modifying an existing file for writing.
public static func modifyFile(
createIfNecessary: Bool,
permissions: FilePermissions? = nil
) -> Self {
return Write(
existingFile: .open,
newFile: createIfNecessary ? NewFile(permissions: permissions) : nil
)
}
}
}
extension OpenOptions {
/// Options for opening an existing file.
public enum ExistingFile: Sendable, Hashable {
/// Indicates that no file exists. If a file does exist then an error is thrown when
/// opening the file.
case none
/// Any existing file should be opened without modification.
case open
/// Truncate the existing file.
///
/// Setting this is equivalent to opening a file with `O_TRUNC`.
case truncate
}
/// Options for creating a new file.
public struct NewFile: Sendable, Hashable {
/// The permissions to apply to the new file. `nil` implies default permissions
/// should be applied.
public var permissions: FilePermissions?
/// Whether the file should be created and updated as a single transaction, if
/// applicable.
///
/// When this option is set and applied the newly created file will only materialize
/// on the file system when the file is closed. When used in conjunction with
/// ``FileSystemProtocol/withFileHandle(forWritingAt:options:execute:)`` and
/// ``FileSystemProtocol/withFileHandle(forReadingAndWritingAt:options:execute:)`` the
/// file will only materialize when the file is closed and no errors have been thrown.
///
/// - Important: This flag is only applied if ``OpenOptions/Write/existingFile`` is
/// ``OpenOptions/ExistingFile/none``.
public var transactionalCreation: Bool
public init(
permissions: FilePermissions? = nil,
transactionalCreation: Bool = true
) {
self.permissions = permissions
self.transactionalCreation = transactionalCreation
}
}
}
extension OpenOptions.Write {
@_spi(Testing)
public var permissionsForRegularFile: FilePermissions? {
if let newFile = self.newFile {
return newFile.permissions ?? .defaultsForRegularFile
} else {
return nil
}
}
var descriptorOptions: FileDescriptor.OpenOptions {
var options = FileDescriptor.OpenOptions()
if !self.followSymbolicLinks {
options.insert(.noFollow)
}
if self.closeOnExec {
options.insert(.closeOnExec)
}
if self.newFile != nil {
options.insert(.create)
}
switch self.existingFile {
case .none:
options.insert(.exclusiveCreate)
case .open:
()
case .truncate:
options.insert(.truncate)
}
return options
}
}
extension OpenOptions.Read {
var descriptorOptions: FileDescriptor.OpenOptions {
var options = FileDescriptor.OpenOptions()
if !self.followSymbolicLinks {
options.insert(.noFollow)
}
if self.closeOnExec {
options.insert(.closeOnExec)
}
return options
}
}
extension OpenOptions.Directory {
var descriptorOptions: FileDescriptor.OpenOptions {
var options = FileDescriptor.OpenOptions([.directory])
if !self.followSymbolicLinks {
options.insert(.noFollow)
}
if self.closeOnExec {
options.insert(.closeOnExec)
}
return options
}
}
extension FileDescriptor.OpenOptions {
public init(_ options: OpenOptions.Read) {
self = options.descriptorOptions
}
public init(_ options: OpenOptions.Write) {
self = options.descriptorOptions
}
public init(_ options: OpenOptions.Directory) {
self = options.descriptorOptions
}
}
extension FilePermissions {
/// Default permissions for regular files; owner read-write, group read, other read.
internal static let defaultsForRegularFile: FilePermissions = [
.ownerReadWrite,
.groupRead,
.otherRead,
]
/// Default permissions for directories; owner read-write-execute, group read-execute, other
/// read-execute.
internal static let defaultsForDirectory: FilePermissions = [
.ownerReadWriteExecute,
.groupReadExecute,
.otherReadExecute,
]
}
#endif
|