httpfactory.java
来自「开源的axis2框架的源码。用于开发WEBSERVER」· Java 代码 · 共 488 行 · 第 1/2 页
JAVA
488 行
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.axis2.transport.http.server;
import java.io.IOException;
import org.apache.axis2.AxisFault;
import org.apache.axis2.Constants;
import org.apache.axis2.context.ConfigurationContext;
import org.apache.axis2.description.Parameter;
import org.apache.axis2.description.TransportInDescription;
import org.apache.axis2.engine.ListenerManager;
import org.apache.axis2.transport.http.HTTPWorkerFactory;
import org.apache.http.ConnectionReuseStrategy;
import org.apache.http.HttpResponseFactory;
import org.apache.http.impl.DefaultConnectionReuseStrategy;
import org.apache.http.impl.DefaultHttpResponseFactory;
import org.apache.http.params.BasicHttpParams;
import org.apache.http.params.HttpConnectionParams;
import org.apache.http.params.HttpParams;
import org.apache.http.params.HttpProtocolParams;
import org.apache.http.protocol.BasicHttpProcessor;
import org.apache.http.protocol.HttpProcessor;
import org.apache.http.protocol.ResponseConnControl;
import org.apache.http.protocol.ResponseContent;
import org.apache.http.protocol.ResponseDate;
import org.apache.http.protocol.ResponseServer;
import edu.emory.mathcs.backport.java.util.concurrent.BlockingQueue;
import edu.emory.mathcs.backport.java.util.concurrent.ExecutorService;
import edu.emory.mathcs.backport.java.util.concurrent.LinkedBlockingQueue;
import edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor;
import edu.emory.mathcs.backport.java.util.concurrent.TimeUnit;
/**
* Factory used to configure and create the various instances required in http transports.
* Either configure this class in axis2.xml, or in code via the setters, or subclass it and specialize some factory methods to gain more control.
*
* @author Chuck Williams
*/
public class HttpFactory {
/**
* Name of axis2.xml port parameter for SimpleHTTPServer configuration
*/
public static final String PARAMETER_PORT = "port";
/**
* Name of axis2.xml hostname parameter for SimpleHTTPServer configuration
*/
public static final String PARAMETER_HOST_ADDRESS = "hostname";
/**
* Name of axis2.xml originServer parameter for SimpleHTTPServer configuration
*/
public static final String PARAMETER_ORIGIN_SERVER = "originServer";
/**
* Name of axis2.xml requestTimeout parameter for SimpleHTTPServer configuration
*/
public static final String PARAMETER_REQUEST_SOCKET_TIMEOUT = "requestTimeout";
/**
* Name of axis2.xml requestTcpNoDelay parameter for SimpleHTTPServer configuration
*/
public static final String PARAMETER_REQUEST_TCP_NO_DELAY = "requestTcpNoDelay";
/**
* Name of axis2.xml requestCoreThreadPoolSize parameter for SimpleHTTPServer configuration
*/
public static final String PARAMETER_REQUEST_CORE_THREAD_POOL_SIZE =
"requestCoreThreadPoolSize";
/**
* Name of axis2.xml requestMaxThreadPoolSize parameter for SimpleHTTPServer configuration
*/
public static final String PARAMETER_REQUEST_MAX_THREAD_POOL_SIZE = "requestMaxThreadPoolSize";
/**
* Name of axis2.xml threadKeepAliveTime parameter for SimpleHTTPServer configuration
*/
public static final String PARAMETER_THREAD_KEEP_ALIVE_TIME = "threadKeepAliveTime";
/**
* Name of axis2.xml threadKeepAliveTimeUnit parameter for SimpleHTTPServer configuration
*/
public static final String PARAMETER_THREAD_KEEP_ALIVE_TIME_UNIT = "threadKeepAliveTimeUnit";
private ConfigurationContext configurationContext;
private TransportInDescription httpConfiguration;
private int port;
private String hostAddress;
private String originServer;
private int requestSocketTimeout;
private boolean requestTcpNoDelay;
private int requestCoreThreadPoolSize;
private int requestMaxThreadPoolSize;
private long threadKeepAliveTime;
private TimeUnit threadKeepAliveTimeUnit;
private WorkerFactory requestWorkerFactory = null;
/**
* Create and configure a new HttpFactory
*/
public HttpFactory(ConfigurationContext configurationContext) throws AxisFault {
this.configurationContext = configurationContext;
httpConfiguration = configurationContext.getAxisConfiguration().getTransportIn(Constants.TRANSPORT_HTTP);
port = getIntParam(PARAMETER_PORT, 6060);
hostAddress = getStringParam(PARAMETER_HOST_ADDRESS, null);
originServer = getStringParam(PARAMETER_ORIGIN_SERVER, "Simple-Server/1.1");
requestSocketTimeout = getIntParam(PARAMETER_REQUEST_SOCKET_TIMEOUT, 20000);
requestTcpNoDelay = getBooleanParam(PARAMETER_REQUEST_TCP_NO_DELAY, true);
requestCoreThreadPoolSize = getIntParam(PARAMETER_REQUEST_CORE_THREAD_POOL_SIZE, 100);
requestMaxThreadPoolSize = getIntParam(PARAMETER_REQUEST_MAX_THREAD_POOL_SIZE, 150);
threadKeepAliveTime = getLongParam(PARAMETER_THREAD_KEEP_ALIVE_TIME, 180L);
threadKeepAliveTimeUnit =
getTimeUnitParam(PARAMETER_THREAD_KEEP_ALIVE_TIME_UNIT, TimeUnit.SECONDS);
}
/**
* Create and configure a new HttpFactory
*/
public HttpFactory(ConfigurationContext configurationContext, int port) throws AxisFault {
this(configurationContext);
this.port = port;
}
/**
* Create and configure a new HttpFactory
*/
public HttpFactory(ConfigurationContext configurationContext, int port,
WorkerFactory requestWorkerFactory) throws AxisFault {
this(configurationContext, port);
this.requestWorkerFactory = requestWorkerFactory;
}
private int getIntParam(String name, int def) {
String config = getStringParam(name, null);
if (config != null) {
return Integer.parseInt(config);
} else {
return def;
}
}
private long getLongParam(String name, long def) {
String config = getStringParam(name, null);
if (config != null) {
return Long.parseLong(config);
} else {
return def;
}
}
private boolean getBooleanParam(String name, boolean def) throws AxisFault {
String config = getStringParam(name, null);
if (config != null) {
if (config.equals("yes") || config.equals("true")) {
return true;
} else if (config.equals("no") || config.equals("false")) {
return false;
} else {
throw new AxisFault("Boolean value must be yes, true, no or false for parameter " +
name + ": " + config);
}
}
return def;
}
private TimeUnit getTimeUnitParam(String name, TimeUnit def) throws AxisFault {
String config = getStringParam(name, null);
if (config != null) {
try {
return (TimeUnit) TimeUnit.class.getField(config).get(null);
} catch (Exception e) {
throw AxisFault.makeFault(e);
}
}
return def;
}
private String getStringParam(String name, String def) {
Parameter param = httpConfiguration.getParameter(name);
if (param != null) {
// assert param.getParameterType() == Parameter.TEXT_PARAMETER;
String config = (String) param.getValue();
if (config != null) {
return config;
}
}
return def;
}
/**
* Return the configured listener manager or create and configure one with configurationContext
*/
public ListenerManager getListenerManager() {
ListenerManager lm = configurationContext.getListenerManager();
if (lm == null) {
lm = new ListenerManager();
lm.init(configurationContext);
}
return lm;
}
/**
* Create the executor used to launch the single requestConnectionListener
*/
public ExecutorService newListenerExecutor(int port) {
return new ThreadPoolExecutor(1, 1, 0L, TimeUnit.MILLISECONDS,
new LinkedBlockingQueue(),
new DefaultThreadFactory(
new ThreadGroup("Listener thread group"),
"HttpListener-" + this.port));
}
/**
* Create the listener for request connections
*/
public IOProcessor newRequestConnectionListener(
int port,
final HttpConnectionManager manager,
final HttpParams params) throws IOException {
return new DefaultConnectionListener(
port,
manager,
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?