Integrate aai-schema-ingest library into aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / util / FileWatcher.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *    http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.aai.util;
21
22 import java.util.*;
23 import java.io.*;
24
25 public abstract class FileWatcher extends TimerTask {
26   private long timeStamp;
27   private File file;
28
29   /**
30    * Instantiates a new file watcher.
31    *
32    * @param file the file
33    */
34   public FileWatcher( File file ) {
35     this.file = file;
36     this.timeStamp = file.lastModified();
37   }
38
39   /**
40    * runs a timer task
41    * @see TimerTask.run
42    */
43   public final void run() {
44     long timeStamp = file.lastModified();
45
46     if( (timeStamp - this.timeStamp) > 500 ) {
47       this.timeStamp = timeStamp;
48       onChange(file);
49     }
50   }
51   
52   /**
53    * On change.
54    *
55    * @param file the file
56    */
57   protected abstract void onChange( File file );
58 }