blob: a05dfee61410112f6354096cbf58a88b4b89f13c [file] [log] [blame]
;; Licensed to the Apache Software Foundation (ASF) under one
;; or more contributor license agreements. See the NOTICE file
;; distributed with this work for additional information
;; regarding copyright ownership. The ASF licenses this file
;; to you 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.
(ns backtype.storm.metric.testing
"This namespace is for AOT dependent metrics testing code."
(:gen-class))
(letfn [(for- [threader arg seq-exprs body]
`(reduce #(%2 %1)
~arg
(for ~seq-exprs
(fn [arg#] (~threader arg# ~@body)))))]
(defmacro for->
"Apply a thread expression to a sequence.
eg.
(-> 1
(for-> [x [1 2 3]]
(+ x)))
=> 7"
{:indent 1}
[arg seq-exprs & body]
(for- 'clojure.core/-> arg seq-exprs body)))
(gen-class
:name clojure.storm.metric.testing.FakeMetricConsumer
:implements [backtype.storm.metric.api.IMetricsConsumer]
:prefix "impl-")
(def buffer (atom nil))
(defn impl-prepare [this conf argument ctx error-reporter]
(reset! buffer {}))
(defn impl-cleanup [this]
(reset! buffer {}))
(defn vec-conj [coll x] (if coll
(conj coll x)
[x]))
(defn expand-complex-datapoint [dp]
(if (or (map? (.value dp))
(instance? java.util.AbstractMap (.value dp)))
(into [] (for [[k v] (.value dp)]
[(str (.name dp) "/" k) v]))
[[(.name dp) (.value dp)]]))
(defn impl-handleDataPoints [this task-info data-points]
(swap! buffer
(fn [old]
(-> old
(for-> [dp data-points
[name val] (expand-complex-datapoint dp)]
(update-in [(.srcComponentId task-info) name (.srcTaskId task-info)] vec-conj val))))))