mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
39 lines
1.1 KiB
Swift
39 lines
1.1 KiB
Swift
// Copyright (c) 2026 Timofey Solomko
|
|
// Licensed under MIT License
|
|
//
|
|
// See LICENSE for license information
|
|
|
|
import Foundation
|
|
|
|
/// Represents an entry from the TAR container.
|
|
public struct TarEntry: ContainerEntry {
|
|
|
|
public var info: TarEntryInfo
|
|
|
|
/**
|
|
Entry's data (`nil` if entry is a directory or data isn't available).
|
|
|
|
- Note: Accessing setter of this property causes `info.size` to be updated as well so it remains equal to
|
|
`data.count`. If `data` is set to be `nil` then `info.size` is set to zero.
|
|
*/
|
|
public var data: Data? {
|
|
didSet {
|
|
self.info.size = self.data?.count ?? 0
|
|
}
|
|
}
|
|
|
|
/**
|
|
Initializes the entry with its info and data. The stored `info.size` will also be updated to be equal to
|
|
`data.count`. If `data` is `nil` then `info.size` will be set to zero.
|
|
|
|
- Parameter info: Information about entry.
|
|
- Parameter data: Entry's data; `nil` if entry is a directory or data isn't available.
|
|
*/
|
|
public init(info: TarEntryInfo, data: Data?) {
|
|
self.info = info
|
|
self.info.size = data?.count ?? 0
|
|
self.data = data
|
|
}
|
|
|
|
}
|