forked from fuse4x/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GMAppleDouble.h
167 lines (150 loc) · 5.56 KB
/
GMAppleDouble.h
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
// ================================================================
// Copyright (c) 2007, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// ================================================================
//
// GMAppleDouble.h
// Fuse4X
//
// Created by ted on 12/29/07.
//
/*!
* @header GMAppleDouble
*
* A utility class to construct an AppleDouble (._) file.
*
* AppleDouble files contain information about a corresponding file and are
* typically used on file systems that do not support extended attributes.
*/
#import <Foundation/Foundation.h>
#define GM_EXPORT __attribute__((visibility("default")))
/*!
* <pre>
* Based on "AppleSingle/AppleDouble Formats for Foreign Files Developer's Note"
*
* Notes:
* DoubleEntryFileDatesInfo
* File creation, modification, backup, and access times as number of seconds
* before or after 12:00 AM Jan 1 2000 GMT as SInt32.
* DoubleEntryFinderInfo
* 16 bytes of FinderInfo followed by 16 bytes of extended FinderInfo.
* New FinderInfo should be zero'd out. For a directory, when the Finder
* encounters an entry with the init'd bit cleared, it will initialize the
* frView field of the to a value indicating how the contents of the
* directory should be shown. Recommend to set frView to value of 256.
* DoubleEntryMacFileInfo
* This is a 32 bit flag that stores locked (bit 0) and protected (bit 1).
* </pre>
*/
typedef enum {
DoubleEntryInvalid = 0,
DoubleEntryDataFork = 1,
DoubleEntryResourceFork = 2,
DoubleEntryRealName = 3,
DoubleEntryComment = 4,
DoubleEntryBlackAndWhiteIcon = 5,
DoubleEntryColorIcon = 6,
DoubleEntryFileDatesInfo = 8, // See notes
DoubleEntryFinderInfo = 9, // See notes
DoubleEntryMacFileInfo = 10, // See notes
DoubleEntryProDosFileInfo = 11,
DoubleEntryMSDosFileinfo = 12,
DoubleEntryShortName = 13,
DoubleEntryAFPFileInfo = 14,
DoubleEntryDirectoryID = 15,
} GMAppleDoubleEntryID;
/*!
* @class
* @discussion This class represents a single entry in an AppleDouble file.
*/
GM_EXPORT @interface GMAppleDoubleEntry : NSObject {
@private
GMAppleDoubleEntryID entryID_;
NSData* data_; // Format depends on entryID_
}
/*!
* @abstract Initializes an AppleDouble entry with ID and data.
* @param entryID A valid entry identifier
* @param data Raw data for the entry
*/
- (id)initWithEntryID:(GMAppleDoubleEntryID)entryID data:(NSData *)data;
/*! @abstract The entry ID */
- (GMAppleDoubleEntryID)entryID;
/*! @abstract The entry data */
- (NSData *)data;
@end
/*!
* @class
* @discussion This class can be used to construct raw AppleDouble data.
*/
GM_EXPORT @interface GMAppleDouble : NSObject {
@private
NSMutableArray* entries_;
}
/*! @abstract An autoreleased empty GMAppleDouble file */
+ (GMAppleDouble *)appleDouble;
/*!
* @abstract An autoreleased GMAppleDouble file.
* @discussion The GMAppleDouble is pre-filled with entries from the raw
* AppleDouble file data.
* @param data Raw AppleDouble file data.
*/
+ (GMAppleDouble *)appleDoubleWithData:(NSData *)data;
/*!
* @abstract Adds an entry to the AppleDouble file.
* @param entry The entry to add
*/
- (void)addEntry:(GMAppleDoubleEntry *)entry;
/*!
* @abstract Adds an entry to the AppleDouble file with ID and data.
* @param entryID The ID of the entry to add
* @param data The raw data for the entry to add (retained)
*/
- (void)addEntryWithID:(GMAppleDoubleEntryID)entryID data:(NSData *)data;
/*!
* @abstract Adds entries based on the provided raw AppleDouble file data.
* @discussion This will attempt to parse the given data as an AppleDouble file
* and add all entries found.
* @param data Raw AppleDouble file data
* @param data The raw data for the entry to add (retained)
* @result YES if the provided data was parsed correctly.
*/
- (BOOL)addEntriesFromAppleDoubleData:(NSData *)data;
/*!
* @abstract The set of GMAppleDoubleEntry present in this GMAppleDouble.
* @result An array of GMAppleDoubleEntry.
*/
- (NSArray *)entries;
/*!
* @abstract Constructs raw data for the AppleDouble file.
* @result The raw data for an AppleDouble file represented by this GMAppleDouble.
*/
- (NSData *)data;
@end
#undef GM_EXPORT