Initial OpenECOMP SDC commit
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / workers / Worker.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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
21 package org.openecomp.sdc.be.workers;
22
23 import org.openecomp.sdc.be.config.BeEcompErrorManager;
24 import org.slf4j.Logger;
25 import org.slf4j.LoggerFactory;
26
27 import java.util.concurrent.LinkedBlockingQueue;
28 import java.util.concurrent.TimeUnit;
29
30 /**
31  * Created by michael on 6/24/2016.
32  */
33 public class Worker<T extends Job<E>, E> implements Runnable {
34
35         private String workerName;
36         private LinkedBlockingQueue<T> inputQueue;
37
38         private LinkedBlockingQueue<E> outputQueue;
39
40         private static Logger log = LoggerFactory.getLogger(Worker.class.getName());
41
42         public Worker(String workerName, LinkedBlockingQueue<T> inputQueue, LinkedBlockingQueue<E> outputQueue) {
43                 this.workerName = workerName;
44                 this.inputQueue = inputQueue;
45                 this.outputQueue = outputQueue;
46         }
47
48         @Override
49         public void run() {
50
51                 try {
52                         while (true) {
53                                 log.trace("worker:{} doing work", workerName);
54                                 T job = inputQueue.poll(500, TimeUnit.MILLISECONDS);
55                                 if (job == null) {
56
57                                         log.debug("worker:{} nothing to do");
58                                         break;
59                                 }
60                                 this.outputQueue.put(job.doWork());
61                                 log.trace("worker:{} done with work", workerName);
62                         }
63                 } catch (Exception e) {
64                         BeEcompErrorManager.getInstance().logInternalFlowError("executingJobFailed",
65                                         "failed during job execution worker" + workerName, BeEcompErrorManager.ErrorSeverity.ERROR);
66                         log.debug("worker:" + workerName + " nothing to do stoping", e);
67                 }
68         }
69
70 }