com.gargoylesoftware.htmlunit.javascript.host.Storage 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.javascript.host;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import net.sourceforge.htmlunit.corejs.javascript.Context;
import net.sourceforge.htmlunit.corejs.javascript.Scriptable;
import com.gargoylesoftware.htmlunit.BrowserVersionFeatures;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable;
/**
* The JavaScript object that represents a Storage.
*
* @version $Revision: 6391 $
* @author Ahmed Ashour
*/
public class Storage extends SimpleScriptable {
static enum Type { GLOBAL_STORAGE, LOCAL_STORAGE, SESSION_STORAGE }
private static List RESERVED_NAMES_ = Arrays.asList("clear", "key", "getItem", "length", "removeItem",
"setItem");
private Type type_;
void setType(final Type type) {
type_ = type;
}
/**
* {@inheritDoc}
*/
@Override
public void put(final String name, final Scriptable start, final Object value) {
if (type_ == null || RESERVED_NAMES_.contains(name)) {
super.put(name, start, value);
return;
}
jsxFunction_setItem(name, Context.toString(value));
}
/**
* {@inheritDoc}
*/
@Override
public Object get(final String name, final Scriptable start) {
if (type_ == null || RESERVED_NAMES_.contains(name)) {
return super.get(name, start);
}
return jsxFunction_getItem(name);
}
/**
* Returns the length property.
* @return the length property
*/
public int jsxGet_length() {
return getMap().size();
}
/**
* Removes the specified key.
* @param key the item key
*/
public void jsxFunction_removeItem(final String key) {
getMap().remove(key);
}
/**
* Returns the key of the specified index.
* @param index the index
* @return the key
*/
public String jsxFunction_key(final int index) {
int counter = 0;
for (final String key : getMap().keySet()) {
if (counter++ == index) {
return key;
}
}
return null;
}
private Map getMap() {
return StorageImpl.getInstance().getMap(type_, (HtmlPage) getWindow().getWebWindow().getEnclosedPage());
}
/**
* Returns the value of the specified key.
* @param key the item key
* @return the value
*/
public Object jsxFunction_getItem(final String key) {
return getMap().get(key);
}
/**
* Sets the item value.
* @param key the item key
* @param data the value
*/
public void jsxFunction_setItem(final String key, final String data) {
getMap().put(key, data);
}
/**
* Clears all items.
*/
public void jsxFunction_clear() {
StorageImpl.getInstance().clear(type_, (HtmlPage) getWindow().getWebWindow().getEnclosedPage());
}
/**
* {@inheritDoc}
*/
@Override
public String getClassName() {
if (getWindow().getWebWindow() != null) {
if (getBrowserVersion().hasFeature(BrowserVersionFeatures.STORAGE_OBSOLETE)) {
return "StorageObsolete";
}
}
return super.getClassName();
}
}