Applying license changes to all files
[appc.git] / appc-dispatcher / appc-command-executor / appc-command-executor-core / src / main / java / org / openecomp / appc / executor / impl / CommandExecutorImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 /**
26  *
27  */
28 package org.openecomp.appc.executor.impl;
29
30
31 import java.time.Instant;
32 import java.time.temporal.ChronoUnit;
33 import java.util.concurrent.TimeUnit;
34
35 import org.apache.commons.lang.ObjectUtils;
36 import org.openecomp.appc.domainmodel.lcm.RuntimeContext;
37 import org.openecomp.appc.exceptions.APPCException;
38 import org.openecomp.appc.executionqueue.ExecutionQueueService;
39 import org.openecomp.appc.executionqueue.impl.ExecutionQueueServiceFactory;
40 import org.openecomp.appc.executor.CommandExecutor;
41
42 import com.att.eelf.configuration.EELFLogger;
43 import com.att.eelf.configuration.EELFManager;
44
45
46 public class CommandExecutorImpl implements CommandExecutor {
47
48     private CommandTaskFactory executionTaskFactory ;
49     private static final EELFLogger logger = EELFManager.getInstance().getLogger(CommandExecutorImpl.class);
50
51     private ExecutionQueueService executionQueueService;
52     private ExpiredMessageHandler expiredMessageHandler;
53
54     public CommandExecutorImpl(){
55
56     }
57
58     public void setExecutionQueueService(ExecutionQueueService executionQueueService) {
59         this.executionQueueService = executionQueueService;
60     }
61
62     public void setExpiredMessageHandler(ExpiredMessageHandler expiredMessageHandler) {
63         this.expiredMessageHandler = expiredMessageHandler;
64     }
65
66     public void initialize() {
67         logger.info("initialization started of CommandExecutorImpl");
68         executionQueueService = ExecutionQueueServiceFactory.getExecutionQueueService();
69         executionQueueService.registerMessageExpirationListener(expiredMessageHandler);
70     }
71
72     public void setExecutionTaskFactory(CommandTaskFactory executionTaskFactory) {
73         this.executionTaskFactory = executionTaskFactory;
74     }
75
76     /**
77      * Execute given command
78      * Create command request and enqueue it for execution.
79      * @param commandExecutorInput Contains CommandHeader,  command , target Id , payload and conf ID (optional)
80      * @throws APPCException in case of error.
81      */
82     @Override
83     public void executeCommand (RuntimeContext commandExecutorInput) throws APPCException{
84         if (logger.isTraceEnabled()) {
85             logger.trace("Entering to executeCommand with CommandExecutorInput = "+ ObjectUtils.toString(commandExecutorInput));
86         }
87         enqueRequest(commandExecutorInput);
88         if (logger.isTraceEnabled()) {
89             logger.trace("Exiting from executeCommand");
90         }
91     }
92
93     private RuntimeContext getCommandRequest(RuntimeContext commandExecutorInput){
94         if (logger.isTraceEnabled()) {
95             logger.trace("Entering to getCommandRequest with CommandExecutorInput = "+ ObjectUtils.toString(commandExecutorInput));
96         }
97         RuntimeContext commandRequest;
98         commandRequest = commandExecutorInput;
99         /*
100         CommandRequest commandRequest;
101
102         switch(commandExecutorInput.getRequestContext().getAction()){
103             case Sync:
104             case Audit:
105             case ConfigBackup:
106             case ConfigBackupDelete:
107             case ConfigExport:
108                 commandRequest = new LCMReadOnlyCommandRequest(commandExecutorInput);
109                 break;
110             default:
111                 commandRequest = new LCMCommandRequest(commandExecutorInput);
112                 break;
113         }
114         */
115         if (logger.isTraceEnabled()) {
116             logger.trace("Exiting from getCommandRequest with (CommandRequest = "+ ObjectUtils.toString(commandRequest)+")");
117         }
118         return commandRequest;
119     }
120
121     @SuppressWarnings("unchecked")
122     private void enqueRequest(RuntimeContext request) throws APPCException{
123         if (logger.isTraceEnabled()) {
124             logger.trace("Entering to enqueRequest with CommandRequest = "+ ObjectUtils.toString(request));
125         }
126         try {
127             String action = request.getRequestContext().getAction().name();
128             CommandTask commandTask = executionTaskFactory.getExecutionTask(action, request);
129             long remainingTTL = getRemainingTTL(request);
130             executionQueueService.putMessage(commandTask,remainingTTL, TimeUnit.MILLISECONDS);
131         } catch (Exception e) {
132             logger.error("Exception: "+e.getMessage());
133             throw new APPCException(e);
134         }
135
136         if (logger.isTraceEnabled()) {
137             logger.trace("Exiting from enqueRequest");
138         }
139     }
140
141     private long getRemainingTTL(RuntimeContext request) {
142         Instant requestTimestamp = request.getRequestContext().getCommonHeader().getTimeStamp();
143         int ttl = request.getRequestContext().getCommonHeader().getFlags().getTtl();
144         return ChronoUnit.MILLIS.between(Instant.now(), requestTimestamp.plusSeconds(ttl));
145     }
146
147
148 }