Coverage Report - net.admin4j.timer.TaskTimerCleanupTask
 
Classes in this File Line Coverage Branch Coverage Complexity
TaskTimerCleanupTask
80%
8/10
83%
5/6
4
 
 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.HashSet;
 17  
 import java.util.Map.Entry;
 18  
 
 19  
 import org.slf4j.Logger;
 20  
 import org.slf4j.LoggerFactory;
 21  
 
 22  
 import net.admin4j.config.Admin4JConfiguration;
 23  
 import net.admin4j.dao.DAOFactory;
 24  
 
 25  24
 public class TaskTimerCleanupTask implements Runnable {
 26  
     
 27  21
     private static Logger log = LoggerFactory.getLogger(TaskTimerCleanupTask.class);
 28  
 
 29  
     public void run() {
 30  3
         log.debug("Purging obsolete observations");
 31  3
         for (Entry<String, TaskTimer> entry: TaskTimerRegistry.getRegisteredDataMeasures().entrySet()) {
 32  3
             for (DataMeasure measure : entry.getValue().getDataMeasures()) {
 33  6
                 measure.purgeObsoleteObservations();
 34  
             }
 35  
         }
 36  
         
 37  3
         if (Admin4JConfiguration.isPerformanceInfoStored()) {
 38  0
             log.debug("Saving observations");
 39  0
             DAOFactory.getTaskTimerDAO().saveAll(
 40  
                     new HashSet<TaskTimer>(
 41  
                             TaskTimerRegistry.getRegisteredDataMeasures().values()));
 42  
         }
 43  
 
 44  3
     }
 45  
 
 46  
 }