| /* |
| * Copyright (C) 2011 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| * THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #import "config.h" |
| #import "WKConnection.h" |
| #import "WKConnectionInternal.h" |
| |
| #import "ObjCObjectGraph.h" |
| #import "WKConnectionRef.h" |
| #import "WKData.h" |
| #import "WKRetainPtr.h" |
| #import "WKString.h" |
| #import "WKStringCF.h" |
| #import <wtf/RetainPtr.h> |
| |
| using namespace WebKit; |
| |
| @interface WKConnectionData : NSObject { |
| @public |
| // Underlying connection object. |
| WKRetainPtr<WKConnectionRef> _connectionRef; |
| |
| // Delegate for callbacks. |
| id<WKConnectionDelegate> _delegate; |
| } |
| @end |
| |
| @implementation WKConnectionData |
| @end |
| |
| @implementation WKConnection |
| |
| - (void)dealloc |
| { |
| WKConnectionSetConnectionClient(_data->_connectionRef.get(), 0); |
| |
| [_data release]; |
| [super dealloc]; |
| } |
| |
| - (void)sendMessageWithName:(NSString *)messageName body:(id)messageBody |
| { |
| WKRetainPtr<WKStringRef> wkMessageName = adoptWK(WKStringCreateWithCFString((CFStringRef)messageName)); |
| RefPtr<ObjCObjectGraph> wkMessageBody = ObjCObjectGraph::create(messageBody); |
| |
| WKConnectionPostMessage(_data->_connectionRef.get(), wkMessageName.get(), (WKTypeRef)wkMessageBody.get()); |
| } |
| |
| #pragma mark Delegates |
| |
| - (id<WKConnectionDelegate>)delegate |
| { |
| return _data->_delegate; |
| } |
| |
| - (void)setDelegate:(id<WKConnectionDelegate>)delegate |
| { |
| _data->_delegate = delegate; |
| } |
| |
| @end |
| |
| @implementation WKConnection (Internal) |
| |
| static void didReceiveMessage(WKConnectionRef, WKStringRef messageName, WKTypeRef messageBody, const void* clientInfo) |
| { |
| WKConnection *connection = (WKConnection *)clientInfo; |
| if ([connection.delegate respondsToSelector:@selector(connection:didReceiveMessageWithName:body:)]) { |
| RetainPtr<CFStringRef> nsMessageName = adoptCF(WKStringCopyCFString(kCFAllocatorDefault, messageName)); |
| RetainPtr<id> nsMessageBody = ((ObjCObjectGraph*)messageBody)->rootObject(); |
| |
| [connection.delegate connection:connection didReceiveMessageWithName:(NSString *)nsMessageName.get() body:nsMessageBody.get()]; |
| } |
| } |
| |
| static void didClose(WKConnectionRef, const void* clientInfo) |
| { |
| WKConnection *connection = (WKConnection *)clientInfo; |
| if ([connection.delegate respondsToSelector:@selector(connectionDidClose:)]) { |
| [connection.delegate connectionDidClose:connection]; |
| } |
| } |
| |
| static void setUpClient(WKConnection *connection, WKConnectionRef connectionRef) |
| { |
| WKConnectionClient client; |
| memset(&client, 0, sizeof(client)); |
| |
| client.version = WKConnectionClientCurrentVersion; |
| client.clientInfo = connection; |
| client.didReceiveMessage = didReceiveMessage; |
| client.didClose = didClose; |
| |
| WKConnectionSetConnectionClient(connectionRef, &client); |
| } |
| |
| - (id)_initWithConnectionRef:(WKConnectionRef)connectionRef |
| { |
| self = [super init]; |
| if (!self) |
| return nil; |
| |
| _data = [[WKConnectionData alloc] init]; |
| _data->_connectionRef = connectionRef; |
| |
| setUpClient(self, _data->_connectionRef.get()); |
| |
| return self; |
| } |
| |
| @end |