Skip to content

Commit

Permalink
Added sample from tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
icha024 committed Apr 22, 2016
1 parent 4f54074 commit 1a48995
Show file tree
Hide file tree
Showing 26 changed files with 1,093 additions and 45 deletions.
3 changes: 3 additions & 0 deletions HelloScala/out/production/HelloScala/application.conf
@@ -0,0 +1,3 @@
akka {
loglevel = INFO
}
1 change: 1 addition & 0 deletions HelloScala/project/plugins.sbt
@@ -0,0 +1 @@
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")
3 changes: 3 additions & 0 deletions HelloScala/src/main/resources/application.conf
@@ -0,0 +1,3 @@
akka {
loglevel = INFO
}
File renamed without changes.
File renamed without changes.
59 changes: 59 additions & 0 deletions HelloScala/src/main/scala/com/example/ExtractorLab.scala
@@ -0,0 +1,59 @@
package com.example

object ExtractorLab extends App {

val httpUrl = "http://www.google.com"
val ftpUrl = "ftp://www.google.com"
val sshUrl = "ssh://www.google.com"

val url = new MyUrl(httpUrl)
printProtoType(url)
val url2 = new MyUrl(ftpUrl)
printProtoType(url2)
val url3 = new MyUrl(sshUrl)
printProtoType(url3)
val url4 = new MyUrl("")
printProtoType(url4)
val url5 = new MyUrl(null)
printProtoType(url5)

def printProtoType(url: MyUrl): Unit = {
url match {
// case MyUrl(x) => println("x matches: " + x) // Both constructor pattern is valid
case MyUrl(protocol, _) if protocol.equals("http") => println("It's a HTTP endpoint")
case MyUrl(protocol, _) if protocol.equals("ftp") => println("FTP is the way")
case MyUrl(protocol, _) => println("I have no idea what this is: " + protocol)
case _ => println("Unknown input")
}
}

val urlList = List(url, url2, url3, url4, url5)
// urlList.map(_.protocol.getOrElse("Not specified")).foreach(prot => println("protocol is: " + prot))
urlList.filter(_.url != None).map(_.url).foreach(outUrl => println("url is: " + outUrl.get))
urlList.filter(_.protocol != None).map(_.protocol).foreach(protocol => if (!protocol.get.isEmpty) println("protocol is: " + protocol.get))

println("do the same with flatmap")
urlList.flatMap(_.url).foreach(flatUrl => println("flatmap url: " + flatUrl))
urlList.flatMap(_.protocol).foreach(flatProt => if (!flatProt.isEmpty) println("flatmap protocol: " + flatProt))
}

class MyUrl(val inputUrl: String) {
// private val urlSplit: Array[String] = if (inputUrl.isEmpty) Array.fill[String](2)("") else inputUrl.split("://")
private val urlSplit: Array[String] = Option(inputUrl).getOrElse("").split("://")
def protocol = Option(urlSplit(0))
def url = if(urlSplit.length < 2) None else Some(urlSplit(1))
}

object MyUrl {
def unapply(arg: MyUrl): Option[(String, String)] = {
// if (!(arg.url == null) && !(arg.protocol == null)) Some((arg.protocol.getOrElse(""), arg.url))
// else None
Some((arg.protocol.getOrElse("(undefined)"), arg.url.getOrElse("(undefined)")))
}
// def unapplySeq(arg: MyUrl): Option[Seq[String]] = {
// if (!arg.url.isEmpty && !arg.protocol.isEmpty) Some(Array(arg.protocol, arg.url))
// else None
// }
}


File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions akka-pi-calculator/build.sbt
@@ -0,0 +1,9 @@
name := "My Project"

version := "1.0"

scalaVersion := "2.9.1"

resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"

libraryDependencies += "com.typesafe.akka" % "akka-actor" % "2.0"
40 changes: 40 additions & 0 deletions akka-pi-calculator/pom.xml
@@ -0,0 +1,40 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.example</groupId>
<artifactId>firstproj</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>firstproj</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.11</artifactId>
<version>2.4.4</version>
</dependency>
</dependencies>

<!--<repositories>-->
<!--<repository>-->
<!--<id>akka-snapshots</id>-->
<!--<snapshots>-->
<!--<enabled>true</enabled>-->
<!--</snapshots>-->
<!--<url>http://repo.akka.io/snapshots/</url>-->
<!--</repository>-->
<!--</repositories>-->
</project>
84 changes: 84 additions & 0 deletions akka-pi-calculator/src/main/scala/com/example/Pi.scala
@@ -0,0 +1,84 @@
package com.example

import akka.actor.Actor
import akka.actor._

object Pi extends App {

calculate(nrOfWorkers = 4, nrOfElements = 10000, nrOfMessages = 10000)

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: Long)

class Worker extends Actor {

def calculatePiFor(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
}

def receive = {
case Work(start, nrOfElements) =>
sender ! Result(calculatePiFor(start, nrOfElements)) // perform the work
}
}

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], "workerRouter")
// Props[Worker].withRouter(RoundRobinRouter(nrOfWorkers)), 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()
}
}


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

}
}
121 changes: 121 additions & 0 deletions akka-sample-main-scala/COPYING
@@ -0,0 +1,121 @@
Creative Commons Legal Code

CC0 1.0 Universal

CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
HEREUNDER.

Statement of Purpose

