3248600952f998cf28a98142a5a2dba2d8f9aab0
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-health-check / src / main / kotlin / org / onap / dcae / collectors / veshv / healthcheck / factory / HealthCheckApiServer.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.healthcheck.factory
21
22 import arrow.effects.IO
23 import io.netty.handler.codec.http.HttpResponseStatus
24 import org.onap.dcae.collectors.veshv.healthcheck.api.HealthDescription
25 import org.onap.dcae.collectors.veshv.healthcheck.api.HealthState
26 import org.onap.dcae.collectors.veshv.healthcheck.ports.PrometheusMetricsProvider
27 import org.onap.dcae.collectors.veshv.utils.NettyServerHandle
28 import org.onap.dcae.collectors.veshv.utils.ServerHandle
29 import org.onap.dcae.collectors.veshv.utils.logging.Logger
30 import reactor.core.publisher.Flux
31 import reactor.core.publisher.Mono
32 import reactor.netty.DisposableServer
33 import reactor.netty.http.server.HttpServer
34 import reactor.netty.http.server.HttpServerRequest
35 import reactor.netty.http.server.HttpServerResponse
36 import java.net.SocketAddress
37 import java.util.concurrent.atomic.AtomicReference
38
39 /**
40  * @author Jakub Dudycz <jakub.dudycz@nokia.com>
41  * @since August 2018
42  */
43 class HealthCheckApiServer(private val healthState: HealthState,
44                            private val monitoring: PrometheusMetricsProvider,
45                            private val listenAddress: SocketAddress) {
46
47     private val healthDescription: AtomicReference<HealthDescription> = AtomicReference(HealthDescription.STARTING)
48
49     fun start(): IO<ServerHandle> = IO {
50         healthState().subscribe(healthDescription::set)
51         val ctx = HttpServer.create()
52                 .tcpConfiguration {
53                     it.addressSupplier { listenAddress }
54                             .doOnUnbound { logClose() }
55                 }
56                 .route { routes ->
57                     routes.get("/health/ready", ::readinessHandler)
58                     routes.get("/health/alive", ::livenessHandler)
59                     routes.get("/monitoring/prometheus", ::monitoringHandler)
60                 }
61         NettyServerHandle(ctx.bindNow())
62     }
63
64     private fun readinessHandler(_req: HttpServerRequest, resp: HttpServerResponse) =
65             healthDescription.get().run {
66                 logger.debug { "Component status: $status, $message" }
67                 resp.status(status.httpResponseStatus.number).sendString(Flux.just(status.toString(), "\n", message))
68             }
69
70     private fun livenessHandler(_req: HttpServerRequest, resp: HttpServerResponse) =
71             resp.status(HttpResponseStatus.NOT_IMPLEMENTED).sendString(Mono.just("Not implemented yet"))
72
73
74     private fun monitoringHandler(_req: HttpServerRequest, resp: HttpServerResponse) =
75             resp.sendString(monitoring.lastStatus())
76
77     private fun logClose() {
78         logger.info { "Health Check API closed" }
79     }
80
81     companion object {
82         private val logger = Logger(HealthCheckApiServer::class)
83
84     }
85
86 }