Package net.i2p.sam
Class SAMHandler
- java.lang.Object
-
- net.i2p.sam.SAMHandler
-
- Direct Known Subclasses:
SAMv1Handler
abstract class SAMHandler extends Object implements Runnable, Handler
Base class for SAM protocol handlers. It implements common methods, but is not able to actually parse the protocol itself: this task is delegated to subclasses.- Author:
- human
-
-
Field Summary
Fields Modifier and Type Field Description protected Log_logprotected SAMBridgebridgeprotected Propertiesi2cpPropsI2CP options configuring the I2CP connection (port, host, numHops, etc)protected SocketChannelsocketprotected booleanstopHandlerprotected ObjectstopLockprotected I2PAppThreadthreadintverMajorintverMinor
-
Constructor Summary
Constructors Modifier Constructor Description protectedSAMHandler(SocketChannel s, int verMajor, int verMinor, Properties i2cpProps, SAMBridge parent)SAMHandler constructor (to be called by subclasses)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidcloseClientSocket()Close the socket connected to the SAM client.protected SocketChannelgetClientSocket()Get the channel of the socket connected to the SAM clientprotected ObjectgetWriteLock()If you're crazy enough to write to the raw socket, grab the write lock with getWriteLock(), synchronize against it, and write to the getOut()protected abstract voidhandle()Actually handle the SAM protocol.voidrun()Register with the bridge, call handle(), unregister with the bridge.protected booleanshouldStop()Should the handler be stopped?voidstartHandling()Start handling the SAM connection, detaching an handling thread.voidstopHandling()Stop the SAM handler, close the client socket, unregister with the bridge.StringtoString()Get a string describing the handler.protected voidwriteBytes(ByteBuffer data)Write a byte array on the handler's socket.protected booleanwriteString(String str)Write a string to the handler's socket.static booleanwriteString(String str, SocketChannel out)Unsynchronized, use with caution
-
-
-
Field Detail
-
_log
protected final Log _log
-
thread
protected I2PAppThread thread
-
bridge
protected final SAMBridge bridge
-
socket
protected final SocketChannel socket
-
verMajor
public final int verMajor
-
verMinor
public final int verMinor
-
i2cpProps
protected final Properties i2cpProps
I2CP options configuring the I2CP connection (port, host, numHops, etc)
-
stopLock
protected final Object stopLock
-
stopHandler
protected boolean stopHandler
-
-
Constructor Detail
-
SAMHandler
protected SAMHandler(SocketChannel s, int verMajor, int verMinor, Properties i2cpProps, SAMBridge parent) throws IOException
SAMHandler constructor (to be called by subclasses)- Parameters:
s- Socket attached to a SAM clientverMajor- SAM major version to manageverMinor- SAM minor version to managei2cpProps- properties to configure the I2CP connection (host, port, etc)- Throws:
IOException
-
-
Method Detail
-
startHandling
public final void startHandling()
Start handling the SAM connection, detaching an handling thread.
-
handle
protected abstract void handle()
Actually handle the SAM protocol.
-
getClientSocket
protected final SocketChannel getClientSocket()
Get the channel of the socket connected to the SAM client- Returns:
- channel
-
writeBytes
protected final void writeBytes(ByteBuffer data) throws IOException
Write a byte array on the handler's socket. This method must always be used when writing data, unless you really know what you're doing.- Parameters:
data- A byte array to be written- Throws:
IOException
-
getWriteLock
protected Object getWriteLock()
If you're crazy enough to write to the raw socket, grab the write lock with getWriteLock(), synchronize against it, and write to the getOut()- Returns:
- socket Write lock object
-
writeString
protected final boolean writeString(String str)
Write a string to the handler's socket. This method must always be used when writing strings, unless you really know what you're doing.- Parameters:
str- A byte array to be written- Returns:
- True if the string was successfully written, false otherwise
-
writeString
public static boolean writeString(String str, SocketChannel out)
Unsynchronized, use with caution- Returns:
- success
-
closeClientSocket
protected final void closeClientSocket() throws IOExceptionClose the socket connected to the SAM client.- Throws:
IOException
-
stopHandling
public void stopHandling()
Stop the SAM handler, close the client socket, unregister with the bridge.- Specified by:
stopHandlingin interfaceHandler
-
shouldStop
protected final boolean shouldStop()
Should the handler be stopped?- Returns:
- True if the handler should be stopped, false otherwise
-
toString
public final String toString()
Get a string describing the handler.
-
-