847f35ad700d13ca56a81d5f46c8f2f3d93f06e6
[dcaegen2/collectors/hv-ves.git] /
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.config.api.model
21
22 import arrow.core.Option
23 import org.onap.dcae.collectors.veshv.domain.RoutedMessage
24 import org.onap.dcae.collectors.veshv.domain.VesMessage
25 import org.onap.ves.VesEventOuterClass.CommonEventHeader
26
27 data class Routing(val routes: List<Route>) {
28
29     fun routeFor(commonHeader: CommonEventHeader): Option<Route> =
30             Option.fromNullable(routes.find { it.applies(commonHeader) })
31 }
32
33 data class Route(val domain: String, val targetTopic: String, val partitioning: (CommonEventHeader) -> Int = {0}) {
34
35     fun applies(commonHeader: CommonEventHeader) = commonHeader.domain == domain
36
37     operator fun invoke(message: VesMessage): RoutedMessage =
38             RoutedMessage(targetTopic, partitioning(message.header), message)
39 }
40
41
42 /*
43 Configuration DSL
44  */
45
46 fun routing(init: RoutingBuilder.() -> Unit): RoutingBuilder {
47     val conf = RoutingBuilder()
48     conf.init()
49     return conf
50 }
51
52 class RoutingBuilder {
53     private val routes: MutableList<RouteBuilder> = mutableListOf()
54
55     fun defineRoute(init: RouteBuilder.() -> Unit): RouteBuilder {
56         val rule = RouteBuilder()
57         rule.init()
58         routes.add(rule)
59         return rule
60     }
61
62     fun build() = Routing(routes.map { it.build() }.toList())
63 }
64
65 class RouteBuilder {
66
67     private lateinit var domain: String
68     private lateinit var targetTopic: String
69     private lateinit var partitioning: (CommonEventHeader) -> Int
70
71     fun fromDomain(domain: String) : RouteBuilder = apply {
72         this.domain = domain
73     }
74
75     fun toTopic(targetTopic: String) : RouteBuilder = apply {
76         this.targetTopic = targetTopic
77     }
78
79     fun withFixedPartitioning(num: Int = 0) : RouteBuilder = apply {
80         partitioning = { num }
81     }
82
83     fun build() = Route(domain, targetTopic, partitioning)
84
85 }