File: NSFileVersion.m

package info (click to toggle)
gnustep-base 1.31.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 26,580 kB
  • sloc: objc: 239,446; ansic: 36,519; cpp: 122; sh: 112; makefile: 100; xml: 32
file content (252 lines) | stat: -rw-r--r-- 5,851 bytes parent folder | download | duplicates (2)
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
/* Definition of class NSFileVersion
   Copyright (C) 2019 Free Software Foundation, Inc.
   
   Implemented by: Gregory Casamento <greg.casamento@gmail.com>
   Date: Sep 2019
   Original File by: Daniel Ferreira

   This file is part of the GNUstep Library.
   
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.
   
   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.
   
   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free
   Software Foundation, Inc., 31 Milk Street #960789 Boston, MA 02196 USA.
*/

#import "Foundation/NSFileVersion.h"
#import "Foundation/NSArray.h"
#import "Foundation/NSDictionary.h"
#import "Foundation/NSDate.h"
#import "Foundation/NSError.h"
#import "Foundation/NSString.h"
#import "Foundation/NSURL.h"
#import "Foundation/NSPersonNameComponents.h"
#import "Foundation/NSFileManager.h"
#import "Foundation/NSData.h"

@interface NSFileVersion (Private)
- (void) _setURL: (NSURL *)u;
- (void) _setContentsURL: (NSURL *)u;
- (void) _setConflict: (BOOL)f;
- (void) _setLocalizedName: (NSString *)name;
- (void) _initWithURL: (NSURL *)url;
@end

@implementation NSFileVersion (Private)
- (void) _setURL: (NSURL *)u
{
  ASSIGNCOPY(_fileURL, u);
}

- (void) _setContentsURL: (NSURL *)u
{
  ASSIGNCOPY(_contentsURL, u);
}

- (void) _setConflict: (BOOL)f
{
  _conflict = f;
}

- (void) _setLocalizedName: (NSString *)name
{
  ASSIGNCOPY(_localizedName, name);
}

- (void) _initWithURL: (NSURL *)url
{
  [self _setURL: url];
  [self _setContentsURL: url];
  [self _setConflict: NO];
  [self _setLocalizedName: [url path]];
  [self setDiscardable: NO];
  [self setResolved: YES];
}
@end

@implementation NSFileVersion

// Initializers
+ (NSFileVersion *)currentVersionOfItemAtURL: (NSURL *)url
{
  NSFileVersion *fileVersion = AUTORELEASE([[NSFileVersion alloc] init]);
  if (fileVersion != nil)
    {
      [fileVersion _initWithURL: url];
    }
  return fileVersion;
}

+ (NSArray *)otherVersionsOfItemAtURL: (NSURL *)url
{
  NSArray *array = AUTORELEASE([[NSArray alloc] init]);
  return array; 
}

+ (NSFileVersion *)versionOfItemAtURL: (NSURL *)url
              forPersistentIdentifier: (id)persistentIdentifier
{
  return [NSFileVersion currentVersionOfItemAtURL: url];
}

+ (NSURL *)temporaryDirectoryURLForNewVersionOfItemAtURL: (NSURL *)url
{
  return nil;
}

+ (NSFileVersion *)addVersionOfItemAtURL: (NSURL *)url 
                       withContentsOfURL: (NSURL *)contentsURL 
                                 options: (NSFileVersionAddingOptions)options 
                                   error: (NSError **)outError
{
  NSFileVersion *fileVersion = AUTORELEASE([[NSFileVersion alloc] init]);
  if (fileVersion != nil)
    {
      NSData *data = [NSData dataWithContentsOfURL: contentsURL];
      NSFileManager *mgr = [NSFileManager defaultManager];
      
      [fileVersion _initWithURL: url];

      // Create new file...
      [mgr createFileAtPath: [url path]
                   contents: data
                 attributes: nil];
    } 
  return fileVersion;
}

+ (NSArray *)unresolvedConflictVersionsOfItemAtURL: (NSURL *)url
{
  return nil;
}

+ (BOOL)removeOtherVersionsOfItemAtURL: (NSURL *)url 
                                 error: (NSError **)outError
{
  NSFileManager *mgr = [NSFileManager defaultManager];
  return [mgr removeItemAtPath: [url path] error: outError];
}

// Instance methods...
- (instancetype) init
{
  self = [super init];
  if(self != nil)
    {
      _isDiscardable = NO;
      _isResolved = NO;
      _modificationDate = [[NSDate alloc] init];
      _fileURL = nil;
      _contentsURL = nil;
      _persistentIdentifier = nil;
      _nonLocalVersion = nil;
      _hasThumbnail = NO;
      _hasLocalContents = YES;
      _conflict = NO;
      _localizedName = nil;
      _localizedNameOfSavingComputer = nil;      
    }
  return self;
}

- (BOOL) isDiscardable
{
  return _isDiscardable;
}

- (void) setDiscardable: (BOOL)flag
{
  _isDiscardable = flag;
}

- (BOOL) isResolved
{
  return _isResolved;
}

- (void) setResolved: (BOOL)flag
{
  _isResolved = flag;
}

- (NSDate *) modificationDate
{
  return _modificationDate;
}

- (NSPersonNameComponents *) originatorNameComponents
{
  return nil;
}

- (NSString *) localizedName
{
  return _localizedName;
}

- (NSString *) localizedNameOfSavingComputer
{
  return _localizedNameOfSavingComputer;
}

- (BOOL) hasLocalContents
{
  return _hasLocalContents;
}

- (BOOL) hasThumbnail
{
  return _hasThumbnail;
}

- (NSURL *) URL
{
  return _fileURL;
}

- (BOOL) conflict
{
  return _conflict;
}

- (id<NSCoding>) persistentIdentifier
{
  return _persistentIdentifier;
}

- (BOOL) removeAndReturnError: (NSError **)outError
{
  NSURL *url = [self URL];
  NSFileManager *mgr = [NSFileManager defaultManager];
  return [mgr removeItemAtPath: [url path] error: outError];
}

- (NSURL *) replaceItemAtURL: (NSURL *)url
                     options: (NSFileVersionReplacingOptions)options
                       error: (NSError **)error
{
  NSFileManager *mgr = [NSFileManager defaultManager];
  if([mgr removeItemAtPath: [url path] error: error])
    {
      NSData *data = [NSData dataWithContentsOfURL: _contentsURL];
      NSFileManager *mgr = [NSFileManager defaultManager];
      
      // Create new file...
      [mgr createFileAtPath: [url path]
                   contents: data
                 attributes: nil];

    }  
  return url;
}

@end