Converted Main class to Task/Resource
Converted Main class to TaskApp with resources created using Resource monad
This commit is contained in:
parent
1c2e3fb19f
commit
02c4e2f2f3
@ -31,38 +31,65 @@ import io.odin.syntax._
|
|||||||
import io.odin.monix._
|
import io.odin.monix._
|
||||||
import nova.monadic_sfx.pages.HomePage
|
import nova.monadic_sfx.pages.HomePage
|
||||||
import monix.execution.Callback
|
import monix.execution.Callback
|
||||||
|
import monix.eval.TaskApp
|
||||||
|
import cats.effect.ExitCode
|
||||||
|
import scalafx.scene.layout.HBox
|
||||||
|
import scalafx.scene.Scene
|
||||||
|
import cats.implicits._
|
||||||
|
import cats.effect.Clock
|
||||||
|
import cats.effect.Sync
|
||||||
|
|
||||||
object Main extends JFXApp with MainModule {
|
object Main extends TaskApp {
|
||||||
|
|
||||||
val logger = consoleLogger().withAsyncUnsafe()
|
// lazy val schedulers: Schedulers = new Schedulers()
|
||||||
|
// override implicit def scheduler: Scheduler = schedulers.fx
|
||||||
|
override def run(args: List[String]): Task[ExitCode] = {
|
||||||
|
// val logger = consoleLogger().withAsyncUnsafe()
|
||||||
|
|
||||||
|
// lazy val backendTask = AsyncHttpClientMonixBackend()
|
||||||
|
// lazy val actorSystemTask = Task {
|
||||||
|
// classic.ActorSystem(
|
||||||
|
// name = "FXActorSystem"
|
||||||
|
// )
|
||||||
|
// }
|
||||||
|
|
||||||
|
// implicit lazy val FSync = Sync[Task]
|
||||||
|
// implicit lazy val FClock = Clock[Task]
|
||||||
|
// val startTime = Task.clock
|
||||||
|
// .monotonic(scala.concurrent.duration.MILLISECONDS)
|
||||||
|
// .map(Duration.fromNanos(_))
|
||||||
|
lazy val appResource = for {
|
||||||
|
// clock <- Resource.liftF(Task(Task.clock))
|
||||||
|
logger <- consoleLogger().withAsync()
|
||||||
|
backend <- AsyncHttpClientMonixBackend.resource()
|
||||||
|
actorSystem <-
|
||||||
|
Resource.make(logger.info("Creating Actor System") >> Task {
|
||||||
|
classic.ActorSystem(
|
||||||
|
name = "FXActorSystem"
|
||||||
|
)
|
||||||
|
})(sys =>
|
||||||
|
logger.info("Shutting down actor system") >> Task.fromFuture(
|
||||||
|
sys.terminate()
|
||||||
|
) >> logger.info("Actor System terminated")
|
||||||
|
)
|
||||||
|
// _ <- Resource.liftF(logger.info(Thread.currentThread().getName()))
|
||||||
|
fxApp <- Resource.make(logger.info("Creating FX Application") >> Task {
|
||||||
|
// val appStage = makePrimaryStage(backend, actorSystem)
|
||||||
|
// stage = appStage
|
||||||
|
// val stage2 = new PrimaryStage {
|
||||||
|
// scene = new Scene(new HBox())
|
||||||
|
// }
|
||||||
|
val app: JFXApp = new JFXApp {
|
||||||
lazy val schedulers: Schedulers = new Schedulers()
|
lazy val schedulers: Schedulers = new Schedulers()
|
||||||
|
|
||||||
implicit lazy val defaultScheduler: Scheduler = schedulers.fx
|
implicit lazy val defaultScheduler: Scheduler = schedulers.fx
|
||||||
|
|
||||||
lazy val backendTask = AsyncHttpClientMonixBackend()
|
val application =
|
||||||
lazy val actorSystemTask = Task {
|
for {
|
||||||
classic.ActorSystem(
|
appStage <- logger.info("Inside JFX application stage") >> Task(
|
||||||
name = "FXActorSystem"
|
makePrimaryStage(backend, actorSystem)
|
||||||
)
|
)
|
||||||
}
|
_ <- Task { stage = appStage }
|
||||||
|
|
||||||
lazy val application = for {
|
|
||||||
_ <- logger.info("Starting application..")
|
|
||||||
backend <- backendTask
|
|
||||||
actorSystem <- actorSystemTask
|
|
||||||
// to spawn child actors
|
|
||||||
// _ <- Task { actorSystem.spawn() }
|
|
||||||
appStage <- Task { makePrimaryStage(backend, actorSystem) }
|
|
||||||
// splash screen
|
|
||||||
_ <- Task {
|
|
||||||
// this stage refers to implicit jfx stage
|
|
||||||
// makes this impure, but I can't think of a better way right now
|
|
||||||
stage = appStage
|
|
||||||
}
|
|
||||||
// wait 2 seconds before showing home screen
|
|
||||||
// d <- deps
|
|
||||||
// fib1 <- d.send().start
|
|
||||||
_ <- Task.sleep(2.seconds)
|
_ <- Task.sleep(2.seconds)
|
||||||
loginScene <- LoginPage(appStage, backend, actorSystem)
|
loginScene <- LoginPage(appStage, backend, actorSystem)
|
||||||
_ <- Task {
|
_ <- Task {
|
||||||
@ -75,7 +102,6 @@ object Main extends JFXApp with MainModule {
|
|||||||
loginScene
|
loginScene
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
// _ <- fib1.join
|
|
||||||
} yield ()
|
} yield ()
|
||||||
application.timed.runAsync(
|
application.timed.runAsync(
|
||||||
new Callback[Throwable, (FiniteDuration, Unit)] {
|
new Callback[Throwable, (FiniteDuration, Unit)] {
|
||||||
@ -95,134 +121,49 @@ object Main extends JFXApp with MainModule {
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
// Task
|
override def stopApp() = {
|
||||||
// .suspend {
|
Platform.exit()
|
||||||
// val program = Task {
|
// System.exit(0)
|
||||||
// stage = new PrimaryStage {
|
|
||||||
// // initStyle(StageStyle.Unified)
|
|
||||||
// title = "ScalaFX Hello World"
|
|
||||||
// scene = defaultUI.scene
|
|
||||||
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// val backendResource = AsyncHttpClientMonixBackend
|
|
||||||
// .resource()
|
|
||||||
// .use { implicit backend =>
|
|
||||||
// Task
|
|
||||||
// .suspend(
|
|
||||||
// (for {
|
|
||||||
// req <-
|
|
||||||
// basicRequest
|
|
||||||
// .get(uri"https://httpbin.org/get")
|
|
||||||
// .response(asJson[HttpBinResponse])
|
|
||||||
// .send()
|
|
||||||
// } yield println(req)) >>
|
|
||||||
// Task(println(Thread.currentThread().getName()))
|
|
||||||
// )
|
|
||||||
// // .delayExecution(1.second)
|
|
||||||
// }
|
|
||||||
// .executeOn(Scheduler.global)
|
|
||||||
// val akkaResource = Resource
|
|
||||||
// .make(Task {
|
|
||||||
// classic.ActorSystem(
|
|
||||||
// name = "FXActorSystem"
|
|
||||||
// )
|
|
||||||
// })(sys => Task(println("Shutting down actor system")) >> Task(sys.terminate()))
|
|
||||||
// .use { implicit system =>
|
|
||||||
// // system.spa
|
|
||||||
// // system.typed
|
|
||||||
// // val javaFxActor = system.actorOf(
|
|
||||||
// // Props[JavaFxActor]().withDispatcher("javafx-dispatcher"),
|
|
||||||
// // "javaFxActor"
|
|
||||||
// // )
|
|
||||||
// // val swingActor = system.actorOf(
|
|
||||||
// // Props[SwingActor]().withDispatcher("swing-dispatcher"),
|
|
||||||
// // "swingActor"
|
|
||||||
// // )
|
|
||||||
// Task.unit
|
|
||||||
// }
|
|
||||||
// .delayExecution(1.second)
|
|
||||||
// backendResource.start >> akkaResource.start >>
|
|
||||||
// program.to[Task].asyncBoundary >>
|
|
||||||
// Task(println(Thread.currentThread().getName()))
|
|
||||||
// .executeOn(Scheduler.global)
|
|
||||||
// Task.parZip3(
|
|
||||||
// program.to[Task].executeOn(defaultScheduler),
|
|
||||||
// // backendResource,
|
|
||||||
// // dummyRequester.send(),
|
|
||||||
// // akkaResource,
|
|
||||||
// Task(println(Thread.currentThread().getName()))
|
|
||||||
// .executeOn(schedulers.cpu)
|
|
||||||
// )
|
|
||||||
// }
|
|
||||||
// .runToFuture
|
|
||||||
// .onComplete(res =>
|
|
||||||
// res match {
|
|
||||||
// case Failure(exception) => {
|
|
||||||
// println("Application start failed. Reason -")
|
|
||||||
// exception.printStackTrace()
|
|
||||||
// }
|
|
||||||
// case Success(value) => println("Application started Successfully")
|
|
||||||
// }
|
|
||||||
// )
|
|
||||||
|
|
||||||
// new TaskApp {
|
|
||||||
// override protected def scheduler: Scheduler =
|
|
||||||
// JFXExecutionContexts.javaFxScheduler
|
|
||||||
// override def run(args: List[String]): Task[ExitCode] =
|
|
||||||
// Task.suspend {
|
|
||||||
// Task {
|
|
||||||
// AsyncHttpClientMonixBackend().flatMap(implicit backend => {
|
|
||||||
// val req = RequestPayload("").asJson
|
|
||||||
// basicRequest.get(uri"").body(req).send()
|
|
||||||
// })
|
|
||||||
// } >>
|
|
||||||
// program.to[Task].executeOn(JFXExecutionContexts.javaFxScheduler) >>
|
|
||||||
// Task(println(Thread.currentThread().getName()))
|
|
||||||
// .executeOn(Scheduler.global) >>
|
|
||||||
// // Task.unit.asyncBoundary >>
|
|
||||||
// Task.pure(ExitCode.Success)
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Task.sleep(3.seconds).flatMap { _ =>
|
|
||||||
//
|
|
||||||
// (for {
|
|
||||||
// req <-
|
|
||||||
// basicRequest
|
|
||||||
// .get(uri"https://httpbin.org/get")
|
|
||||||
// .response(asJson[HttpBinResponse])
|
|
||||||
// .send()
|
|
||||||
// } yield println(req)) >> Task(
|
|
||||||
// println(Thread.currentThread().getName())
|
|
||||||
// ) >>
|
|
||||||
// backend.close()
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
def test(stage: Stage) = {
|
|
||||||
stage.scene().setRoot(new FlowPane())
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
app
|
||||||
|
})(app => logger.info("Stopping FX Application") >> Task(app.stopApp()))
|
||||||
|
// _ <- Resource.liftF(Task.unit.executeOn(defaultScheduler))
|
||||||
|
_ <- Resource.liftF(logger.info(Thread.currentThread().getName()))
|
||||||
|
} yield (fxApp)
|
||||||
|
// >> logger.info("test")
|
||||||
|
appResource
|
||||||
|
.use(fxApp => Task(fxApp.main(args.toArray)))
|
||||||
|
.as(ExitCode.Success)
|
||||||
|
}
|
||||||
|
|
||||||
def makePrimaryStage(
|
def makePrimaryStage(
|
||||||
backend: AppTypes.HttpBackend,
|
backend: AppTypes.HttpBackend,
|
||||||
actorSystem: classic.ActorSystem
|
actorSystem: classic.ActorSystem
|
||||||
) = {
|
) = {
|
||||||
new PrimaryStage {
|
new PrimaryStage {
|
||||||
scene = new DefaultUI().scene
|
scene = new DefaultUI().scene
|
||||||
onCloseRequest = () => {
|
// onCloseRequest = () => {
|
||||||
val f2 = actorSystem.terminate()
|
// val f2 = actorSystem.terminate()
|
||||||
val f1 = backend.close().runToFuture
|
// val f1 = backend.close().runToFuture
|
||||||
|
|
||||||
println("Closing backend")
|
// println("Closing backend")
|
||||||
Await.result(f1, 3.seconds)
|
// Await.result(f1, 3.seconds)
|
||||||
println("Closing actor system")
|
// println("Closing actor system")
|
||||||
println(Thread.currentThread().getName())
|
// println(Thread.currentThread().getName())
|
||||||
Await.result(f2, 3.seconds)
|
// Await.result(f2, 3.seconds)
|
||||||
println("Actor system closed")
|
// println("Actor system closed")
|
||||||
Platform.exit()
|
// Platform.exit()
|
||||||
System.exit(0)
|
// System.exit(0)
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// class MyFxApp extends javafx.application.Application {
|
||||||
|
|
||||||
|
// override def start(stage: javafx.stage.Stage): Unit = {
|
||||||
|
// stage.show()
|
||||||
|
// }
|
||||||
|
|
||||||
|
// }
|
||||||
|
Loading…
Reference in New Issue
Block a user