summaryrefslogtreecommitdiff
path: root/src/main/scala/org/xapek/influxdbExample
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2015-08-03 00:18:20 +0200
committerYves Fischer <yvesf-git@xapek.org>2015-08-03 00:18:20 +0200
commitdcabe1a774ac3ab6eee7e837aa09ee26b60e8b82 (patch)
tree1647576f1d327c8720acda6dc489e051402aa6e9 /src/main/scala/org/xapek/influxdbExample
parentab3a129bfd7572d6d3d9457b5ded57c1a811f748 (diff)
downloadinfluxdb-tools-dcabe1a774ac3ab6eee7e837aa09ee26b60e8b82.tar.gz
influxdb-tools-dcabe1a774ac3ab6eee7e837aa09ee26b60e8b82.zip
Restructure into separate filesHEADmaster
Diffstat (limited to 'src/main/scala/org/xapek/influxdbExample')
-rw-r--r--src/main/scala/org/xapek/influxdbExample/example1.scala58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/main/scala/org/xapek/influxdbExample/example1.scala b/src/main/scala/org/xapek/influxdbExample/example1.scala
new file mode 100644
index 0000000..85b48eb
--- /dev/null
+++ b/src/main/scala/org/xapek/influxdbExample/example1.scala
@@ -0,0 +1,58 @@
+package org.xapek.influxdbExample
+
+import java.util.Date
+import java.util.Calendar
+import java.util.concurrent.TimeUnit
+import akka.actor.Actor
+import akka.actor.Props
+import akka.actor.ActorRef
+import akka.actor.ActorSystem
+import akka.actor.ActorLogging
+import scala.concurrent.duration.Duration
+import org.xapek.influxdb.InfluxDB._
+import org.xapek.influxdb.InfluxDB
+import org.xapek.influxdb.Mapper
+
+case object TimerSignal
+
+class InfluxReader(db: InfluxDB, date1: Date, date2: Date, receiver: ActorRef) extends Actor with ActorLogging {
+ val query = SELECT("Bid")("Ask")("Volume") FROM "yahoo.GOOGL" WHERE time > date1 && time < date2
+ val mapper = new Mapper(db, query)
+ def receive = {
+ case TimerSignal =>
+ log.info("Run query")
+ receiver ! (mapper.map { (time, bid, ask, volume) => s"time=$time bid=$bid ask=$ask volume=$volume" })
+ }
+}
+
+class ConsoleWriter extends Actor with ActorLogging {
+ def receive = {
+ case value =>
+ log.info(value.toString)
+ }
+}
+
+object Main {
+ def main(args: Array[String]): Unit = {
+ val db: InfluxDB = fromUrl("http://root:root@db.2.localnet.cc:8086/query?db=data&user=root&password=root")
+
+ val calendar = Calendar.getInstance
+ calendar.set(Calendar.DAY_OF_YEAR, calendar.get(Calendar.DAY_OF_YEAR) - 4)
+ val date1 = calendar.getTime
+ calendar.set(Calendar.DAY_OF_YEAR, calendar.get(Calendar.DAY_OF_YEAR) + 1)
+ val date2 = calendar.getTime
+
+ val system = ActorSystem("AkkaSystem")
+
+ val writer = system.actorOf(Props(new ConsoleWriter()), "writer")
+ val reader = system.actorOf(Props(new InfluxReader(db, date1, date2, writer)), "reader")
+
+ system.scheduler.schedule(Duration.Zero, Duration.create(5, TimeUnit.SECONDS),
+ reader, TimerSignal)(system.dispatcher, null)
+
+ println("Press key to exit")
+ System.in.read()
+ system.shutdown()
+ }
+}
+