blob: 008f2d66b250e5ad3f24c7eea032077ccb6f9da6 [file] [log] [blame]
/*
* Copyright (C) 2006, 2007, 2008 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 COMPUTER, INC. ``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 COMPUTER, INC. OR
* 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 "config.h"
#include "CachedPage.h"
#include "AnimationController.h"
#include "CachedPagePlatformData.h"
#include "Document.h"
#include "DocumentLoader.h"
#include "Element.h"
#include "EventHandler.h"
#include "FocusController.h"
#include "Frame.h"
#include "FrameLoader.h"
#include "FrameView.h"
#include "GCController.h"
#include "JSLocation.h"
#include "Logging.h"
#include "Page.h"
#include "PausedTimeouts.h"
#include "SystemTime.h"
#if ENABLE(SVG)
#include "SVGDocumentExtensions.h"
#endif
#include "kjs_proxy.h"
#include "kjs_window.h"
#include <kjs/JSLock.h>
#include <kjs/SavedBuiltins.h>
#include <kjs/property_map.h>
using namespace KJS;
namespace WebCore {
#ifndef NDEBUG
WTFLogChannel LogWebCoreCachedPageLeaks = { 0x00000000, "", WTFLogChannelOn };
struct CachedPageCounter {
static int count;
~CachedPageCounter()
{
if (count)
LOG(WebCoreCachedPageLeaks, "LEAK: %d CachedPage\n", count);
}
};
int CachedPageCounter::count = 0;
static CachedPageCounter cachedPageCounter;
#endif
PassRefPtr<CachedPage> CachedPage::create(Page* page)
{
return new CachedPage(page);
}
CachedPage::CachedPage(Page* page)
: m_timeStamp(0)
, m_document(page->mainFrame()->document())
, m_view(page->mainFrame()->view())
, m_mousePressNode(page->mainFrame()->eventHandler()->mousePressNode())
, m_URL(page->mainFrame()->loader()->url())
, m_windowProperties(new SavedProperties)
, m_locationProperties(new SavedProperties)
, m_windowLocalStorage(new SavedProperties)
, m_windowBuiltins(new SavedBuiltins)
{
#ifndef NDEBUG
++CachedPageCounter::count;
#endif
m_document->willSaveToCache();
Frame* mainFrame = page->mainFrame();
Window* window = Window::retrieveWindow(mainFrame);
mainFrame->clearTimers();
JSLock lock;
if (window) {
window->saveBuiltins(*m_windowBuiltins.get());
window->saveProperties(*m_windowProperties.get());
window->saveLocalStorage(*m_windowLocalStorage.get());
window->location()->saveProperties(*m_locationProperties.get());
m_pausedTimeouts.set(window->pauseTimeouts());
}
m_document->setInPageCache(true);
#if ENABLE(SVG)
if (m_document && m_document->svgExtensions())
m_document->accessSVGExtensions()->pauseAnimations();
#endif
}
CachedPage::~CachedPage()
{
#ifndef NDEBUG
--CachedPageCounter::count;
#endif
clear();
}
void CachedPage::restore(Page* page)
{
ASSERT(m_document->view() == m_view);
Frame* mainFrame = page->mainFrame();
Window* window = Window::retrieveWindow(mainFrame);
JSLock lock;
if (window) {
window->restoreBuiltins(*m_windowBuiltins.get());
window->restoreProperties(*m_windowProperties.get());
window->restoreLocalStorage(*m_windowLocalStorage.get());
window->location()->restoreProperties(*m_locationProperties.get());
window->resumeTimeouts(m_pausedTimeouts.get());
}
#if ENABLE(SVG)
if (m_document && m_document->svgExtensions())
m_document->accessSVGExtensions()->unpauseAnimations();
#endif
mainFrame->animationController()->resumeAnimations();
mainFrame->eventHandler()->setMousePressNode(mousePressNode());
// Restore the focus appearance for the focused element.
// FIXME: Right now we don't support pages w/ frames in the b/f cache. This may need to be tweaked when we add support for that.
Document* focusedDocument = page->focusController()->focusedOrMainFrame()->document();
if (Node* node = focusedDocument->focusedNode()) {
if (node->isElementNode())
static_cast<Element*>(node)->updateFocusAppearance(true);
}
}
void CachedPage::clear()
{
if (!m_document)
return;
if (m_cachedPagePlatformData)
m_cachedPagePlatformData->clear();
ASSERT(m_view);
ASSERT(m_document->frame() == m_view->frame());
if (m_document->inPageCache()) {
Frame::clearTimers(m_view.get());
m_document->setInPageCache(false);
// FIXME: We don't call willRemove here. Why is that OK?
m_document->detach();
m_document->removeAllEventListenersFromAllNodes();
m_view->clearFrame();
}
ASSERT(!m_document->inPageCache());
m_document = 0;
m_view = 0;
m_mousePressNode = 0;
m_URL = KURL();
JSLock lock;
m_windowProperties.clear();
m_locationProperties.clear();
m_windowBuiltins.clear();
m_pausedTimeouts.clear();
m_cachedPagePlatformData.clear();
m_windowLocalStorage.clear();
gcController().garbageCollectSoon();
}
void CachedPage::setDocumentLoader(PassRefPtr<DocumentLoader> loader)
{
m_documentLoader = loader;
}
DocumentLoader* CachedPage::documentLoader()
{
return m_documentLoader.get();
}
void CachedPage::setTimeStamp(double timeStamp)
{
m_timeStamp = timeStamp;
}
void CachedPage::setTimeStampToNow()
{
m_timeStamp = currentTime();
}
double CachedPage::timeStamp() const
{
return m_timeStamp;
}
void CachedPage::setCachedPagePlatformData(CachedPagePlatformData* data)
{
m_cachedPagePlatformData.set(data);
}
CachedPagePlatformData* CachedPage::cachedPagePlatformData()
{
return m_cachedPagePlatformData.get();
}
} // namespace WebCore