Update ves-agent dependency
[vfc/nfvo/driver/ems.git] / ems / boco / src / main / java / org / onap / vfc / nfvo / emsdriver / commons / utils / DriverThread.java
1 /*
2  * Copyright 2017 BOCO Corporation.  CMCC Technologies Co., Ltd
3  *
4  * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
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.onap.vfc.nfvo.emsdriver.commons.utils;
17
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20
21 public abstract class DriverThread implements Runnable {
22     protected Logger log = LoggerFactory.getLogger(this.getClass());
23     private String name = null;
24     private Thread t = null;
25     private boolean run = false;
26     private boolean end = false;
27
28     public synchronized void start() {
29         t = new Thread(this);
30         t.start();
31     }
32
33     public String getName() {
34         if (t != null)
35             return t.getName();
36         return name;
37     }
38
39     public void setName(String name) {
40         this.name = name;
41         if (t != null)
42             t.setName(name);
43     }
44
45     public abstract void dispose();
46
47     public final void run() {
48         t = Thread.currentThread();
49         if (name != null)
50             t.setName(name);
51
52         try {
53             dispose();
54         } catch (Exception e) {
55             log.error(" printStackTrace :", e);
56         }
57         this.setEnd(true);
58
59     }
60
61     public boolean stop() {
62         this.setRun(false);
63         while (!isEnd()) {
64             try {
65                 Thread.sleep(1);
66             } catch (Exception e) {
67                 log.error("Exception :", e);
68             }
69         }
70         return end;
71     }
72
73     public void interrupt() {
74         if (t != null)
75             t.interrupt();
76     }
77
78     public boolean isRun() {
79         return run;
80     }
81
82     public void setRun(boolean run) {
83         this.run = run;
84     }
85
86     public boolean isEnd() {
87         return end;
88     }
89
90     public void setEnd(boolean end) {
91         this.end = end;
92     }
93 }