Updating licenses in all files
[appc.git] / appc-dispatcher / appc-dispatcher-common / execution-queue-management-lib / src / main / java / org / openecomp / appc / executionqueue / impl / ExecutionQueueServiceImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.executionqueue.impl;
24
25 import java.time.Instant;
26 import java.util.Calendar;
27 import java.util.Date;
28 import java.util.concurrent.TimeUnit;
29
30 import org.openecomp.appc.exceptions.APPCException;
31 import org.openecomp.appc.executionqueue.ExecutionQueueService;
32 import org.openecomp.appc.executionqueue.MessageExpirationListener;
33 import org.openecomp.appc.executionqueue.impl.object.QueueMessage;
34
35 import com.att.eelf.configuration.EELFLogger;
36 import com.att.eelf.configuration.EELFManager;
37
38 public class ExecutionQueueServiceImpl<M extends Runnable> implements ExecutionQueueService<M> {
39
40     private static final EELFLogger logger =
41             EELFManager.getInstance().getLogger(ExecutionQueueServiceImpl.class);
42
43     ExecutionQueueServiceImpl(){
44
45     }
46
47     @Override
48     public void putMessage(M message) throws APPCException {
49          this.putMessage(message,-1,null);
50     }
51
52     @Override
53     public void putMessage(M message, long timeout, TimeUnit unit) throws APPCException{
54         try {
55             Instant expirationTime = calculateExpirationTime(timeout,unit);
56             QueueManager queueManager = QueueManager.getInstance();
57             boolean enqueueTask = queueManager.enqueueTask(new QueueMessage<M>(message,expirationTime));
58             if(!enqueueTask){
59                 throw new APPCException("failed to put message in queue");
60             }
61         } catch (Exception e) {
62             logger.error("Error in putMessage method of ExecutionQueueServiceImpl" + e.getMessage());
63             throw new APPCException(e);
64         }
65     }
66
67     @Override
68     public void registerMessageExpirationListener(MessageExpirationListener listener) {
69         QueueManager.getInstance().setListener(listener);
70     }
71
72     private Instant calculateExpirationTime(long timeToLive, TimeUnit unit) {
73         if (timeToLive > 0 && unit != null) {
74             // as of Java 8, there is no built-in conversion method from
75             // TimeUnit to ChronoUnit; do it manually
76             return Instant.now().plusMillis(unit.toMillis(timeToLive));
77         } else {
78             // never expires
79             return Instant.MAX;
80         }
81     }
82
83 }