ProxyHttpServer.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.hdfsproxy;
  19. import java.io.IOException;
  20. import java.net.InetSocketAddress;
  21. import java.util.Map;
  22. import javax.servlet.http.HttpServlet;
  23. import org.apache.commons.logging.Log;
  24. import org.apache.commons.logging.LogFactory;
  25. import org.apache.hadoop.conf.Configuration;
  26. import org.apache.hadoop.http.HttpServer;
  27. import org.apache.hadoop.net.NetUtils;
  28. import org.mortbay.jetty.Connector;
  29. import org.mortbay.jetty.nio.SelectChannelConnector;
  30. import org.mortbay.jetty.security.SslSocketConnector;
  31. /**
  32.  * Create a Jetty embedded server to answer http/https requests.
  33.  */
  34. public class ProxyHttpServer extends HttpServer {
  35.   public static final Log LOG = LogFactory.getLog(ProxyHttpServer.class);
  36.   public ProxyHttpServer(InetSocketAddress addr, Configuration conf)
  37.       throws IOException {
  38.     super("", addr.getHostName(), addr.getPort(), 0 <= addr.getPort(), conf);
  39.   }
  40.   /** {@inheritDoc} */
  41.   protected Connector createBaseListener(Configuration conf)
  42.       throws IOException {
  43.     final String sAddr;
  44.     if (null == (sAddr = conf.get("proxy.http.test.listener.addr"))) {
  45.       SslSocketConnector sslListener = new SslSocketConnector();
  46.       sslListener.setKeystore(conf.get("ssl.server.keystore.location"));
  47.       sslListener.setPassword(conf.get("ssl.server.keystore.password", ""));
  48.       sslListener.setKeyPassword(conf.get("ssl.server.keystore.keypassword", ""));
  49.       sslListener.setKeystoreType(conf.get("ssl.server.keystore.type", "jks"));
  50.       sslListener.setNeedClientAuth(true);
  51.       System.setProperty("javax.net.ssl.trustStore",
  52.           conf.get("ssl.server.truststore.location", ""));
  53.       System.setProperty("javax.net.ssl.trustStorePassword",
  54.           conf.get("ssl.server.truststore.password", ""));
  55.       System.setProperty("javax.net.ssl.trustStoreType",
  56.           conf.get("ssl.server.truststore.type", "jks"));
  57.       return sslListener;
  58.     }
  59.     // unit test
  60.     InetSocketAddress proxyAddr = NetUtils.createSocketAddr(sAddr);
  61.     SelectChannelConnector testlistener = new SelectChannelConnector();
  62.     testlistener.setUseDirectBuffers(false);
  63.     testlistener.setHost(proxyAddr.getHostName());
  64.     testlistener.setPort(proxyAddr.getPort());
  65.     return testlistener;
  66.   }
  67. }