| /* |
| * Copyright (C) 2010 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. |
| */ |
| |
| #include "WebContext.h" |
| |
| #include "RunLoop.h" |
| #include "WebPageNamespace.h" |
| #include "WebPreferences.h" |
| #include "WebProcessManager.h" |
| |
| #include "WKContextPrivate.h" |
| |
| #ifndef NDEBUG |
| #include <wtf/RefCountedLeakCounter.h> |
| #endif |
| |
| namespace WebKit { |
| |
| #ifndef NDEBUG |
| static WTF::RefCountedLeakCounter webContextCounter("WebContext"); |
| #endif |
| |
| WebContext::WebContext(ProcessModel processModel) |
| : m_processModel(processModel) |
| { |
| RunLoop::initializeMainRunLoop(); |
| |
| m_preferences = WebPreferences::shared(); |
| m_preferences->addContext(this); |
| |
| #ifndef NDEBUG |
| webContextCounter.increment(); |
| #endif |
| } |
| |
| WebContext::~WebContext() |
| { |
| ASSERT(m_pageNamespaces.isEmpty()); |
| m_preferences->removeContext(this); |
| |
| #ifndef NDEBUG |
| webContextCounter.decrement(); |
| #endif |
| } |
| |
| WebPageNamespace* WebContext::createPageNamespace() |
| { |
| RefPtr<WebPageNamespace> pageNamespace = WebPageNamespace::create(this); |
| m_pageNamespaces.add(pageNamespace.get()); |
| return pageNamespace.release().releaseRef(); |
| } |
| |
| void WebContext::pageNamespaceWasDestroyed(WebPageNamespace* pageNamespace) |
| { |
| ASSERT(m_pageNamespaces.contains(pageNamespace)); |
| m_pageNamespaces.remove(pageNamespace); |
| } |
| |
| void WebContext::setPreferences(WebPreferences* preferences) |
| { |
| ASSERT(preferences); |
| |
| if (preferences == m_preferences) |
| return; |
| |
| m_preferences->removeContext(this); |
| m_preferences = preferences; |
| m_preferences->addContext(this); |
| |
| // FIXME: Update all Pages/PageNamespace with the new WebPreferences. |
| } |
| |
| WebPreferences* WebContext::preferences() const |
| { |
| return m_preferences.get(); |
| } |
| |
| void WebContext::preferencesDidChange() |
| { |
| for (HashSet<WebPageNamespace*>::iterator it = m_pageNamespaces.begin(), end = m_pageNamespaces.end(); it != end; ++it) { |
| WebPageNamespace* pageNamespace = *it; |
| pageNamespace->preferencesDidChange(); |
| } |
| } |
| |
| void WebContext::getStatistics(WKContextStatistics* statistics) |
| { |
| memset(statistics, 0, sizeof(WKContextStatistics)); |
| |
| statistics->numberOfWKPageNamespaces = m_pageNamespaces.size(); |
| |
| for (HashSet<WebPageNamespace*>::iterator it = m_pageNamespaces.begin(), end = m_pageNamespaces.end(); it != end; ++it) |
| (*it)->getStatistics(statistics); |
| } |
| |
| } // namespace WebKit |