📄 httpmirrorserver.java
字号:
/*
* 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.jmeter.protocol.http.control;
import java.io.InterruptedIOException;
import java.net.ServerSocket;
import java.net.Socket;
import org.apache.jorphan.logging.LoggingManager;
import org.apache.jorphan.util.JOrphanUtils;
import org.apache.log.Logger;
/**
* Server daemon thread.
* Creates main socket and listens on it.
* For each client request, creates a thread to handle the request.
*
*/
public class HttpMirrorServer extends Thread {
private static final Logger log = LoggingManager.getLoggerForClass();
/**
* The time (in milliseconds) to wait when accepting a client connection.
* The accept will be retried until the Daemon is told to stop. So this
* interval is the longest time that the Daemon will have to wait after
* being told to stop.
*/
private static final int ACCEPT_TIMEOUT = 1000;
/** The port to listen on. */
private final int daemonPort;
/** True if the Daemon is currently running. */
private volatile boolean running;
/**
* Create a new Daemon with the specified port and target.
*
* @param port
* the port to listen on.
*/
public HttpMirrorServer(int port) {
super("HttpMirrorServer");
this.daemonPort = port;
}
/**
* Listen on the daemon port and handle incoming requests. This method will
* not exit until {@link #stopServer()} is called or an error occurs.
*/
public void run() {
running = true;
ServerSocket mainSocket = null;
try {
log.info("Creating HttpMirror ... on port " + daemonPort);
mainSocket = new ServerSocket(daemonPort);
mainSocket.setSoTimeout(ACCEPT_TIMEOUT);
log.info("HttpMirror up and running!");
while (running) {
try {
// Listen on main socket
Socket clientSocket = mainSocket.accept();
if (running) {
// Pass request to new thread
HttpMirrorThread thd = new HttpMirrorThread(clientSocket);
log.info("Starting new Mirror thread");
thd.start();
} else {
log.warn("Server not running");
JOrphanUtils.closeQuietly(clientSocket);
}
} catch (InterruptedIOException e) {
// Timeout occurred. Ignore, and keep looping until we're
// told to stop running.
}
}
log.info("HttpMirror Server stopped");
} catch (Exception e) {
log.warn("HttpMirror Server stopped", e);
} finally {
JOrphanUtils.closeQuietly(mainSocket);
}
}
public void stopServer() {
running = false;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -