This repository has been archived by the owner on Jul 6, 2021. It is now read-only.
forked from nevali/opencflite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCFRunLoopPriv.h
387 lines (277 loc) · 9.5 KB
/
CFRunLoopPriv.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
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/*
* Copyright (c) 2008-2009 Brent Fulgham <[email protected]>. All rights reserved.
*
* This source code is a modified version of the CoreFoundation sources released by Apple Inc. under
* the terms of the APSL version 2.0 (see below).
*
* For information about changes from the original Apple source release can be found by reviewing the
* source control system for the project at https://sourceforge.net/svn/?group_id=246198.
*
* The original license information is as follows:
*
* Copyright (c) 2008 Apple Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* This file contains Original Code and/or Modifications of Original Code
* as defined in and that are subject to the Apple Public Source License
* Version 2.0 (the 'License'). You may not use this file except in
* compliance with the License. Please obtain a copy of the License at
* http://www.opensource.apple.com/apsl/ and read it before using this
* file.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
* Please see the License for the specific language governing rights and
* limitations under the License.
*
* @APPLE_LICENSE_HEADER_END@
*/
/* CFRunLoopPriv.h
Copyright (c) 2006-2007, Apple Inc. All rights reserved.
*/
#if (DEPLOYMENT_TARGET_MACOSX || 0)
/* -------- -------- -------- -------- -------- -------- -------- -------- */
#import "CFObject.h"
#include <CoreFoundation/CFRunLoop.h>
#include <CoreFoundation/CFMachPort.h>
#include <CoreFoundation/CFSocket.h>
#include <CoreFoundation/CFArray.h>
#include <CoreFoundation/CFBag.h>
#include <mach/mach.h>
#include <sys/event.h>
#include <pthread.h>
@class CFRunLoopSourceSet;
typedef CFRunLoopSourceContext CFRunLoopSourceContext0;
typedef CFMachPortContext CFRunLoopMachPortContext;
typedef CFSocketContext CFRunLoopSocketContext;
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopSource : CFObject {
uint8_t _cfruntime_[8]; // large enough for 32-bit or 64-bit
int _kq;
mach_port_t _portset;
mach_port_t _port;
CFIndex _order;
uint8_t _invalid;
uint8_t _firing;
uint8_t _ownsPort;
uint8_t _async;
}
- (int)kqueue;
- (mach_port_t)machPortSet;
- (mach_port_t)machPort;
- (void)setOrder:(CFIndex)o;
- (CFIndex)order;
- (void)setAsyncStrategy:(uint8_t)s;
- (uint8_t)asyncStrategy;
- (void)perform:(mach_msg_header_t *)msg;
- (void)invalidate;
- (Boolean)isValid;
- (void)noteAddedToSourceSet:(CFRunLoopSourceSet *)ss;
- (void)noteRemovedFromSourceSet:(CFRunLoopSourceSet *)ss;
- (CFStringRef)copyPartialDebugDescription; // subclasses override
- (CFStringRef)copyDebugDescription;
@end
@interface CFRunLoopVersion0SourceCFRef : CFRunLoopSource {
CFRunLoopSourceContext0 _context;
}
- (Boolean)setContext:(CFRunLoopSourceContext0)c;
- (CFRunLoopSourceContext0)context;
- (void)markReady;
- (void)handle;
- (void)scheduleInRunLoop:(CFRunLoopRef)rl mode:(CFStringRef)n;
- (void)cancelFromRunLoop:(CFRunLoopRef)rl mode:(CFStringRef)n;
@end
@interface CFRunLoopVersion1SourceCFRef : CFRunLoopSource {
CFRunLoopSourceContext1 _context;
}
- (Boolean)setContext:(CFRunLoopSourceContext1)c;
- (CFRunLoopSourceContext1)context;
- (void)markReady;
- (void)handle:(mach_msg_header_t *)msg;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopTimerSource : CFRunLoopSource {
CFAbsoluteTime _fireAT;
CFTimeInterval _interval;
}
- (void)setFireTime:(CFAbsoluteTime)at;
- (CFAbsoluteTime)fireTime;
- (void)setInterval:(CFTimeInterval)i;
- (CFTimeInterval)interval;
- (void)handle;
@end
@interface CFRunLoopTimerSourceCFRef : CFRunLoopTimerSource {
void *_function;
CFRunLoopTimerContext _context;
}
- (void)setFunction:(void *)f;
- (void *)function;
- (Boolean)setContext:(CFRunLoopTimerContext)c;
- (CFRunLoopTimerContext)context;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopMachPortSource : CFRunLoopSource {
mach_port_t _notifyPort;
mach_port_t _oldNotifyPort;
}
+ (id)newWithPort:(mach_port_t)p;
- (void)handle:(mach_msg_header_t *)msg;
@end
@interface CFRunLoopMachPortSourceCFRef : CFRunLoopMachPortSource {
void *_function;
CFRunLoopMachPortContext _context;
void *_invalidation;
}
- (void)setFunction:(void *)f;
- (void *)function;
- (Boolean)setContext:(CFRunLoopMachPortContext)c;
- (CFRunLoopMachPortContext)context;
- (void)setInvalidationFunction:(void *)f;
- (void *)invalidationFunction;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopKEventSource : CFRunLoopSource {
struct kevent _filter;
}
- (Boolean)setFilter:(struct kevent)kev;
- (struct kevent)filter;
- (void)handle:(struct kevent *)kev;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopSignalSource : CFRunLoopSource {
int _signal;
}
- (Boolean)setSignal:(int)sig;
- (int)signal;
- (long)poll;
- (void)handle:(long)n;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopProcessDeathSource : CFRunLoopSource {
int _pid;
}
- (Boolean)setProcessID:(int)pid;
- (int)processID;
- (void)handle;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopSocketSource : CFRunLoopSource {
int _socket;
uint8_t _ownsSocket;
uint8_t _enabledR;
uint8_t _enabledW;
}
+ (id)newWithSocket:(int)s;
- (int)socket;
- (CFDataRef)copyLocalAddress;
- (CFDataRef)copyRemoteAddress;
- (void)setReadEventsEnabled:(Boolean)b;
- (Boolean)readEventsEnabled;
- (void)setWriteEventsEnabled:(Boolean)b;
- (Boolean)writeEventsEnabled;
- (void)handleReadability:(CFIndex)amt endOfFile:(Boolean)b;
- (void)performRead:(struct kevent *)kev;
- (void)handleWritability:(CFIndex)amt endOfFile:(Boolean)b;
- (void)performWrite:(struct kevent *)kev;
@end
@interface CFRunLoopSocketSourceCFRef : CFRunLoopSocketSource {
void *_function;
CFRunLoopSocketContext _context;
uint8_t _callbacks;
uint8_t _flags;
uint8_t _disabled;
}
- (void)setFunction:(void *)f;
- (void *)function;
- (Boolean)setContext:(CFRunLoopSocketContext)c;
- (CFRunLoopSocketContext)context;
- (void)setCallBackTypes:(uint8_t)f;
- (uint8_t)callBackTypes;
- (void)setFlags:(uint8_t)f;
- (uint8_t)flags;
- (void)setDisabledFlags:(uint8_t)f;
- (uint8_t)disabledFlags;
- (Boolean)handleAcceptError:(int)err;
- (Boolean)handleReadError:(int)err;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopObserver : CFRunLoopSource {
}
- (void)observeEntry:(CFRunLoopSourceSet *)ss;
- (void)observeBeforeWaiting:(CFRunLoopSourceSet *)ss;
- (void)observeAfterWaiting:(CFRunLoopSourceSet *)ss;
- (void)observeExit:(CFRunLoopSourceSet *)ss;
@end
@interface CFRunLoopObserverCFRef : CFRunLoopObserver {
void *_function;
CFRunLoopObserverContext _context;
CFOptionFlags _activities;
uint8_t _oneshot;
}
- (void)setFunction:(void *)f;
- (void *)function;
- (Boolean)setContext:(CFRunLoopObserverContext)c;
- (CFRunLoopObserverContext)context;
- (void)setActivities:(CFOptionFlags)a;
- (CFOptionFlags)activities;
- (void)setOneshot:(Boolean)b;
- (Boolean)oneshot;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopSourceSet : CFRunLoopObserver {
CFMutableBagRef _sources;
CFStringRef _name;
pthread_t _thread;
CFMutableArrayRef _observers[4];
CFRunLoopTimerSource *_timeoutTimer;
CFRunLoopMachPortSource *_wakeupPort;
uint8_t _stopped;
uint8_t _waiting;
}
+ (void)removeSourceFromAllSets:(CFRunLoopSource *)src;
- (void)setName:(CFStringRef)n;
- (CFStringRef)name;
- (void)setAffineThread:(pthread_t)t;
- (pthread_t)affineThread;
- (Boolean)containsObserver:(CFRunLoopObserver *)o;
- (void)addObserver:(CFRunLoopObserver *)o activities:(CFRunLoopActivity)a;
- (void)removeObserver:(CFRunLoopObserver *)o activities:(CFRunLoopActivity)a;
- (Boolean)containsSource:(CFRunLoopSource *)src;
- (void)addSource:(CFRunLoopSource *)src;
- (void)removeSource:(CFRunLoopSource *)src;
- (void)forEachSource:(Boolean (*)(CFRunLoopSource *, void *))f context:(void *)c;
- (void)stop;
- (void)wakeup;
- (Boolean)isWaiting;
- (Boolean)isEmpty;
- (Boolean)hasInputAvailable;
- (int32_t)serviceUntil:(CFAbsoluteTime)at handleOne:(Boolean)handleOne;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
@interface CFRunLoopCFRef : CFObject {
uint8_t _cfruntime_[8]; // large enough for 32-bit or 64-bit
pthread_t _thread;
void *_counterpart;
CFMutableArrayRef _sourceSets;
CFRunLoopSourceSet *_currentSet;
uint8_t _invalid;
}
- (void)setAffineThread:(pthread_t)t;
- (pthread_t)affineThread;
- (void)setCounterpart:(void *)c;
- (void *)counterpart;
- (void)invalidate;
- (Boolean)isValid;
- (CFArrayRef)copySourceSets;
- (void)setCurrentSourceSet:(CFRunLoopSourceSet *)ss;
- (CFRunLoopSourceSet *)currentSourceSet;
- (CFRunLoopSourceSet *)lookupSourceSetWithName:(CFStringRef)n;
- (CFRunLoopSourceSet *)lookupOrCreateSourceSetWithName:(CFStringRef)n;
- (CFStringRef)copyDebugDescription;
@end
/* -------- -------- -------- -------- -------- -------- -------- -------- */
#endif