summaryrefslogtreecommitdiffstats
path: root/pnda-ztt-app/src/main/scala/com/cisco/ztt/ves/telemetry/VesTransformer.scala
blob: 5eaf8f3b8db454d76f7211f30589afc3f7c09d2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * Copyright (c) 2018 Cisco Systems. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.cisco.ztt.ves.telemetry

import com.cisco.ztt.Transformer
import com.cisco.pnda.model.DataPlatformEvent
import com.cisco.ztt.meta.Unit
import com.cisco.ztt.Payload
import org.apache.log4j.Logger
import org.json4s.jackson.JsonMethods
import org.json4s.JsonAST.JValue
import org.json4s.JsonAST.JObject
import com.cisco.ztt.TimeseriesDatapoint
import org.json4s.JsonAST.JArray


class VesTransformer(unit: Unit) extends Serializable with Transformer {

    object Holder extends Serializable {
        @transient lazy val logger = Logger.getLogger(getClass.getName)
    }

    def inputTopic: String = { unit.input_topic }

    val mappers = unit.ves_telemetry.map(d => {
        d.path.split("/") -> new VesMapper(d, unit.timeseries_namespace)
    }) //.toMap

    def transform(rawEvent: DataPlatformEvent): (Boolean, Set[Payload]) = {
        val source = if (unit.publish_src == null) { "timeseries" } else { unit.publish_src }
        val parsed = JsonMethods.parse(rawEvent.getRawdata)

        if (! parsed.isInstanceOf[JObject]) {
            Holder.logger.warn("Cannot process parsed JSON")
            return (false, Set[Payload]())
        }
        val value = parsed.asInstanceOf[JObject].values.get("event").get.asInstanceOf[Map[String, JValue]]
        val header = value.get("commonEventHeader").get.asInstanceOf[Map[String,Any]]
        val host = header.get("reportingEntityName").get.toString
        val timestamp = header.get("lastEpochMicrosec").get.toString.dropRight(3)

        val generated = mappers.flatMap(r => {
            val path = r._1
            val mapper = r._2

            val datapoints = visit(path, value, mapper, host, timestamp)
            datapoints.map(d => {
                new Payload(source, unit.output_topic, rawEvent.getHostIp, rawEvent.getTimestamp, d)
            })
        }).toSet
        (true, generated)
    }

    def visit(
            path: Array[String],
            map: Map[String, Any],
            mapper: VesMapper,
            host: String,
            timestamp: String): Set[TimeseriesDatapoint] = {
        if (path.length > 0) {
            val option = map.get(path.head)
            option match {
                case None => {
                    Holder.logger.warn("VES mapper failed to dereference JSON " + path.head)
                    return Set[TimeseriesDatapoint]()
                }

                case _ => {
                    option.get match {
                        case l: List[_] => {
                            val list = l.asInstanceOf[List[Map[String, Any]]]
                            return list.flatMap(sub => {
                                visit(path.tail, sub, mapper, host, timestamp)
                            }).toSet
                        }
                        case m: Map[_, _] => {
                            val sub = m.asInstanceOf[Map[String, Any]]
                            return visit(path.tail, sub, mapper, host, timestamp)
                        }

                    }
                }
            }
        } else {
            val datapoints = mapper.transform(map, host, timestamp)
            return datapoints
        }

        Set[TimeseriesDatapoint]()
    }
}