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