Source: NodeServer.java
// 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.selenium.grid.node.httpd;
import com.google.auto.service.AutoService;
import com.beust.jcommander.JCommander;
import com.beust.jcommander.ParameterException;
import org.openqa.selenium.cli.CliCommand;
import org.openqa.selenium.concurrent.Regularly;
import org.openqa.selenium.events.EventBus;
import org.openqa.selenium.grid.component.HealthCheck;
import org.openqa.selenium.grid.config.AnnotatedConfig;
import org.openqa.selenium.grid.config.CompoundConfig;
import org.openqa.selenium.grid.config.ConcatenatingConfig;
import org.openqa.selenium.grid.config.Config;
import org.openqa.selenium.grid.config.EnvConfig;
import org.openqa.selenium.grid.data.NodeStatusEvent;
import org.openqa.selenium.grid.log.LoggingOptions;
import org.openqa.selenium.grid.node.local.LocalNode;
import org.openqa.selenium.grid.node.local.NodeFlags;
import org.openqa.selenium.grid.server.BaseServer;
import org.openqa.selenium.grid.server.BaseServerFlags;
import org.openqa.selenium.grid.server.BaseServerOptions;
import org.openqa.selenium.grid.server.EventBusConfig;
import org.openqa.selenium.grid.server.EventBusFlags;
import org.openqa.selenium.grid.server.HelpFlags;
import org.openqa.selenium.grid.server.Server;
import org.openqa.selenium.grid.server.W3CCommandHandler;
import org.openqa.selenium.grid.web.Routes;
import org.openqa.selenium.remote.http.HttpClient;
import org.openqa.selenium.remote.tracing.DistributedTracer;
import org.openqa.selenium.remote.tracing.GlobalDistributedTracer;
import java.time.Duration;
import java.util.logging.Logger;
@AutoService(CliCommand.class)
public class NodeServer implements CliCommand {
private static final Logger LOG = Logger.getLogger(NodeServer.class.getName());
@Override
public String getName() {
return "node";
}
@Override
public String getDescription() {
return "Adds this server as a node in the selenium grid.";
}
@Override
public Executable configure(String... args) {
HelpFlags help = new HelpFlags();
BaseServerFlags serverFlags = new BaseServerFlags(5555);
EventBusFlags eventBusFlags = new EventBusFlags();
NodeFlags nodeFlags = new NodeFlags();
JCommander commander = JCommander.newBuilder()
.programName(getName())
.addObject(help)
.addObject(serverFlags)
.addObject(eventBusFlags)
.addObject(nodeFlags)
.build();
return () -> {
try {
commander.parse(args);
} catch (ParameterException e) {
System.err.println(e.getMessage());
commander.usage();
return;
}
if (help.displayHelp(commander, System.out)) {
return;
}
Config config = new CompoundConfig(
new EnvConfig(),
new ConcatenatingConfig("node", '.', System.getProperties()),
new AnnotatedConfig(help),
new AnnotatedConfig(serverFlags),
new AnnotatedConfig(eventBusFlags),
new AnnotatedConfig(nodeFlags),
new DefaultNodeConfig());
LoggingOptions loggingOptions = new LoggingOptions(config);
loggingOptions.configureLogging();
DistributedTracer tracer = loggingOptions.getTracer();
GlobalDistributedTracer.setInstance(tracer);
EventBusConfig events = new EventBusConfig(config);
EventBus bus = events.getEventBus();
HttpClient.Factory clientFactory = HttpClient.Factory.createDefault();
BaseServerOptions serverOptions = new BaseServerOptions(config);
LocalNode.Builder builder = LocalNode.builder(
tracer,
bus,
clientFactory,
serverOptions.getExternalUri());
nodeFlags.configure(config, clientFactory, builder);
LocalNode node = builder.build();
Server<?> server = new BaseServer<>(serverOptions);
server.addRoute(Routes.matching(node).using(node).decorateWith(W3CCommandHandler.class));
server.start();
Regularly regularly = new Regularly("Register Node with Distributor");
regularly.submit(
() -> {
HealthCheck.Result check = node.getHealthCheck().check();
if (!check.isAlive()) {
LOG.info("Node is not alive: " + check.getMessage());
// Throw an exception to force another check sooner.
throw new UnsupportedOperationException("Node cannot be registered");
}
bus.fire(new NodeStatusEvent(node.getStatus()));
},
Duration.ofMinutes(5),
Duration.ofSeconds(30));
};
}
}