~andymatuschak/sparkle/main

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
//
//  SUUnarchiver_Private.m
//  Sparkle
//
//  Created by Andy Matuschak on 6/17/08.
//  Copyright 2008 Andy Matuschak. All rights reserved.
//

#import "SUUnarchiver_Private.h"

@implementation SUUnarchiver (Private)

- _initWithPath:(NSString *)path
{
	if ((self = [super init]))
		archivePath = [path copy];
	return self;
}

- (void)dealloc
{
	[archivePath release];
	[super dealloc];
}

+ (BOOL)_canUnarchivePath:(NSString *)path
{
	return NO;
}

- (void)_notifyDelegateOfExtractedLength:(long)length
{
	if ([delegate respondsToSelector:@selector(unarchiver:extractedLength:)])
		[delegate unarchiver:self extractedLength:length];
}

- (void)_notifyDelegateOfSuccess
{
	if ([delegate respondsToSelector:@selector(unarchiverDidFinish:)])
		[delegate performSelector:@selector(unarchiverDidFinish:) withObject:self];
}

- (void)_notifyDelegateOfFailure
{
	if ([delegate respondsToSelector:@selector(unarchiverDidFail:)])
		[delegate performSelector:@selector(unarchiverDidFail:) withObject:self];
}

static NSMutableArray *__unarchiverImplementations;

+ (void)_registerImplementation:(Class)implementation
{
	if (!__unarchiverImplementations)
		__unarchiverImplementations = [[NSMutableArray alloc] init];
	[__unarchiverImplementations addObject:implementation];
}

+ (NSArray *)_unarchiverImplementations
{
	return [NSArray arrayWithArray:__unarchiverImplementations];
}

@end