| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| TaskTimerUtils |
|
| 2.0;2 |
| 1 | /* | |
| 2 | * This software is licensed under the Apache License, Version 2.0 | |
| 3 | * (the "License") agreement; you may not use this file except in compliance with | |
| 4 | * the License. You may obtain a copy of the License at | |
| 5 | * | |
| 6 | * http://www.apache.org/licenses/LICENSE-2.0 | |
| 7 | * | |
| 8 | * Unless required by applicable law or agreed to in writing, software | |
| 9 | * distributed under the License is distributed on an "AS IS" BASIS, | |
| 10 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 11 | * See the License for the specific language governing permissions and | |
| 12 | * limitations under the License. | |
| 13 | */ | |
| 14 | package net.admin4j.timer; | |
| 15 | ||
| 16 | import java.util.Collection; | |
| 17 | import java.util.HashMap; | |
| 18 | import java.util.HashSet; | |
| 19 | import java.util.Map; | |
| 20 | import java.util.Set; | |
| 21 | ||
| 22 | import net.admin4j.vo.DataMeasurementSummaryVO; | |
| 23 | ||
| 24 | /** | |
| 25 | * Generic TaskTimer utilities | |
| 26 | * @author D. Ashmore | |
| 27 | * | |
| 28 | */ | |
| 29 | public class TaskTimerUtils { | |
| 30 | ||
| 31 | 0 | private TaskTimerUtils() {} |
| 32 | ||
| 33 | /** | |
| 34 | * Produces a Data Measurement Summary for display purposes. | |
| 35 | * @param timerCollection | |
| 36 | * @return summary map keyed by label | |
| 37 | */ | |
| 38 | public static Map<String, Set<DataMeasurementSummaryVO>> produceDataSummaryMap( | |
| 39 | Collection<TaskTimer> timerCollection) { | |
| 40 | 15 | Map<String,Set<DataMeasurementSummaryVO>> summaryMap = new HashMap<String,Set<DataMeasurementSummaryVO>>(); |
| 41 | ||
| 42 | Set<DataMeasurementSummaryVO> summarySet; | |
| 43 | 15 | for (TaskTimer timer :timerCollection) { |
| 44 | 6 | summarySet = new HashSet<DataMeasurementSummaryVO>(); |
| 45 | 6 | summaryMap.put(timer.getLabel(), summarySet); |
| 46 | 6 | for (DataMeasure measure: timer.getDataMeasures()) { |
| 47 | 12 | summarySet.add(measure.getDataMeasurementSummary()); |
| 48 | } | |
| 49 | } | |
| 50 | 15 | return summaryMap; |
| 51 | } | |
| 52 | ||
| 53 | } |