
org.openqa.grid.web.servlet.RegistrationServlet Maven / Gradle / Ivy
Go to download
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
/*
Copyright 2011 Selenium committers
Copyright 2011 Software Freedom Conservancy
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 org.openqa.grid.web.servlet;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.logging.Logger;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.openqa.grid.common.RegistrationRequest;
import org.openqa.grid.internal.BaseRemoteProxy;
import org.openqa.grid.internal.Registry;
import org.openqa.grid.internal.RemoteProxy;
import org.openqa.grid.internal.utils.GridHubConfiguration;
/**
* entry point for the registration API the grid provides. The {@link RegistrationRequest} sent to
* http://hub:port/grid/register will be used to create a RemoteProxy and add it to the grid.
*/
public class RegistrationServlet extends RegistryBasedServlet {
private static final long serialVersionUID = -8670670577712086527L;
private static final Logger log = Logger.getLogger(RegistrationServlet.class.getName());
public RegistrationServlet() {
this(null);
}
public RegistrationServlet(Registry registry) {
super(registry);
}
@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 {
BufferedReader rd = new BufferedReader(new InputStreamReader(request.getInputStream()));
StringBuilder registrationRequest = new StringBuilder();
String line;
while ((line = rd.readLine()) != null) {
registrationRequest.append(line);
}
rd.close();
log.fine("getting the following registration request : " + registrationRequest.toString());
// getting the settings from registration
RegistrationRequest server = RegistrationRequest.getNewInstance(registrationRequest.toString());
// for non specified param, use what is on the hub.
GridHubConfiguration hubConfig = getRegistry().getConfiguration();
for (String key : hubConfig.getAllParams().keySet()) {
if (!server.getConfiguration().containsKey(key)) {
server.getConfiguration().put(key, hubConfig.getAllParams().get(key));
}
}
// TODO freynaud : load template desiredCapability from the hub. Is that useful?
final RemoteProxy proxy = BaseRemoteProxy.getNewInstance(server, getRegistry());
reply(response, "ok");
new Thread(new Runnable() { // Thread safety reviewed
public void run() {
getRegistry().add(proxy);
log.fine("proxy added " + proxy.getRemoteHost());
}
}).start();
}
protected void reply(HttpServletResponse response, String content) throws IOException {
response.setContentType("text/html");
response.setCharacterEncoding("UTF-8");
response.setStatus(200);
response.getWriter().print(content);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy