Created
March 15, 2013 14:32
-
-
Save tuxdna/5170249 to your computer and use it in GitHub Desktop.
Pi example for Akka
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import akka.actor._ | |
import akka.routing.RoundRobinRouter | |
import akka.util.Duration | |
import akka.util.duration._ | |
sealed trait PiMessage | |
case object Calculate extends PiMessage | |
case class Work(start: Int, nrOfElements: Int) extends PiMessage | |
case class Result(value: Double) extends PiMessage | |
case class PiApproximation(pi: Double, duration: Double) extends PiMessage | |
class Worker extends Actor { | |
def receive = { | |
case Work(start, nrOfElements) => sender ! Result(calcuatePiFor(start, nrOfElements)) // perform the work | |
} | |
def calcuatePiFor(start: Int, nrOfElements: Int) : Double = { | |
var acc = 0.0 | |
for(i <- start until (start + nrOfElements) ) acc += 4.0 * (1 - (i % 2) * 2) / (2 * i + 1) | |
acc | |
} | |
} | |
class Master(nrOfWorkers: Int, nrOfMessages: Int, nrOfElements: Int, listener: ActorRef) extends Actor { | |
var pi: Double = _ | |
var nrOfResults: Int = _ | |
val start: Long = System.currentTimeMillis | |
val workerRouter = context.actorOf( | |
Props[Worker].withRouter(RoundRobinRouter(nrOfElements)), | |
name = "workerRouter" | |
) | |
def receive = { | |
case Calculate => | |
for (i <- 0 until nrOfMessages) | |
workerRouter ! Work(i * nrOfElements, nrOfElements) | |
case Result(value) => | |
pi += value | |
nrOfResults += 1 | |
if (nrOfResults == nrOfMessages) { | |
// Send the result to the listener | |
listener ! PiApproximation(pi, duration = (System.currentTimeMillis - start)) | |
// Stops this actor and all its supervised children | |
context.stop(self) | |
} | |
} | |
} | |
class Listener extends Actor { | |
def receive = { | |
case PiApproximation(pi, duration) => | |
println("\n\tPi approximation: \t\t%s\n\tCalculation time: \t%s".format(pi, duration)) | |
context.system.shutdown() | |
} | |
} | |
object Pi extends App { | |
calculate(nrOfWorkers = 4, nrOfElements = 10000, nrOfMessages = 10000) | |
// actors and messages ... | |
def calculate(nrOfWorkers: Int, nrOfElements: Int, nrOfMessages: Int) { | |
// Create an Akka system | |
val system = ActorSystem("PiSystem") | |
// create the result listener, which will print the result and | |
// shutdown the system | |
val listener = system.actorOf( | |
Props[Listener], | |
name = "listener") | |
// create the master | |
val master = system.actorOf( | |
Props(new Master(nrOfWorkers, nrOfMessages, | |
nrOfElements, listener)), | |
name = "master") | |
// start the calculation | |
master ! Calculate | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment