~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Tools/MiniBrowser/mac/WebBundle/WebBundleMain.m

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2010 Apple Inc. All rights reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions
 
6
 * are met:
 
7
 * 1. Redistributions of source code must retain the above copyright
 
8
 *    notice, this list of conditions and the following disclaimer.
 
9
 * 2. Redistributions in binary form must reproduce the above copyright
 
10
 *    notice, this list of conditions and the following disclaimer in the
 
11
 *    documentation and/or other materials provided with the distribution.
 
12
 *
 
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 
14
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
15
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
16
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 
17
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
18
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
19
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
20
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
21
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
22
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 
23
 * THE POSSIBILITY OF SUCH DAMAGE.
 
24
 */
 
25
 
 
26
#include <Cocoa/Cocoa.h>
 
27
#include <WebKit2/WKBundle.h>
 
28
#include <WebKit2/WKBundleFrame.h>
 
29
#include <WebKit2/WKBundleInitialize.h>
 
30
#include <WebKit2/WKBundlePage.h>
 
31
#include <WebKit2/WKString.h>
 
32
#include <WebKit2/WKStringCF.h>
 
33
#include <WebKit2/WKURLCF.h>
 
34
#include <stdio.h>
 
35
 
 
36
static WKBundleRef globalBundle;
 
37
 
 
38
// WKBundlePageClient functions
 
39
 
 
40
void didClearWindowObjectForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKBundleScriptWorldRef world, const void *clientInfo)
 
41
{
 
42
    WKURLRef wkURL = WKBundleFrameCopyURL(WKBundlePageGetMainFrame(page));
 
43
    CFURLRef cfURL = WKURLCopyCFURL(0, wkURL);
 
44
    WKRelease(wkURL);
 
45
 
 
46
    LOG(@"WKBundlePageClient - didClearWindowForFrame %@", [(NSURL *)cfURL absoluteString]);
 
47
    if (cfURL)
 
48
        CFRelease(cfURL);
 
49
 
 
50
    WKStringRef messageName = WKStringCreateWithCFString(CFSTR("Callback"));
 
51
    WKStringRef messageBody = WKStringCreateWithCFString(CFSTR("Window was cleared"));
 
52
    WKBundlePostMessage(globalBundle, messageName, messageBody);
 
53
    WKRelease(messageName);
 
54
    WKRelease(messageBody);
 
55
}
 
56
 
 
57
 
 
58
// WKBundleClient
 
59
 
 
60
void didCreatePage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
 
61
{
 
62
    LOG(@"WKBundleClient - didCreatePage\n");
 
63
 
 
64
    WKBundlePageLoaderClient client;
 
65
    memset(&client, 0, sizeof(client));
 
66
    client.didClearWindowObjectForFrame = didClearWindowObjectForFrame;
 
67
 
 
68
    WKBundlePageSetPageLoaderClient(page, &client);
 
69
}
 
70
 
 
71
void willDestroyPage(WKBundleRef bundle, WKBundlePageRef page, const void* clientInfo)
 
72
{
 
73
    LOG(@"WKBundleClient - willDestroyPage\n");
 
74
}
 
75
 
 
76
void didReceiveMessage(WKBundleRef bundle, WKStringRef messageName, WKTypeRef messageBody, const void *clientInfo)
 
77
{
 
78
    CFStringRef cfMessageName = WKStringCopyCFString(0, messageName);
 
79
 
 
80
    WKTypeID typeID = WKGetTypeID(messageBody);
 
81
    if (typeID == WKStringGetTypeID()) {
 
82
        CFStringRef cfMessageBody = WKStringCopyCFString(0, (WKStringRef)messageBody);
 
83
        LOG(@"WKBundleClient - didReceiveMessage - MessageName: %@ MessageBody %@", cfMessageName, cfMessageBody);
 
84
        CFRelease(cfMessageBody);
 
85
    } else {
 
86
        LOG(@"WKBundleClient - didReceiveMessage - MessageName: %@ (MessageBody Unhandled)\n", cfMessageName);
 
87
    }
 
88
 
 
89
    CFRelease(cfMessageName);
 
90
}
 
91
 
 
92
void WKBundleInitialize(WKBundleRef bundle, WKTypeRef initializationUserData)
 
93
{
 
94
    globalBundle = bundle;
 
95
 
 
96
    WKBundleClient client = {
 
97
        kWKBundleClientCurrentVersion,
 
98
        0,
 
99
        didCreatePage,
 
100
        willDestroyPage,
 
101
        0, // didInitializePageGroup
 
102
        didReceiveMessage,
 
103
        0 // didReceiveMessageToPage
 
104
    };
 
105
    WKBundleSetClient(bundle, &client);
 
106
}