2013-02-05 11:48:47 +01:00
|
|
|
/**
|
2015-03-07 22:58:48 -08:00
|
|
|
* Copyright (C) 2009-2015 Typesafe Inc. <http://www.typesafe.com>
|
2013-02-05 11:48:47 +01:00
|
|
|
*/
|
|
|
|
|
package akka.io
|
|
|
|
|
|
2013-09-08 09:29:45 -05:00
|
|
|
import java.nio.channels.{ DatagramChannel, SocketChannel, ServerSocketChannel }
|
2013-02-05 11:48:47 +01:00
|
|
|
|
|
|
|
|
object Inet {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SocketOption is a package of data (from the user) and associated
|
2014-08-19 14:02:23 +03:00
|
|
|
* behavior (how to apply that to a channel).
|
2013-02-05 11:48:47 +01:00
|
|
|
*/
|
|
|
|
|
trait SocketOption {
|
|
|
|
|
|
2013-09-08 09:29:45 -05:00
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option before bind() is called
|
|
|
|
|
*/
|
|
|
|
|
def beforeBind(ds: DatagramChannel): Unit = ()
|
2013-02-05 11:48:47 +01:00
|
|
|
|
2013-09-08 09:29:45 -05:00
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option before bind() is called
|
|
|
|
|
*/
|
|
|
|
|
def beforeBind(ss: ServerSocketChannel): Unit = ()
|
2013-02-05 11:48:47 +01:00
|
|
|
|
|
|
|
|
/**
|
2013-09-08 09:29:45 -05:00
|
|
|
* Action to be taken for this option before bind() is called
|
2013-02-05 11:48:47 +01:00
|
|
|
*/
|
2013-09-08 09:29:45 -05:00
|
|
|
def beforeBind(s: SocketChannel): Unit = ()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option after connect returned (i.e. on
|
|
|
|
|
* the slave socket for servers).
|
|
|
|
|
*/
|
|
|
|
|
def afterConnect(c: DatagramChannel): Unit = ()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option after connect returned (i.e. on
|
|
|
|
|
* the slave socket for servers).
|
|
|
|
|
*/
|
|
|
|
|
def afterConnect(c: ServerSocketChannel): Unit = ()
|
|
|
|
|
|
2013-02-05 11:48:47 +01:00
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option after connect returned (i.e. on
|
|
|
|
|
* the slave socket for servers).
|
|
|
|
|
*/
|
2013-09-08 09:29:45 -05:00
|
|
|
def afterConnect(c: SocketChannel): Unit = ()
|
2013-02-05 11:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
2014-08-19 14:02:23 +03:00
|
|
|
/**
|
|
|
|
|
* DatagramChannel creation behavior.
|
|
|
|
|
*/
|
|
|
|
|
class DatagramChannelCreator extends SocketOption {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Open and return new DatagramChannel.
|
|
|
|
|
*
|
|
|
|
|
* [[scala.throws]] is needed because [[DatagramChannel.open]] method
|
|
|
|
|
* can throw an exception.
|
|
|
|
|
*/
|
|
|
|
|
@throws(classOf[Exception])
|
|
|
|
|
def create(): DatagramChannel = DatagramChannel.open()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
object DatagramChannelCreator {
|
|
|
|
|
val default = new DatagramChannelCreator()
|
|
|
|
|
def apply() = default
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-05 11:48:47 +01:00
|
|
|
object SO {
|
|
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to set the SO_RCVBUF option
|
2013-02-05 11:48:47 +01:00
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setReceiveBufferSize]]
|
|
|
|
|
*/
|
2014-03-07 13:20:01 +01:00
|
|
|
final case class ReceiveBufferSize(size: Int) extends SocketOption {
|
2013-02-05 11:48:47 +01:00
|
|
|
require(size > 0, "ReceiveBufferSize must be > 0")
|
2013-09-08 09:29:45 -05:00
|
|
|
override def beforeBind(c: ServerSocketChannel): Unit = c.socket.setReceiveBufferSize(size)
|
|
|
|
|
override def beforeBind(c: DatagramChannel): Unit = c.socket.setReceiveBufferSize(size)
|
|
|
|
|
override def beforeBind(c: SocketChannel): Unit = c.socket.setReceiveBufferSize(size)
|
2013-02-05 11:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// server socket options
|
|
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to enable or disable SO_REUSEADDR
|
2013-02-05 11:48:47 +01:00
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setReuseAddress]]
|
|
|
|
|
*/
|
2014-03-07 13:20:01 +01:00
|
|
|
final case class ReuseAddress(on: Boolean) extends SocketOption {
|
2013-09-08 09:29:45 -05:00
|
|
|
override def beforeBind(c: ServerSocketChannel): Unit = c.socket.setReuseAddress(on)
|
|
|
|
|
override def beforeBind(c: DatagramChannel): Unit = c.socket.setReuseAddress(on)
|
|
|
|
|
override def beforeBind(c: SocketChannel): Unit = c.socket.setReuseAddress(on)
|
2013-02-05 11:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to set the SO_SNDBUF option.
|
2013-02-05 11:48:47 +01:00
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setSendBufferSize]]
|
|
|
|
|
*/
|
2014-03-07 13:20:01 +01:00
|
|
|
final case class SendBufferSize(size: Int) extends SocketOption {
|
2013-02-05 11:48:47 +01:00
|
|
|
require(size > 0, "SendBufferSize must be > 0")
|
2013-09-08 09:29:45 -05:00
|
|
|
override def afterConnect(c: DatagramChannel): Unit = c.socket.setSendBufferSize(size)
|
|
|
|
|
override def afterConnect(c: SocketChannel): Unit = c.socket.setSendBufferSize(size)
|
2013-02-05 11:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to set the traffic class or
|
2013-02-05 11:48:47 +01:00
|
|
|
* type-of-service octet in the IP header for packets sent from this
|
|
|
|
|
* socket.
|
|
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setTrafficClass]]
|
|
|
|
|
*/
|
2014-03-07 13:20:01 +01:00
|
|
|
final case class TrafficClass(tc: Int) extends SocketOption {
|
2013-02-05 11:48:47 +01:00
|
|
|
require(0 <= tc && tc <= 255, "TrafficClass needs to be in the interval [0, 255]")
|
2013-09-08 09:29:45 -05:00
|
|
|
override def afterConnect(c: DatagramChannel): Unit = c.socket.setTrafficClass(tc)
|
|
|
|
|
override def afterConnect(c: SocketChannel): Unit = c.socket.setTrafficClass(tc)
|
2013-02-05 11:48:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-06 11:38:42 +01:00
|
|
|
trait SoForwarders {
|
2013-05-26 18:29:23 +02:00
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to set the SO_RCVBUF option
|
2013-05-26 18:29:23 +02:00
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setReceiveBufferSize]]
|
|
|
|
|
*/
|
2013-02-06 11:38:42 +01:00
|
|
|
val ReceiveBufferSize = SO.ReceiveBufferSize
|
2013-05-26 18:29:23 +02:00
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to enable or disable SO_REUSEADDR
|
2013-05-26 18:29:23 +02:00
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setReuseAddress]]
|
|
|
|
|
*/
|
2013-02-06 11:38:42 +01:00
|
|
|
val ReuseAddress = SO.ReuseAddress
|
2013-05-26 18:29:23 +02:00
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to set the SO_SNDBUF option.
|
2013-05-26 18:29:23 +02:00
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setSendBufferSize]]
|
|
|
|
|
*/
|
2013-02-06 11:38:42 +01:00
|
|
|
val SendBufferSize = SO.SendBufferSize
|
2013-05-26 18:29:23 +02:00
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to set the traffic class or
|
2013-05-26 18:29:23 +02:00
|
|
|
* type-of-service octet in the IP header for packets sent from this
|
|
|
|
|
* socket.
|
|
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setTrafficClass]]
|
|
|
|
|
*/
|
2013-02-06 11:38:42 +01:00
|
|
|
val TrafficClass = SO.TrafficClass
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-15 09:13:39 +01:00
|
|
|
trait SoJavaFactories {
|
|
|
|
|
import SO._
|
2013-05-26 18:29:23 +02:00
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to set the SO_RCVBUF option
|
2013-05-26 18:29:23 +02:00
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setReceiveBufferSize]]
|
|
|
|
|
*/
|
2013-02-15 09:13:39 +01:00
|
|
|
def receiveBufferSize(size: Int) = ReceiveBufferSize(size)
|
2013-05-26 18:29:23 +02:00
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to enable or disable SO_REUSEADDR
|
2013-05-26 18:29:23 +02:00
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setReuseAddress]]
|
|
|
|
|
*/
|
2013-02-15 09:13:39 +01:00
|
|
|
def reuseAddress(on: Boolean) = ReuseAddress(on)
|
2013-05-26 18:29:23 +02:00
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to set the SO_SNDBUF option.
|
2013-05-26 18:29:23 +02:00
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setSendBufferSize]]
|
|
|
|
|
*/
|
2013-02-15 09:13:39 +01:00
|
|
|
def sendBufferSize(size: Int) = SendBufferSize(size)
|
2013-05-26 18:29:23 +02:00
|
|
|
|
|
|
|
|
/**
|
2013-07-05 12:46:39 +02:00
|
|
|
* [[akka.io.Inet.SocketOption]] to set the traffic class or
|
2013-05-26 18:29:23 +02:00
|
|
|
* type-of-service octet in the IP header for packets sent from this
|
|
|
|
|
* socket.
|
|
|
|
|
*
|
|
|
|
|
* For more information see [[java.net.Socket.setTrafficClass]]
|
|
|
|
|
*/
|
2013-02-15 09:13:39 +01:00
|
|
|
def trafficClass(tc: Int) = TrafficClass(tc)
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-19 14:02:23 +03:00
|
|
|
/**
|
|
|
|
|
* Java API: AbstractSocketOption is a package of data (from the user) and associated
|
|
|
|
|
* behavior (how to apply that to a channel).
|
|
|
|
|
*/
|
|
|
|
|
abstract class AbstractSocketOption extends SocketOption {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option before bind() is called
|
|
|
|
|
*/
|
|
|
|
|
override def beforeBind(ds: DatagramChannel): Unit = ()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option before bind() is called
|
|
|
|
|
*/
|
|
|
|
|
override def beforeBind(ss: ServerSocketChannel): Unit = ()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option before bind() is called
|
|
|
|
|
*/
|
|
|
|
|
override def beforeBind(s: SocketChannel): Unit = ()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option after connect returned (i.e. on
|
|
|
|
|
* the slave socket for servers).
|
|
|
|
|
*/
|
|
|
|
|
override def afterConnect(c: DatagramChannel): Unit = ()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option after connect returned (i.e. on
|
|
|
|
|
* the slave socket for servers).
|
|
|
|
|
*/
|
|
|
|
|
override def afterConnect(c: ServerSocketChannel): Unit = ()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option after connect returned (i.e. on
|
|
|
|
|
* the slave socket for servers).
|
|
|
|
|
*/
|
|
|
|
|
override def afterConnect(c: SocketChannel): Unit = ()
|
|
|
|
|
}
|
2013-02-05 11:48:47 +01:00
|
|
|
}
|