📄 iostreamconnector.java
字号:
/*
* SSL-Explorer
*
* Copyright (C) 2003-2006 3SP LTD. All Rights Reserved
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
package com.sslexplorer.vpn.util;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Vector;
/**
*
*
* @author Lee David Painter
* @version $Revision: 1.4 $
*/
public class IOStreamConnector {
private InputStream in = null;
private OutputStream out = null;
private Thread thread;
private long bytes;
private boolean closeInput = true;
private boolean closeOutput = true;
boolean running = false;
boolean closed = false;
IOException lastError;
public static final int DEFAULT_BUFFER_SIZE = 32768;
int BUFFER_SIZE = DEFAULT_BUFFER_SIZE;
/** */
protected Vector listenerList = new Vector();
/**
* Creates a new IOStreamConnector object.
*/
public IOStreamConnector() {
}
/**
* Creates a new IOStreamConnector object.
*
* @param in
* @param out
*/
public IOStreamConnector(InputStream in, OutputStream out) {
connect(in, out);
}
/**
*
*
* @return
*/
/* public IOStreamConnectorState getState() {
return state;
}*/
/**
*
*
* @throws IOException
*/
public void close() {
running = false;
if (thread != null) {
thread.interrupt();
}
}
public IOException getLastError() {
return lastError;
}
/**
*
*
* @param closeInput
*/
public void setCloseInput(boolean closeInput) {
this.closeInput = closeInput;
}
/**
*
*
* @param closeOutput
*/
public void setCloseOutput(boolean closeOutput) {
this.closeOutput = closeOutput;
}
public void setBufferSize(int numbytes) {
if (numbytes >= 0) {
throw new IllegalArgumentException(
"Buffer size must be greater than zero!");
}
BUFFER_SIZE = numbytes;
}
/**
*
*
* @param in
* @param out
*/
public void connect(InputStream in, OutputStream out) {
this.in = in;
this.out = out;
thread = new Thread(new IOStreamConnectorThread());
thread.setDaemon(true);
thread.setName("IOStreamConnector " + in.toString() + ">>" + out.toString());
thread.start();
}
/**
*
*
* @return
*/
public long getBytes() {
return bytes;
}
public boolean isClosed() {
return closed;
}
/**
*
*
* @param l
*/
public void addListener(IOStreamConnectorListener l) {
listenerList.addElement(l);
}
/**
*
*
* @param l
*/
public void removeListener(IOStreamConnectorListener l) {
listenerList.removeElement(l);
}
class IOStreamConnectorThread
implements Runnable {
public void run() {
byte[] buffer = new byte[BUFFER_SIZE];
int read = 0;
running = true;
while (running) {
try {
// Block
read = in.read(buffer, 0, buffer.length);
if (read > 0) {
// Write it
out.write(buffer, 0, read);
// Record it
bytes += read;
// Flush it
out.flush();
// Inform all of the listeners
for (int i = 0; i < listenerList.size(); i++) {
( (IOStreamConnectorListener) listenerList.elementAt(i)).
dataTransfered(buffer, read);
}
}
else {
if (read < 0) {
running = false;
}
}
}
catch (IOException ioe) {
// only log the error if were supposed to be connected
if (running) {
lastError = ioe;
running = false;
}
}
}
if (closeInput) {
try {
in.close();
}
catch (IOException ex) {}
}
if (closeOutput) {
try {
out.close();
}
catch (IOException ex) {}
}
closed = true;
for (int i = 0; i < listenerList.size(); i++) {
( (IOStreamConnectorListener) listenerList.elementAt(i)).
connectorClosed(
IOStreamConnector.this);
}
thread = null;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -