2013-02-05 11:48:47 +01:00
|
|
|
/**
|
2014-02-02 19:05:45 -06:00
|
|
|
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
|
2013-02-05 11:48:47 +01:00
|
|
|
*/
|
|
|
|
|
package akka.io
|
|
|
|
|
|
|
|
|
|
import java.net.{ DatagramSocket, Socket, ServerSocket }
|
|
|
|
|
|
|
|
|
|
object Inet {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* SocketOption is a package of data (from the user) and associated
|
|
|
|
|
* behavior (how to apply that to a socket).
|
|
|
|
|
*/
|
|
|
|
|
trait SocketOption {
|
|
|
|
|
|
|
|
|
|
def beforeDatagramBind(ds: DatagramSocket): Unit = ()
|
|
|
|
|
|
|
|
|
|
def beforeServerSocketBind(ss: ServerSocket): Unit = ()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option before calling connect()
|
|
|
|
|
*/
|
|
|
|
|
def beforeConnect(s: Socket): Unit = ()
|
|
|
|
|
/**
|
|
|
|
|
* Action to be taken for this option after connect returned (i.e. on
|
|
|
|
|
* the slave socket for servers).
|
|
|
|
|
*/
|
|
|
|
|
def afterConnect(s: Socket): Unit = ()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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]]
|
|
|
|
|
*/
|
|
|
|
|
case class ReceiveBufferSize(size: Int) extends SocketOption {
|
|
|
|
|
require(size > 0, "ReceiveBufferSize must be > 0")
|
|
|
|
|
override def beforeServerSocketBind(s: ServerSocket): Unit = s.setReceiveBufferSize(size)
|
|
|
|
|
override def beforeDatagramBind(s: DatagramSocket): Unit = s.setReceiveBufferSize(size)
|
|
|
|
|
override def beforeConnect(s: Socket): Unit = s.setReceiveBufferSize(size)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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]]
|
|
|
|
|
*/
|
|
|
|
|
case class ReuseAddress(on: Boolean) extends SocketOption {
|
|
|
|
|
override def beforeServerSocketBind(s: ServerSocket): Unit = s.setReuseAddress(on)
|
|
|
|
|
override def beforeDatagramBind(s: DatagramSocket): Unit = s.setReuseAddress(on)
|
|
|
|
|
override def beforeConnect(s: Socket): Unit = s.setReuseAddress(on)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
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]]
|
|
|
|
|
*/
|
|
|
|
|
case class SendBufferSize(size: Int) extends SocketOption {
|
|
|
|
|
require(size > 0, "SendBufferSize must be > 0")
|
|
|
|
|
override def afterConnect(s: Socket): Unit = s.setSendBufferSize(size)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
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]]
|
|
|
|
|
*/
|
|
|
|
|
case class TrafficClass(tc: Int) extends SocketOption {
|
|
|
|
|
require(0 <= tc && tc <= 255, "TrafficClass needs to be in the interval [0, 255]")
|
|
|
|
|
override def afterConnect(s: Socket): Unit = s.setTrafficClass(tc)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
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)
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-05 11:48:47 +01:00
|
|
|
}
|