The laws of most jurisdictions throughout the world automatically confer
exclusive Copyright and Related Rights (defined below) upon the creator
and subsequent owner(s) (each and all, an "owner") of an original work of
authorship and/or a database (each, a "Work").

Certain owners wish to permanently relinquish those rights to a Work for
the purpose of contributing to a commons of creative, cultural and
scientific works ("Commons") that the public can reliably and without fear
of later claims of infringement build upon, modify, incorporate in other
works, reuse and redistribute as freely as possible in any form whatsoever
and for any purposes, including without limitation commercial purposes.
These owners may contribute to the Commons to promote the ideal of a free
culture and the further production of creative, cultural and scientific
works, or to gain reputation or greater distribution for their Work in
part through the use and efforts of others.

For these and/or other purposes and motivations, and without any
expectation of additional consideration or compensation, the person
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
is an owner of Copyright and Related Rights in the Work, voluntarily
elects to apply CC0 to the Work and publicly distribute the Work under its
terms, with knowledge of his or her Copyright and Related Rights in the
Work and the meaning and intended legal effect of CC0 on those rights.

1. Copyright and Related Rights. A Work made available under CC0 may be
protected by copyright and related or neighboring rights ("Copyright and
Related Rights"). Copyright and Related Rights include, but are not
limited to, the following:

i. the right to reproduce, adapt, distribute, perform, display,
communicate, and translate a Work;
ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or
likeness depicted in a Work;
iv. rights protecting against unfair competition in regards to a Work,
subject to the limitations in paragraph 4(a), below;
v. rights protecting the extraction, dissemination, use and reuse of data
in a Work;
vi. database rights (such as those arising under Directive 96/9/EC of the
European Parliament and of the Council of 11 March 1996 on the legal
protection of databases, and under any national implementation
thereof, including any amended or successor version of such
directive); and
vii. other similar, equivalent or corresponding rights throughout the
world based on applicable law or treaty, and any national
implementations thereof.

2. Waiver. To the greatest extent permitted by, but not in contravention
of, applicable law, Affirmer hereby overtly, fully, permanently,
irrevocably and unconditionally waives, abandons, and surrenders all of
Affirmer's Copyright and Related Rights and associated claims and causes
of action, whether now known or unknown (including existing as well as
future claims and causes of action), in the Work (i) in all territories
worldwide, (ii) for the maximum duration provided by applicable law or
treaty (including future time extensions), (iii) in any current or future
medium and for any number of copies, and (iv) for any purpose whatsoever,
including without limitation commercial, advertising or promotional
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
member of the public at large and to the detriment of Affirmer's heirs and
successors, fully intending that such Waiver shall not be subject to
revocation, rescission, cancellation, termination, or any other legal or
equitable action to disrupt the quiet enjoyment of the Work by the public
as contemplated by Affirmer's express Statement of Purpose.

3. Public License Fallback. Should any part of the Waiver for any reason
be judged legally invalid or ineffective under applicable law, then the
Waiver shall be preserved to the maximum extent permitted taking into
account Affirmer's express Statement of Purpose. In addition, to the
extent the Waiver is so judged Affirmer hereby grants to each affected
person a royalty-free, non transferable, non sublicensable, non exclusive,
irrevocable and unconditional license to exercise Affirmer's Copyright and
Related Rights in the Work (i) in all territories worldwide, (ii) for the
maximum duration provided by applicable law or treaty (including future
time extensions), (iii) in any current or future medium and for any number
of copies, and (iv) for any purpose whatsoever, including without
limitation commercial, advertising or promotional purposes (the
"License"). The License shall be deemed effective as of the date CC0 was
applied by Affirmer to the Work. Should any part of the License for any
reason be judged legally invalid or ineffective under applicable law, such
partial invalidity or ineffectiveness shall not invalidate the remainder
of the License, and in such case Affirmer hereby affirms that he or she
will not (i) exercise any of his or her remaining Copyright and Related
Rights in the Work or (ii) assert any associated claims and causes of
action with respect to the Work, in either case contrary to Affirmer's
express Statement of Purpose.

4. Limitations and Disclaimers.

a. No trademark or patent rights held by Affirmer are waived, abandoned,
surrendered, licensed or otherwise affected by this document.
b. Affirmer offers the Work as-is and makes no representations or
warranties of any kind concerning the Work, express, implied,
statutory or otherwise, including without limitation warranties of
title, merchantability, fitness for a particular purpose, non
infringement, or the absence of latent or other defects, accuracy, or
the present or absence of errors, whether or not discoverable, all to
the greatest extent permissible under applicable law.
c. Affirmer disclaims responsibility for clearing rights of other persons
that may apply to the Work or any use thereof, including without
limitation any person's Copyright and Related Rights in the Work.
Further, Affirmer disclaims responsibility for obtaining any necessary
consents, permissions or other rights required for any use of the
Work.
d. Affirmer understands and acknowledges that Creative Commons is not a
party to this document and has no duty or obligation with respect to
this CC0 or use of the Work.
10 changes: 10 additions & 0 deletions akka-sample-main-scala/LICENSE
@@ -0,0 +1,10 @@
Activator Template by Lightbend

Licensed under Public Domain (CC0)

To the extent possible under law, the person who associated CC0 with
this Activator Tempate has waived all copyright and related or neighboring
rights to this Activator Template.

You should have received a copy of the CC0 legalcode along with this
work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.

0 comments on commit 1a48995

Please sign in to comment.