2 * Copyright (c) 2014 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
25 Copyright (c) 1998-2013, Apple Inc. All rights reserved.
28 #if !defined(__COREFOUNDATION_CFMESSAGEPORT__)
29 #define __COREFOUNDATION_CFMESSAGEPORT__ 1
31 #include <CoreFoundation/CFString.h>
32 #include <CoreFoundation/CFRunLoop.h>
33 #include <CoreFoundation/CFData.h>
34 #include <dispatch/dispatch.h>
38 typedef struct __CFMessagePort
* CFMessagePortRef
;
41 kCFMessagePortSuccess
= 0,
42 kCFMessagePortSendTimeout
= -1,
43 kCFMessagePortReceiveTimeout
= -2,
44 kCFMessagePortIsInvalid
= -3,
45 kCFMessagePortTransportError
= -4,
46 kCFMessagePortBecameInvalidError
= -5
52 const void *(*retain
)(const void *info
);
53 void (*release
)(const void *info
);
54 CFStringRef (*copyDescription
)(const void *info
);
55 } CFMessagePortContext
;
57 typedef CFDataRef (*CFMessagePortCallBack
)(CFMessagePortRef local
, SInt32 msgid
, CFDataRef data
, void *info
);
58 /* If callout wants to keep a hold of the data past the return of the callout, it must COPY the data. This includes the case where the data is given to some routine which _might_ keep a hold of it; System will release returned CFData. */
59 typedef void (*CFMessagePortInvalidationCallBack
)(CFMessagePortRef ms
, void *info
);
61 CF_EXPORT CFTypeID
CFMessagePortGetTypeID(void);
63 CF_EXPORT CFMessagePortRef
CFMessagePortCreateLocal(CFAllocatorRef allocator
, CFStringRef name
, CFMessagePortCallBack callout
, CFMessagePortContext
*context
, Boolean
*shouldFreeInfo
);
64 CF_EXPORT CFMessagePortRef
CFMessagePortCreateRemote(CFAllocatorRef allocator
, CFStringRef name
);
66 CF_EXPORT Boolean
CFMessagePortIsRemote(CFMessagePortRef ms
);
67 CF_EXPORT CFStringRef
CFMessagePortGetName(CFMessagePortRef ms
);
68 CF_EXPORT Boolean
CFMessagePortSetName(CFMessagePortRef ms
, CFStringRef newName
);
69 CF_EXPORT
void CFMessagePortGetContext(CFMessagePortRef ms
, CFMessagePortContext
*context
);
70 CF_EXPORT
void CFMessagePortInvalidate(CFMessagePortRef ms
);
71 CF_EXPORT Boolean
CFMessagePortIsValid(CFMessagePortRef ms
);
72 CF_EXPORT CFMessagePortInvalidationCallBack
CFMessagePortGetInvalidationCallBack(CFMessagePortRef ms
);
73 CF_EXPORT
void CFMessagePortSetInvalidationCallBack(CFMessagePortRef ms
, CFMessagePortInvalidationCallBack callout
);
75 /* NULL replyMode argument means no return value expected, dont wait for it */
76 CF_EXPORT SInt32
CFMessagePortSendRequest(CFMessagePortRef remote
, SInt32 msgid
, CFDataRef data
, CFTimeInterval sendTimeout
, CFTimeInterval rcvTimeout
, CFStringRef replyMode
, CFDataRef
*returnData
);
78 CF_EXPORT CFRunLoopSourceRef
CFMessagePortCreateRunLoopSource(CFAllocatorRef allocator
, CFMessagePortRef local
, CFIndex order
);
80 CF_EXPORT
void CFMessagePortSetDispatchQueue(CFMessagePortRef ms
, dispatch_queue_t queue
) CF_AVAILABLE(10_6
, 4_0
);
84 #endif /* ! __COREFOUNDATION_CFMESSAGEPORT__ */