blob: 5f546398067cbf69d969e63cccade66c97dad671 (
plain) (
blame)
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
|
//
// LaunchArg.m
// Pcsxr
//
// Created by C.W. Betts on 7/8/13.
//
//
#import "LaunchArg.h"
@interface LaunchArg ()
@property (readwrite) LaunchArgOrder launchOrder;
@property (readwrite, copy, nonatomic) dispatch_block_t theBlock;
@property (readwrite, arcretain) NSString *argument;
@end
@implementation LaunchArg
@synthesize argument = _argument;
@synthesize launchOrder = _launchOrder;
@synthesize theBlock = _theBlock;
- (void)setTheBlock:(dispatch_block_t)theBlock
{
#if __has_feature(objc_arc)
_theBlock = [theBlock copy];
#else
if (_theBlock == theBlock) {
return;
}
dispatch_block_t tmpBlock = _theBlock;
_theBlock = [theBlock copy];
[tmpBlock release];
#endif
}
- (id)initWithLaunchOrder:(LaunchArgOrder)order argument:(NSString*)arg block:(dispatch_block_t)block
{
return [self initWithLaunchOrder:order block:block argument:arg];
}
- (id)initWithLaunchOrder:(LaunchArgOrder)order block:(dispatch_block_t)block argument:(NSString*)arg
{
if (self = [super init]) {
self.launchOrder = order;
self.theBlock = block;
self.argument = arg;
}
return self;
}
- (void)addToDictionary:(NSMutableDictionary*)toAdd
{
[toAdd setObject:self forKey:self.argument];
}
- (NSString*)description
{
return [NSString stringWithFormat:@"Arg: %@, order: %u, block addr: %p", _argument, _launchOrder, _theBlock];
}
#if !__has_feature(objc_arc)
- (void)dealloc
{
self.theBlock = nil;
self.argument = nil;
[super dealloc];
}
#endif
@end
|