Coverage Report - org.kuali.rice.krad.datadictionary.URLMonitor
 
Classes in this File Line Coverage Branch Coverage Complexity
URLMonitor
0%
0/26
0%
0/4
2
URLMonitor$1
0%
0/9
0%
0/6
2
URLMonitor$URLContentChangedListener
N/A
N/A
2
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl1.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.krad.datadictionary;
 17  
 
 18  
 import org.apache.commons.logging.Log;
 19  
 import org.apache.commons.logging.LogFactory;
 20  
 
 21  
 import java.io.IOException;
 22  
 import java.net.URL;
 23  
 import java.util.LinkedList;
 24  
 import java.util.Map;
 25  
 import java.util.concurrent.ConcurrentHashMap;
 26  
 import java.util.concurrent.Executors;
 27  
 import java.util.concurrent.ScheduledExecutorService;
 28  
 import java.util.concurrent.TimeUnit;
 29  
 import java.util.zip.CRC32;
 30  
 import java.util.zip.CheckedInputStream;
 31  
 
 32  
 /**
 33  
  * This is a description of what this class does - gilesp don't forget to fill this in.
 34  
  *
 35  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 36  
  *
 37  
  */
 38  0
 public class URLMonitor {
 39  0
     private static final Log LOG = LogFactory.getLog(URLMonitor.class);
 40  
 
 41  0
     private final LinkedList<URLContentChangedListener> listeners = new LinkedList<URLContentChangedListener>();
 42  0
     private final Map<URL, Long> resourceMap = new ConcurrentHashMap();
 43  
     private final int reloadIntervalMilliseconds;
 44  0
     private final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);
 45  
 
 46  
 
 47  0
     public URLMonitor(int reloadIntervalMilliseconds) {
 48  0
         this.reloadIntervalMilliseconds = reloadIntervalMilliseconds;
 49  0
     }
 50  
 
 51  
     public synchronized void addListener(URLContentChangedListener listener) {
 52  
 
 53  0
         listeners.add(listener);
 54  
 
 55  0
         if (listeners.size() == 1) {
 56  0
             scheduler.scheduleAtFixedRate(urlPoller,
 57  
                                 reloadIntervalMilliseconds, reloadIntervalMilliseconds, TimeUnit.MILLISECONDS);
 58  
         }
 59  0
     }
 60  
 
 61  
     public void addURI(URL zipUrl) {
 62  
 
 63  0
         resourceMap.put(zipUrl, getCRC(zipUrl));
 64  0
     }
 65  
 
 66  
     private Long getCRC(URL zipUrl) {
 67  0
         Long result = -1l;
 68  
         try {
 69  0
             CRC32 crc = new CRC32();
 70  0
             CheckedInputStream cis = new CheckedInputStream(zipUrl.openStream(), crc);
 71  
 
 72  0
             byte[] buffer = new byte[1024];
 73  
             int length;
 74  
 
 75  
             //read the entry from zip file and extract it to disk
 76  0
             while( (length = cis.read(buffer)) > 0);
 77  
 
 78  0
             cis.close();
 79  
 
 80  0
             result = crc.getValue();
 81  0
         } catch (IOException e) {
 82  0
             LOG.warn("Unable to calculate CRC, resource doesn't exist?", e);
 83  0
         }
 84  0
         return result;
 85  
     }
 86  
 
 87  0
     private final Runnable urlPoller = new Runnable() {
 88  
 
 89  
         @Override
 90  
         public void run() {
 91  0
             for (Map.Entry<URL, Long> entry : resourceMap.entrySet()) {
 92  0
                 Long crc = getCRC(entry.getKey());
 93  
 
 94  0
                 if (!entry.getValue().equals(crc)) {
 95  0
                     entry.setValue(crc);
 96  0
                     for (URLContentChangedListener listener : listeners) {
 97  0
                         listener.urlContentChanged(entry.getKey());
 98  
                     }
 99  
                 }
 100  0
             }
 101  0
         }
 102  
     };
 103  
 
 104  
     public static interface URLContentChangedListener {
 105  
           public void urlContentChanged(URL url);
 106  
     }
 107  
 }