com.gargoylesoftware.htmlunit.History Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client-compiler-deps Show documentation
Show all versions of vaadin-client-compiler-deps Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright (c) 2002-2011 Gargoyle Software Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.gargoylesoftware.htmlunit;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.Serializable;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import com.gargoylesoftware.htmlunit.util.UrlUtils;
/**
* Representation of the navigation history of a single window.
*
* @version $Revision: 6456 $
* @author Daniel Gredler
*/
public class History implements Serializable {
/** The window to which this navigation history belongs. */
private final WebWindow window_;
/**
* The URLs of the pages in this navigation history; stored as Strings instead of java.net.URLs
* because "about:blank" URLs don't serialize correctly.
*/
private final List urls_ = new ArrayList();
/**
* Whether or not to ignore calls to {@link #addPage(Page)}; this is a bit hackish (we should probably be using
* explicit boolean parameters in the various methods that load new pages), but it does the job for now -- without
* any new API cruft.
*/
private transient ThreadLocal ignoreNewPages_;
/** The current index within the list of pages which make up this navigation history. */
private int index_ = -1;
/**
* Creates a new navigation history for the specified window.
* @param window the window which owns the new navigation history
*/
public History(final WebWindow window) {
window_ = window;
initTransientFields();
}
/**
* Initializes the transient fields.
*/
private void initTransientFields() {
ignoreNewPages_ = new ThreadLocal();
}
/**
* Returns the length of the navigation history.
* @return the length of the navigation history
*/
public int getLength() {
return urls_.size();
}
/**
* Returns the current (zero-based) index within the navigation history.
* @return the current (zero-based) index within the navigation history
*/
public int getIndex() {
return index_;
}
/**
* Returns the URL at the specified index in the navigation history, or null if the index is not valid.
* @param index the index of the URL to be returned
* @return the URL at the specified index in the navigation history, or null if the index is not valid
*/
public URL getUrl(final int index) {
if (index >= 0 && index < urls_.size()) {
return UrlUtils.toUrlSafe(urls_.get(index));
}
return null;
}
/**
* Goes back one step in the navigation history, if possible.
* @return this navigation history, after going back one step
* @throws IOException if an IO error occurs
*/
public History back() throws IOException {
if (index_ > 0) {
index_--;
goToUrlAtCurrentIndex();
}
return this;
}
/**
* Goes forward one step in the navigation history, if possible.
* @return this navigation history, after going forward one step
* @throws IOException if an IO error occurs
*/
public History forward() throws IOException {
if (index_ < urls_.size() - 1) {
index_++;
goToUrlAtCurrentIndex();
}
return this;
}
/**
* Goes forward or backwards in the navigation history, according to whether the specified relative index
* is positive or negative. If the specified index is 0, this method reloads the current page.
* @param relativeIndex the index to move to, relative to the current index
* @return this navigation history, after going forwards or backwards the specified number of steps
* @throws IOException if an IO error occurs
*/
public History go(final int relativeIndex) throws IOException {
final int i = index_ + relativeIndex;
if (i < urls_.size() && i >= 0) {
index_ = i;
}
goToUrlAtCurrentIndex();
return this;
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return urls_.toString();
}
/**
* Removes the current URL from the history.
*/
public void removeCurrent() {
if (index_ >= 0 && index_ < urls_.size()) {
urls_.remove(index_);
if (index_ > 0) {
index_--;
}
}
}
/**
* Adds a new page to the navigation history.
* @param page the page to add to the navigation history
*/
protected void addPage(final Page page) {
final Boolean ignoreNewPages = ignoreNewPages_.get();
if (ignoreNewPages != null && ignoreNewPages.booleanValue()) {
return;
}
index_++;
while (urls_.size() > index_) {
urls_.remove(index_);
}
urls_.add(page.getWebResponse().getWebRequest().getUrl().toExternalForm());
}
/**
* Loads the URL at the current index into the window to which this navigation history belongs.
* @throws IOException if an IO error occurs
*/
private void goToUrlAtCurrentIndex() throws IOException {
final URL url = UrlUtils.toUrlSafe(urls_.get(index_));
final WebRequest wrs = new WebRequest(url);
final Boolean old = ignoreNewPages_.get();
try {
ignoreNewPages_.set(Boolean.TRUE);
window_.getWebClient().getPage(window_, wrs);
}
finally {
ignoreNewPages_.set(old);
}
}
/**
* Re-initializes transient fields when an object of this type is deserialized.
*/
private void readObject(final ObjectInputStream in) throws IOException, ClassNotFoundException {
in.defaultReadObject();
initTransientFields();
}
}