com.gargoylesoftware.htmlunit.javascript.host.performance.PerformanceNavigation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xlt Show documentation
Show all versions of xlt Show documentation
XLT (Xceptance LoadTest) is an extensive load and performance test tool developed and maintained by Xceptance.
/*
* Copyright (c) 2002-2021 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
* https://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.performance;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.CHROME;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.EDGE;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.FF78;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.gargoylesoftware.htmlunit.javascript.SimpleScriptable;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstant;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxConstructor;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxFunction;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxGetter;
import net.sourceforge.htmlunit.corejs.javascript.Context;
import net.sourceforge.htmlunit.corejs.javascript.json.JsonParser;
import net.sourceforge.htmlunit.corejs.javascript.json.JsonParser.ParseException;
/**
* A JavaScript object for {@code PerformanceNavigation}.
*
* @author Ahmed Ashour
* @author Ronald Brill
*/
@JsxClass
public class PerformanceNavigation extends SimpleScriptable {
private static final Log LOG = LogFactory.getLog(PerformanceNavigation.class);
/** Navigate. */
@JsxConstant
public static final int TYPE_NAVIGATE = 0;
/** Reload. */
@JsxConstant
public static final int TYPE_RELOAD = 1;
/** Back forward. */
@JsxConstant
public static final int TYPE_BACK_FORWARD = 2;
/** Reserved. */
@JsxConstant
public static final int TYPE_RESERVED = 255;
/**
* Creates an instance.
*/
@JsxConstructor({CHROME, EDGE, FF, FF78})
public PerformanceNavigation() {
}
/**
* Returns the {@code type} property.
* @return the {@code type} property
*/
@JsxGetter
public int getType() {
return TYPE_NAVIGATE;
}
/**
* Returns the {@code redirectCount} property.
* @return the {@code redirectCount} property
*/
@JsxGetter
public int getRedirectCount() {
return 0;
}
/**
* The {@code toJSON} function.
* @return the {@code toJSON} object
*/
@JsxFunction
public Object toJSON() {
final String jsonString = new StringBuilder()
.append("{\"type\":")
.append(Integer.toString(getType()))
.append(", \"redirectCount\":")
.append(Integer.toString(getRedirectCount()))
.append("}").toString();
try {
return new JsonParser(Context.getCurrentContext(), getParentScope()).parseValue(jsonString);
}
catch (final ParseException e) {
if (LOG.isWarnEnabled()) {
LOG.warn("Failed parsingJSON '" + jsonString + "' reason: " + e.getMessage());
}
}
return null;
}
}