arq_restore/Node.h
2012-01-23 11:03:21 -05:00

89 lines
2.7 KiB
Objective-C

//
// Node.h
// s3print
//
// Created by Stefan Reitshamer on 4/10/09.
// Copyright 2009 PhotoMinds LLC. All rights reserved.
//
#include <sys/stat.h>
#import <Cocoa/Cocoa.h>
@protocol InputStream;
@class BlobKey;
@interface Node : NSObject {
int treeVersion;
BOOL isTree;
unsigned long long uncompressedDataSize;
BOOL dataAreCompressed;
NSMutableArray *dataBlobKeys;
BlobKey *thumbnailBlobKey;
BlobKey *previewBlobKey;
BOOL xattrsAreCompressed;
BlobKey *xattrsBlobKey;
unsigned long long xattrsSize;
BOOL aclIsCompressed;
BlobKey *aclBlobKey;
int uid;
int gid;
int mode;
int64_t mtime_sec;
int64_t mtime_nsec;
long long flags;
int finderFlags;
int extendedFinderFlags;
NSString *finderFileType;
NSString *finderFileCreator;
BOOL isFileExtensionHidden;
int st_dev;
int st_ino;
uint32_t st_nlink; // in struct stat, it's only 16 bits.
int st_rdev;
int64_t ctime_sec;
int64_t ctime_nsec;
int64_t createTime_sec;
int64_t createTime_nsec;
int64_t st_blocks;
uint32_t st_blksize;
}
- (id)initWithInputStream:(id <InputStream>)is treeVersion:(int)theTreeVersion error:(NSError **)error;
- (void)writeToData:(NSMutableData *)data;
- (BOOL)dataMatchesStatData:(struct stat *)st;
@property(readonly) BOOL isTree;
@property(readonly,copy) BlobKey *treeBlobKey;
@property(readonly) BOOL dataAreCompressed;
@property(readonly,copy) NSArray *dataBlobKeys;
@property(readonly) unsigned long long uncompressedDataSize;
@property(readonly,copy) BlobKey *thumbnailBlobKey;
@property(readonly,copy) BlobKey *previewBlobKey;
@property(readonly) BOOL xattrsAreCompressed;
@property(readonly,copy) BlobKey *xattrsBlobKey;
@property(readonly) unsigned long long xattrsSize;
@property(readonly) BOOL aclIsCompressed;
@property(readonly,copy) BlobKey *aclBlobKey;
@property(readonly) int uid;
@property(readonly) int gid;
@property(readonly) int mode;
@property(readonly) long long mtime_sec;
@property(readonly) long long mtime_nsec;
@property(readonly) long long flags;
@property(readonly) int finderFlags;
@property(readonly) int extendedFinderFlags;
@property(readonly,copy) NSString *finderFileType;
@property(readonly,copy) NSString *finderFileCreator;
@property(readonly) BOOL isFileExtensionHidden;
@property(readonly) int st_dev;
@property(readonly) int treeVersion;
@property(readonly) int st_rdev;
@property(readonly) long long ctime_sec;
@property(readonly) long long ctime_nsec;
@property(readonly) long long createTime_sec;
@property(readonly) long long createTime_nsec;
@property(readonly) uint32_t st_nlink;
@property(readonly) int st_ino;
@property(readonly) int64_t st_blocks;
@property(readonly) uint32_t st_blksize;
- (uint64_t)sizeOnDisk;
@end