2 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
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.
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.
26 #ifndef WebProcessProxy_h
27 #define WebProcessProxy_h
29 #include "Connection.h"
30 #include "PlatformProcessIdentifier.h"
31 #include "PluginInfoStore.h"
32 #include "ProcessLauncher.h"
33 #include "ProcessModel.h"
34 #include "ResponsivenessTimer.h"
35 #include "ThreadLauncher.h"
36 #include "WebPageProxy.h"
37 #include <WebCore/LinkHash.h>
38 #include <wtf/Forward.h>
39 #include <wtf/HashMap.h>
40 #include <wtf/PassRefPtr.h>
41 #include <wtf/RefCounted.h>
49 class WebBackForwardListItem;
52 struct WebNavigationDataStore;
54 class WebProcessProxy : public RefCounted<WebProcessProxy>, CoreIPC::Connection::Client, ResponsivenessTimer::Client, ProcessLauncher::Client, ThreadLauncher::Client {
56 typedef HashMap<uint64_t, RefPtr<WebPageProxy> > WebPageProxyMap;
57 typedef WebPageProxyMap::const_iterator::Values pages_const_iterator;
58 typedef HashMap<uint64_t, RefPtr<WebBackForwardListItem> > WebBackForwardListItemMap;
60 static PassRefPtr<WebProcessProxy> create(WebContext*);
65 template<typename E, typename T> bool send(E messageID, uint64_t destinationID, const T& arguments);
66 template<typename T> bool send(const T& message, uint64_t destinationID);
67 template<typename U> bool sendSync(const U& message, const typename U::Reply& reply, uint64_t destinationID, double timeout = 1);
69 CoreIPC::Connection* connection() const
73 return m_connection.get();
76 WebContext* context() const { return m_context; }
78 PlatformProcessIdentifier processIdentifier() const { return m_processLauncher->processIdentifier(); }
80 WebPageProxy* webPage(uint64_t pageID) const;
81 WebPageProxy* createWebPage(WebContext*, WebPageGroup*);
82 void addExistingWebPage(WebPageProxy*, uint64_t pageID);
83 void removeWebPage(uint64_t pageID);
85 pages_const_iterator pages_begin();
86 pages_const_iterator pages_end();
87 size_t numberOfPages();
89 WebBackForwardListItem* webBackForwardItem(uint64_t itemID) const;
91 ResponsivenessTimer* responsivenessTimer() { return &m_responsivenessTimer; }
93 bool isValid() const { return m_connection; }
94 bool isLaunching() const;
95 bool canSendMessage() const { return isValid() || isLaunching(); }
97 WebFrameProxy* webFrame(uint64_t) const;
98 void frameCreated(uint64_t, WebFrameProxy*);
99 void didDestroyFrame(uint64_t);
100 void disconnectFramesFromPage(WebPageProxy*); // Including main frame.
101 size_t frameCountInPage(WebPageProxy*) const; // Including main frame.
104 explicit WebProcessProxy(WebContext*);
108 bool sendMessage(CoreIPC::MessageID, PassOwnPtr<CoreIPC::ArgumentEncoder>);
110 void addBackForwardItem(uint64_t itemID, const String& originalURLString, const String& urlString, const String& title);
112 #if ENABLE(PLUGIN_PROCESS)
113 void getPluginProcessConnection(const String& pluginPath, CoreIPC::ArgumentEncoder* reply);
116 // CoreIPC::Connection::Client
117 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
118 CoreIPC::SyncReplyMode didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*);
119 void didClose(CoreIPC::Connection*);
120 void didReceiveInvalidMessage(CoreIPC::Connection*, CoreIPC::MessageID);
122 // ResponsivenessTimer::Client
123 void didBecomeUnresponsive(ResponsivenessTimer*);
124 void didBecomeResponsive(ResponsivenessTimer*);
126 // ProcessLauncher::Client
127 virtual void didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier);
129 // ThreadLauncher::Client
130 virtual void didFinishLaunching(ThreadLauncher*, CoreIPC::Connection::Identifier);
132 void didFinishLaunching(CoreIPC::Connection::Identifier);
134 // Implemented in generated WebProcessProxyMessageReceiver.cpp
135 void didReceiveWebProcessProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
137 ResponsivenessTimer m_responsivenessTimer;
138 RefPtr<CoreIPC::Connection> m_connection;
140 Vector<CoreIPC::Connection::OutgoingMessage> m_pendingMessages;
141 RefPtr<ProcessLauncher> m_processLauncher;
142 RefPtr<ThreadLauncher> m_threadLauncher;
144 WebContext* m_context;
146 WebPageProxyMap m_pageMap;
147 WebBackForwardListItemMap m_backForwardListItemMap;
149 HashMap<uint64_t, RefPtr<WebFrameProxy> > m_frameMap;
152 template<typename E, typename T>
153 bool WebProcessProxy::send(E messageID, uint64_t destinationID, const T& arguments)
155 OwnPtr<CoreIPC::ArgumentEncoder> argumentEncoder = CoreIPC::ArgumentEncoder::create(destinationID);
156 argumentEncoder->encode(arguments);
158 return sendMessage(CoreIPC::MessageID(messageID), argumentEncoder.release());
162 bool WebProcessProxy::send(const T& message, uint64_t destinationID)
164 OwnPtr<CoreIPC::ArgumentEncoder> argumentEncoder = CoreIPC::ArgumentEncoder::create(destinationID);
165 argumentEncoder->encode(message);
167 return sendMessage(CoreIPC::MessageID(T::messageID), argumentEncoder.release());
171 bool WebProcessProxy::sendSync(const U& message, const typename U::Reply& reply, uint64_t destinationID, double timeout)
173 return m_connection->sendSync(message, reply, destinationID, timeout);
176 } // namespace WebKit
178 #endif // WebProcessProxy_h