Bump checkstyle version
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-xnf-simulator / src / main / kotlin / org / onap / dcae / collectors / veshv / simulators / xnf / impl / simulations.kt
1 /*
2  * ============LICENSE_START=======================================================
3  * dcaegen2-collectors-veshv
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.dcae.collectors.veshv.simulators.xnf.impl
21
22 import arrow.effects.IO
23 import kotlinx.coroutines.asCoroutineDispatcher
24 import org.onap.dcae.collectors.veshv.simulators.xnf.impl.adapters.XnfApiServer
25 import org.onap.dcae.collectors.veshv.utils.logging.Logger
26 import java.util.*
27 import java.util.concurrent.ConcurrentHashMap
28 import java.util.concurrent.Executor
29 import java.util.concurrent.Executors
30
31 /**
32  * @author Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
33  * @since August 2018
34  */
35 class OngoingSimulations(executor: Executor = Executors.newCachedThreadPool()) {
36     private val asyncSimulationContext = executor.asCoroutineDispatcher()
37     private val simulations = ConcurrentHashMap<UUID, Status>()
38
39     fun startAsynchronousSimulation(simulationIo: IO<Unit>): UUID {
40         val id = UUID.randomUUID()
41         simulations[id] = StatusOngoing
42
43         simulationIo.continueOn(asyncSimulationContext).unsafeRunAsync { result ->
44             result.fold(
45                     { err ->
46                         logger.warn("Error", err)
47                         simulations[id] = StatusFailure(err)
48                     },
49                     {
50                         logger.info("Finished sending messages")
51                         simulations[id] = StatusSuccess
52                     }
53             )
54         }
55         return id
56     }
57
58     fun status(id: UUID) = simulations.getOrDefault(id, StatusNotFound)
59
60     internal fun clear() {
61         simulations.clear()
62     }
63
64     companion object {
65         private val logger = Logger(XnfApiServer::class)
66     }
67 }
68
69 sealed class Status(val message: String) {
70     override fun toString() = this::class.simpleName ?: "null"
71 }
72
73 object StatusNotFound : Status("not found")
74 object StatusOngoing : Status("ongoing")
75 object StatusSuccess : Status("success")
76 data class StatusFailure(val cause: Throwable) : Status("Error ${cause.message}")