All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openqa.grid.web.servlet.ConsoleServlet Maven / Gradle / Ivy

There is a newer version: 4.0.0-alpha-2
Show newest version
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The SFC licenses this file
// to you 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 org.openqa.grid.web.servlet;

import com.google.common.io.ByteStreams;

import org.openqa.grid.common.GridDocHelper;
import org.openqa.grid.internal.Registry;
import org.openqa.grid.internal.RemoteProxy;
import org.openqa.grid.internal.utils.GridHubConfiguration;
import org.openqa.selenium.remote.DesiredCapabilities;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Properties;
import java.util.logging.Logger;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Front end to monitor what is currently happening on the proxies. The display is defined by
 * HtmlRenderer returned by the RemoteProxy.getHtmlRenderer() method.
 */
public class ConsoleServlet extends RegistryBasedServlet {

  private static final long serialVersionUID = 8484071790930378855L;
  private static final Logger log = Logger.getLogger(ConsoleServlet.class.getName());
  private static String coreVersion;
  private static String coreRevision;

  public ConsoleServlet() {
    this(null);
  }

  public ConsoleServlet(Registry registry) {
    super(registry);
    getVersion();
  }

  @Override
  protected void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    process(request, response);
  }

  @Override
  protected void doPost(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    process(request, response);
  }

  protected void process(HttpServletRequest request, HttpServletResponse response)
      throws IOException {

    int refresh = -1;

    if (request.getParameter("refresh") != null) {
      try {
        refresh = Integer.parseInt(request.getParameter("refresh"));
      } catch (NumberFormatException e) {
        // ignore wrong param
      }

    }

    response.setContentType("text/html");
    response.setCharacterEncoding("UTF-8");
    response.setStatus(200);

    StringBuilder builder = new StringBuilder();

    builder.append("");
    builder.append("");

    if (refresh != -1) {
      builder.append(String.format("", refresh));
    }
    builder.append("Grid overview");

    builder.append("");
    builder.append("");

    builder.append("");
    builder.append("

Grid Hub "); builder.append(coreVersion).append(coreRevision); builder.append("

"); for (RemoteProxy proxy : getRegistry().getAllProxies()) { builder.append(proxy.getHtmlRender().renderSummary()); } int numUnprocessedRequests = getRegistry().getNewSessionRequestCount(); if (numUnprocessedRequests > 0) { builder.append(String.format("%d requests waiting for a slot to be free.", numUnprocessedRequests)); } builder.append("
    "); for (DesiredCapabilities req : getRegistry().getDesiredCapabilities()) { builder.append("
  • ").append(req).append("
  • "); } builder.append("
"); if (request.getParameter("config") != null) { builder.append(getConfigInfo(request.getParameter("configDebug") != null)); } else { builder.append("view config"); } builder.append(""); builder.append(""); InputStream in = new ByteArrayInputStream(builder.toString().getBytes("UTF-8")); try { ByteStreams.copy(in, response.getOutputStream()); } finally { in.close(); response.flushBuffer(); } } /** * retracing how the hub config was built to help debugging. * * @return html representation of the hub config */ private String getConfigInfo(boolean verbose) { StringBuilder builder = new StringBuilder(); GridHubConfiguration config = getRegistry().getConfiguration(); builder.append("Config for the hub :
"); builder.append(prettyHtmlPrint(config)); if (verbose) { GridHubConfiguration tmp = new GridHubConfiguration(); tmp.loadDefault(); builder.append("Config details :
"); builder.append("hub launched with :"); for (int i = 0; i < config.getArgs().length; i++) { builder.append(config.getArgs()[i]).append(" "); } builder.append("
the final configuration comes from :
"); builder.append("the default :
"); builder.append(prettyHtmlPrint(tmp)); builder.append("updated with grid1 config :"); if (config.getGrid1Yml() != null) { builder.append(config.getGrid1Yml()).append("
"); tmp.loadFromGridYml(config.getGrid1Yml()); builder.append(prettyHtmlPrint(tmp)); } else { builder .append("No grid1 file specified. To specify one, use -grid1Yml XXX.yml where XXX.yml is a grid1 config file
"); } builder.append("
updated with grid2 config : "); if (config.getGrid2JSON() != null) { builder.append(config.getGrid2JSON()).append("
"); tmp.loadFromJSON(config.getGrid2JSON()); builder.append(prettyHtmlPrint(tmp)); } else { builder .append("No hub config file specified. To specify one, use -hubConfig XXX.json where XXX.json is a hub config file
"); } builder.append("
updated with params :
"); tmp.loadFromCommandLine(config.getArgs()); builder.append(prettyHtmlPrint(tmp)); } return builder.toString(); } private String key(String key) { return "" + key + " : "; } private String prettyHtmlPrint(GridHubConfiguration config) { StringBuilder b = new StringBuilder(); b.append(key("host")).append(config.getHost()).append("
"); b.append(key("port")).append(config.getPort()).append("
"); b.append(key("cleanUpCycle")).append(config.getCleanupCycle()).append("
"); b.append(key("timeout")).append(config.getTimeout()).append("
"); b.append(key("browserTimeout")).append(config.getBrowserTimeout()).append("
"); b.append(key("newSessionWaitTimeout")).append(config.getNewSessionWaitTimeout()) .append("
"); b.append(key("grid1Mapping")).append(config.getGrid1Mapping()).append("
"); b.append(key("throwOnCapabilityNotPresent")).append(config.isThrowOnCapabilityNotPresent()) .append("
"); b.append(key("capabilityMatcher")) .append( config.getCapabilityMatcher() == null ? "null" : config.getCapabilityMatcher() .getClass().getCanonicalName()).append("
"); b.append(key("prioritizer")) .append( config.getPrioritizer() == null ? "null" : config.getPrioritizer().getClass() .getCanonicalName()) .append("
"); b.append(key("servlets")); for (String s : config.getServlets()) { b.append(s.getClass().getCanonicalName()).append(","); } b.append("

"); b.append("all params :

"); List keys = new ArrayList<>(); keys.addAll(config.getAllParams().keySet()); Collections.sort(keys); for (String s : keys) { b.append(key(s.replaceFirst("-", ""))).append(config.getAllParams().get(s)).append("
"); } b.append("
"); return b.toString(); } private void getVersion() { final Properties p = new Properties(); InputStream stream = Thread.currentThread().getContextClassLoader().getResourceAsStream("VERSION.txt"); if (stream == null) { log.severe("Couldn't determine version number"); return; } try { p.load(stream); } catch (IOException e) { log.severe("Cannot load version from VERSION.txt" + e.getMessage()); } coreVersion = p.getProperty("selenium.core.version"); coreRevision = p.getProperty("selenium.core.revision"); if (coreVersion == null) { log.severe("Cannot load selenium.core.version from VERSION.txt"); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy