Simple TCP socket plugin (untested).

This commit is contained in:
akwizgran
2011-10-06 09:17:22 +01:00
parent 80cba1e7f7
commit 45fd4c9060
10 changed files with 261 additions and 25 deletions

View File

@@ -0,0 +1,122 @@
package net.sf.briar.plugins.socket;
import java.io.IOException;
import java.net.Socket;
import java.net.SocketAddress;
import java.util.Map;
import java.util.concurrent.Executor;
import net.sf.briar.api.ContactId;
import net.sf.briar.api.transport.InvalidConfigException;
import net.sf.briar.api.transport.InvalidTransportException;
import net.sf.briar.api.transport.stream.StreamTransportCallback;
import net.sf.briar.api.transport.stream.StreamTransportConnection;
import net.sf.briar.api.transport.stream.StreamTransportPlugin;
abstract class SocketPlugin implements StreamTransportPlugin {
private final Executor executor;
protected Map<String, String> localProperties = null;
protected Map<ContactId, Map<String, String>> remoteProperties = null;
protected Map<String, String> config = null;
protected StreamTransportCallback callback = null;
private volatile boolean started = false;
protected abstract SocketAddress getLocalSocketAddress();
protected abstract SocketAddress getSocketAddress(ContactId c);
protected abstract Socket createClientSocket();
protected abstract Socket createServerSocket();
SocketPlugin(Executor executor) {
this.executor = executor;
}
public synchronized void start(Map<String, String> localProperties,
Map<ContactId, Map<String, String>> remoteProperties,
Map<String, String> config, StreamTransportCallback callback)
throws InvalidTransportException, InvalidConfigException {
if(started) throw new IllegalStateException();
started = true;
this.localProperties = localProperties;
this.remoteProperties = remoteProperties;
this.config = config;
this.callback = callback;
executor.execute(createBinder());
}
protected Runnable createBinder() {
return new Runnable() {
public void run() {
SocketAddress addr = getLocalSocketAddress();
if(addr == null) return;
Socket s = createServerSocket();
try {
s.bind(addr);
} catch(IOException e) {
return;
}
}
};
}
public synchronized void stop() {
if(!started) throw new IllegalStateException();
started = false;
}
public synchronized void setLocalProperties(Map<String, String> properties)
throws InvalidTransportException {
if(!started) throw new IllegalStateException();
localProperties = properties;
}
public synchronized void setRemoteProperties(ContactId c,
Map<String, String> properties)
throws InvalidTransportException {
if(!started) throw new IllegalStateException();
remoteProperties.put(c, properties);
}
public synchronized void setConfig(Map<String, String> config)
throws InvalidConfigException {
if(!started) throw new IllegalStateException();
this.config = config;
}
public synchronized void poll() {
if(!shouldPoll()) throw new UnsupportedOperationException();
if(!started) throw new IllegalStateException();
for(ContactId c : remoteProperties.keySet()) {
executor.execute(createConnector(c));
}
}
protected Runnable createConnector(final ContactId c) {
return new Runnable() {
public void run() {
StreamTransportConnection conn = createAndConnectSocket(c);
if(conn != null) callback.outgoingConnectionCreated(c, conn);
}
};
}
public StreamTransportConnection createConnection(ContactId c) {
if(!started) throw new IllegalStateException();
return createAndConnectSocket(c);
}
private StreamTransportConnection createAndConnectSocket(ContactId c) {
if(!started) return null;
SocketAddress addr = getSocketAddress(c);
if(addr == null) return null;
Socket s = createClientSocket();
try {
s.connect(addr);
} catch(IOException e) {
return null;
}
return new SocketTransportConnection(s);
}
}