@@ -12,54 +12,25 @@ * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFTarArchiveEntry.h" +#import "OFMutableArchiveEntry.h" OF_ASSUME_NONNULL_BEGIN /** * @class OFMutableTarArchiveEntry \ * OFMutableTarArchiveEntry.h ObjFW/OFMutableTarArchiveEntry.h * * @brief A class which represents a mutable entry of a tar archive. */ -@interface OFMutableTarArchiveEntry: OFTarArchiveEntry +@interface OFMutableTarArchiveEntry: OFTarArchiveEntry { OF_RESERVE_IVARS(OFMutableTarArchiveEntry, 4) } -/** - * @brief The file name of the entry. - */ -@property (readwrite, copy, nonatomic) OFString *fileName; - -/** - * @brief The mode of the entry. - */ -@property (readwrite, nonatomic) unsigned long mode; - -/** - * @brief The UID of the owner. - */ -@property (readwrite, nonatomic) unsigned long UID; - -/** - * @brief The GID of the group. - */ -@property (readwrite, nonatomic) unsigned long GID; - -/** - * @brief The size of the file. - */ -@property (readwrite, nonatomic) unsigned long long size; - -/** - * @brief The date of the last modification of the file. - */ -@property (readwrite, retain, nonatomic) OFDate *modificationDate; - /** * @brief The type of the archive entry. * * See @ref OFTarArchiveEntryType. */ @@ -69,20 +40,10 @@ * @brief The file name of the target (for a hard link or symbolic link). */ @property OF_NULLABLE_PROPERTY (readwrite, copy, nonatomic) OFString *targetFileName; -/** - * @brief The owner of the file. - */ -@property OF_NULLABLE_PROPERTY (readwrite, copy, nonatomic) OFString *owner; - -/** - * @brief The group of the file. - */ -@property OF_NULLABLE_PROPERTY (readwrite, copy, nonatomic) OFString *group; - /** * @brief The device major (if the file is a device). */ @property (readwrite, nonatomic) unsigned long deviceMajor; @@ -89,13 +50,30 @@ /** * @brief The device major (if the file is a device). */ @property (readwrite, nonatomic) unsigned long deviceMinor; +/** + * @brief Creates a new OFMutableTarArchiveEntry with the specified file name. + * + * @param fileName The file name for the OFTarArchiveEntry + * @return A new, autoreleased OFTarArchiveEntry + */ ++ (instancetype)entryWithFileName: (OFString *)fileName; + +/** + * @brief Initializes an already allocated OFMutableTarArchiveEntry with the + * specified file name. + * + * @param fileName The file name for the OFTarArchiveEntry + * @return An initialized OFTarArchiveEntry + */ +- (instancetype)initWithFileName: (OFString *)fileName; + /** * @brief Converts the OFMutableTarArchiveEntry to an immutable * OFTarArchiveEntry. */ - (void)makeImmutable; @end OF_ASSUME_NONNULL_END