org.ice4j.socket.IceTcpSocketWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice4j Show documentation
Show all versions of ice4j Show documentation
A Java implementation of the ICE protocol
/*
* ice4j, the OpenSource Java Solution for NAT and Firewall Traversal.
*
* Copyright @ 2015 Atlassian Pty Ltd
*
* Licensed 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.ice4j.socket;
import java.io.*;
import java.net.*;
/**
* TCP implementation of the IceSocketWrapper.
*
* @author Sebastien Vincent
*/
public class IceTcpSocketWrapper
extends IceSocketWrapper
{
/**
* InputStream for this socket.
*/
private final InputStream inputStream;
/**
* OutputStream for this socket.
*/
private final OutputStream outputStream;
/**
* Delegate TCP Socket.
*/
private final Socket socket;
/**
* A DelegatingSocket view of {@link #socket} if the latter
* implements the former; otherwise, null.
*/
private final DelegatingSocket socketAsDelegatingSocket;
/**
* Constructor.
*
* @param delegate delegate Socket
*
* @throws IOException if something goes wrong during initialization
*/
public IceTcpSocketWrapper(Socket delegate)
throws IOException
{
socket = delegate;
if (delegate instanceof DelegatingSocket)
{
inputStream = null;
outputStream = null;
socketAsDelegatingSocket = (DelegatingSocket) delegate;
}
else
{
inputStream = delegate.getInputStream();
outputStream = delegate.getOutputStream();
socketAsDelegatingSocket = null;
}
}
/**
* {@inheritDoc}
*/
@Override
public void close()
{
try
{
socket.close();
}
catch(IOException e)
{
}
}
/**
* {@inheritDoc}
*/
@Override
public InetAddress getLocalAddress()
{
return socket.getLocalAddress();
}
/**
* {@inheritDoc}
*/
@Override
public int getLocalPort()
{
return socket.getLocalPort();
}
/**
* {@inheritDoc}
*/
@Override
public SocketAddress getLocalSocketAddress()
{
return socket.getLocalSocketAddress();
}
/**
* {@inheritDoc}
*/
@Override
public Socket getTCPSocket()
{
return socket;
}
/**
* {@inheritDoc}
*/
@Override
public DatagramSocket getUDPSocket()
{
return null;
}
/**
* {@inheritDoc}
*/
@Override
public void receive(DatagramPacket p) throws IOException
{
if (socketAsDelegatingSocket != null)
{
socketAsDelegatingSocket.receive(p);
}
else
{
DelegatingSocket.receiveFromInputStream(
p,
inputStream,
getLocalAddress(), getLocalPort());
}
}
/**
* {@inheritDoc}
*/
@Override
public void send(DatagramPacket p)
throws IOException
{
if (socketAsDelegatingSocket != null)
{
socketAsDelegatingSocket.send(p);
}
else
{
int len = p.getLength();
int off = p.getOffset();
byte data[] = new byte[len + 2];
data[0] = (byte)((len >> 8) & 0xff);
data[1] = (byte)(len & 0xff);
System.arraycopy(p.getData(), off, data, 2, len);
outputStream.write(data, 0, len + 2);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy