public
Description: Utilities and categories for Objective-C
Homepage:
Clone URL: git://github.com/gabriel/gh-kit.git
gabriel (author)
Mon Oct 12 17:03:25 -0700 2009
commit  488cee3aa8f928c22bb3ea6dbbf096e3022f715a
tree    e7f349947754e264a3a2c79005178d5be3898a2d
parent  66555e08bdc5fce92eaa91f41f421d8ba3addfc0
gh-kit / Classes / GHNSObject+Invocation.h
100644 174 lines (142 sloc) 5.498 kb
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
//
// GHNSObject+Invocation.h
// GHKit
//
// Created by Gabriel Handford on 1/18/09.
// Copyright 2009. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
//
 
#import "GHNSInvocation+Utils.h"
#import "GHNSInvocationProxy.h"
 
/*!
Adds performSelector methods that take a nil-terminated variable argument list,
for when you need to pass more arguments to performSelector.
*/
@interface NSObject (GHInvocation_GHKIT)
 
/*!
Perform selector if responds.
@param selector
@result nil if we don't respond to the selector, otherwise the selector result
*/
- (id)gh_performIfRespondsToSelector:(SEL)selector;
 
/*!
Perform selector if responds with multiple arguments.
@param selector
@param withObjects nil terminated variable argument list
@result nil if we don't respond to the selector, otherwise the selector result
*/
- (id)gh_performIfRespondsToSelector:(SEL)selector withObjects:object, ...;
 
/*!
Invoke selector with arguments.
@param selector
@param withObjects nil terminated variable argument list
*/
- (id)gh_performSelector:(SEL)selector withObjects:object, ...;
 
- (id)gh_performSelector:(SEL)selector afterDelay:(NSTimeInterval)delay withObjects:object, ...;
 
/*!
Invoke selector with arguments on main thread.
Does not wait until selector is finished.
@param selector
@param withObjects nil terminated variable argument list
*/
- (void)gh_performSelectorOnMainThread:(SEL)selector withObjects:object, ...;
 
/*!
Invoke selector with arguments on main thread.
@param selector
@param waitUntilDone Whether to join on selector and wait for it to finish.
@param withObjects nil terminated variable argument list
*/
- (void)gh_performSelectorOnMainThread:(SEL)selector waitUntilDone:(BOOL)waitUntilDone withObjects:object, ...;
 
 
- (void)gh_performSelector:(SEL)selector onMainThread:(BOOL)onMainThread waitUntilDone:(BOOL)waitUntilDone withObjects:object, ...;
 
- (void)gh_performSelector:(SEL)selector onMainThread:(BOOL)onMainThread waitUntilDone:(BOOL)waitUntilDone arguments:(NSArray *)arguments;
 
- (void)gh_performSelector:(SEL)selector onMainThread:(BOOL)onMainThread waitUntilDone:(BOOL)waitUntilDone
afterDelay:(NSTimeInterval)delay arguments:(NSArray *)arguments;
 
 
#pragma mark Invocation proxies
 
/*!
Proxy for invoking on main thread (without waiting until done).
@result Proxy
*/
- (id)gh_proxyOnMainThread;
 
/*!
Proxy for invoking on main thread.
@param waitUntilDone Whether to block until call is finished
@result Proxy
*/
- (id)gh_proxyOnMainThread:(BOOL)waitUntilDone;
 
/*!
Proxy on thread (without blocking until done).
@param thread Thread to invoke on
@result Proxy
*/
- (id)gh_proxyOnThread:(NSThread *)thread;
 
/*!
Proxy for invoking on thread.
@param thread Thread to invoke on
@param waitUntilDone Whether to block until call is finished
@result Proxy
*/
- (id)gh_proxyOnThread:(NSThread *)thread waitUntilDone:(BOOL)waitUntilDone;
 
/*!
Proxy for invoking after delay.
@code
NSMutableArray array = [NSMutableArray array];
// Inserts object after 2 second delay
[[array gh_proxyAfterDelay:2.0] insertObject:@"foo" atIndex:0];
@endcode
@param delay Time (in seconds) to wait before calling.
@result proxy
*/
- (id)gh_proxyAfterDelay:(NSTimeInterval)delay;
 
/*!
Proxy for selector.
For calling a selector with any type and number of arguments.
Overriding the selector only make sense when using the "argument proxy".
For example,
SEL selector = @selector(bar:baz:);
[foo gh_argumentProxy:selector] arg:10 arg:YES];
Will call [foo bar:10 baz:YES]; (and not arg:arg: selector which doesn't exist).
This allows you to call a selector variable with primitive and multi arguments,
whereas before you would have to use a manually constructed NSInvocation (or
performSelector if you had only object arguments).
@param selector
@result proxy
*/
- (id)gh_argumentProxy:(SEL)selector;
 
/*!
Proxy for selector on main thread.
*/
- (id)gh_argumentProxy:(SEL)selector onMainThread:(BOOL)onMainThread waitUntilDone:(BOOL)waitUntilDone;
 
/*!
Special logging proxy; In progress.
*/
- (id)gh_logProxy;
 
/*!
Proxy call on new thread.
Calls are responsible for setting up their own NSAutoreleasePool's.
@param target Callback target
@param action Callback action
@param context Callback argument
@result proxy
*/
- (id)gh_proxyDetachThreadWithCallback:(id)target action:(SEL)action context:(id)context;
 
@end