Add support for OpenStack V3 Identity Service
[appc.git] / appc-adapters / appc-iaas-adapter / appc-iaas-adapter-bundle / src / main / java / org / openecomp / appc / adapter / iaas / provider / operation / impl / RestartServer.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 package org.openecomp.appc.adapter.iaas.provider.operation.impl;
26
27 import com.att.cdp.exceptions.ResourceNotFoundException;
28 import com.att.cdp.exceptions.ZoneException;
29 import com.att.cdp.zones.Context;
30 import com.att.cdp.zones.model.ModelObject;
31 import com.att.cdp.zones.model.Server;
32 import com.att.eelf.configuration.EELFLogger;
33 import com.att.eelf.configuration.EELFManager;
34 import com.att.eelf.i18n.EELFResourceManager;
35 import org.glassfish.grizzly.http.util.HttpStatus;
36 import org.openecomp.appc.Constants;
37 import org.openecomp.appc.adapter.iaas.ProviderAdapter;
38 import org.openecomp.appc.adapter.iaas.impl.IdentityURL;
39 import org.openecomp.appc.adapter.iaas.impl.RequestContext;
40 import org.openecomp.appc.adapter.iaas.impl.RequestFailedException;
41 import org.openecomp.appc.adapter.iaas.impl.VMURL;
42 import org.openecomp.appc.adapter.iaas.provider.operation.common.enums.Outcome;
43 import org.openecomp.appc.adapter.iaas.provider.operation.impl.base.ProviderServerOperation;
44 import org.openecomp.appc.exceptions.UnknownProviderException;
45 import org.openecomp.appc.i18n.Msg;
46 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
47 import org.slf4j.MDC;
48 import java.text.DateFormat;
49 import java.text.SimpleDateFormat;
50 import java.util.Date;
51 import java.util.Map;
52 import java.util.TimeZone;
53 import static org.openecomp.appc.adapter.iaas.provider.operation.common.enums.Operation.RESTART_SERVICE;
54 import static org.openecomp.appc.adapter.utils.Constants.ADAPTER_NAME;
55
56 public class RestartServer extends ProviderServerOperation {
57
58     private static final EELFLogger logger = EELFManager.getInstance().getLogger(RestartServer.class);
59     private static EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
60
61
62     /**
63      * This method handles the case of restarting a server once we have found the server and have obtained the abstract
64      * representation of the server via the context (i.e., the "Server" object from the CDP-Zones abstraction).
65      *
66      * @param rc The request context that manages the state and recovery of the request for the life of its processing.
67      * @param server The server object representing the server we want to operate on
68      * @throws ZoneException when error occurs.
69      * @throws RequestFailedException when server status is error.
70      */
71     @SuppressWarnings("nls")
72     private void restartServer(RequestContext rc, Server server, SvcLogicContext ctx)
73             throws ZoneException, RequestFailedException {
74         /*
75          * Pending is a bit of a special case. If we find the server is in a pending state, then the provider is in the
76          * process of changing state of the server. So, lets try to wait a little bit and see if the state settles down
77          * to one we can deal with. If not, then we have to fail the request.
78          */
79         String msg;
80         if (server.getStatus().equals(Server.Status.PENDING)) {
81             waitForStateChange(rc, server, Server.Status.READY, Server.Status.RUNNING, Server.Status.ERROR,
82                     Server.Status.SUSPENDED, Server.Status.PAUSED);
83         }
84
85         setTimeForMetricsLogger("restart server");
86
87         String skipHypervisorCheck = configuration.getProperty("org.openecomp.appc.iaas.skiphypervisorchek");
88         if (skipHypervisorCheck == null && ctx != null) {
89             skipHypervisorCheck = ctx.getAttribute(ProviderAdapter.SKIP_HYPERVISOR_CHECK);
90         }
91
92         // Always perform Virtual Machine/Hypervisor Status/Network checks
93         // unless the skip is set to true
94         if (skipHypervisorCheck == null || (!skipHypervisorCheck.equalsIgnoreCase("true"))) {
95             // Check of the Hypervisor for the VM Server is UP and reachable
96             checkHypervisor(server);
97         }
98
99         /*
100          * We determine what to do based on the current state of the server
101          */
102         switch (server.getStatus()) {
103             case DELETED:
104                 // Nothing to do, the server is gone
105                 msg = EELFResourceManager.format(Msg.SERVER_DELETED, server.getName(), server.getId(),
106                         server.getTenantId(), "restarted");
107                 generateEvent(rc, false, msg);
108                 logger.error(msg);
109                 metricsLogger.error(msg);
110                 break;
111
112             case RUNNING:
113                 // Attempt to stop and start the server
114                 stopServer(rc, server);
115                 startServer(rc, server);
116                 generateEvent(rc, true, Outcome.SUCCESS.toString());
117                 metricsLogger.info("Server status: RUNNING");
118                 break;
119
120             case ERROR:
121                 msg = EELFResourceManager.format(Msg.SERVER_ERROR_STATE, server.getName(), server.getId(),
122                         server.getTenantId(), "rebuild");
123                 generateEvent(rc, false, msg);
124                 logger.error(msg);
125                 metricsLogger.error(msg);
126                 throw new RequestFailedException("Rebuild Server", msg, HttpStatus.METHOD_NOT_ALLOWED_405, server);
127
128             case READY:
129                 // Attempt to start the server
130                 startServer(rc, server);
131                 generateEvent(rc, true, Outcome.SUCCESS.toString());
132                 metricsLogger.info("Server status: READY");
133                 break;
134
135             case PAUSED:
136                 // if paused, un-pause it
137                 unpauseServer(rc, server);
138                 generateEvent(rc, true, Outcome.SUCCESS.toString());
139                 metricsLogger.info("Server status: PAUSED");
140                 break;
141
142             case SUSPENDED:
143                 // Attempt to resume the suspended server
144                 resumeServer(rc, server);
145                 generateEvent(rc, true, Outcome.SUCCESS.toString());
146                 metricsLogger.info("Server status: SUSPENDED");
147                 break;
148
149             default:
150                 // Hmmm, unknown status, should never occur
151                 msg = EELFResourceManager.format(Msg.UNKNOWN_SERVER_STATE, server.getName(), server.getId(),
152                         server.getTenantId(), server.getStatus().name());
153                 generateEvent(rc, false, msg);
154                 logger.error(msg);
155                 metricsLogger.error(msg);
156                 break;
157         }
158
159
160     }
161
162     /**
163      * This method is used to restart an existing virtual machine given the fully qualified URL of the machine.
164      * <p>
165      * The fully qualified URL contains enough information to locate the appropriate server. The URL is of the form
166      * 
167      * <pre>
168      *  [scheme]://[host[:port]] / [path] / [tenant_id] / servers / [vm_id]
169      * </pre>
170      * 
171      * Where the various parts of the URL can be parsed and extracted and used to locate the appropriate service in the
172      * provider service catalog. This then allows us to open a context using the CDP abstraction, obtain the server by
173      * its UUID, and then perform the restart.
174      * </p>
175      *
176      * @throws UnknownProviderException If the provider cannot be found
177      * @throws IllegalArgumentException if the expected argument(s) are not defined or are invalid
178      * @see org.openecomp.appc.adapter.iaas.ProviderAdapter#restartServer(java.util.Map,
179      *      org.openecomp.sdnc.sli.SvcLogicContext)
180      */
181     @SuppressWarnings("nls")
182     private Server restartServer(Map<String, String> params, SvcLogicContext ctx)
183             throws UnknownProviderException, IllegalArgumentException {
184         Server server = null;
185         RequestContext rc = new RequestContext(ctx);
186         rc.isAlive();
187
188         String appName = configuration.getProperty(Constants.PROPERTY_APPLICATION_NAME);
189
190         /*
191          * Set Time for Metrics Logger
192          */
193         setTimeForMetricsLogger("GET server status");
194
195         ctx.setAttribute("RESTART_STATUS", "ERROR");
196         try {
197             validateParametersExist(params, ProviderAdapter.PROPERTY_INSTANCE_URL,
198                     ProviderAdapter.PROPERTY_PROVIDER_NAME);
199
200             String vm_url = params.get(ProviderAdapter.PROPERTY_INSTANCE_URL);
201
202             VMURL vm = VMURL.parseURL(vm_url);
203             if (validateVM(rc, appName, vm_url, vm))
204                 return null;
205
206             IdentityURL ident = IdentityURL.parseURL(params.get(ProviderAdapter.PROPERTY_IDENTITY_URL));
207             String identStr = (ident == null) ? null : ident.toString();
208
209             Context context = null;
210             try {
211                 context = getContext(rc, vm_url, identStr);
212                 if (context != null) {
213                     rc.reset();
214                     server = lookupServer(rc, context, vm.getServerId());
215                     logger.debug(Msg.SERVER_FOUND, vm_url, context.getTenantName(), server.getStatus().toString());
216                     rc.reset();
217                     restartServer(rc, server, ctx);
218                     context.close();
219                     doSuccess(rc);
220                     ctx.setAttribute("RESTART_STATUS", "SUCCESS");
221                     String msg = EELFResourceManager.format(Msg.SUCCESS_EVENT_MESSAGE, "RestartServer", vm_url);
222                     ctx.setAttribute(org.openecomp.appc.Constants.ATTRIBUTE_SUCCESS_MESSAGE, msg);
223                 }
224             } catch (RequestFailedException e) {
225                 doFailure(rc, e.getStatus(), e.getMessage());
226             } catch (ResourceNotFoundException e) {
227                 String msg = EELFResourceManager.format(Msg.SERVER_NOT_FOUND, e, vm_url);
228                 logger.error(msg);
229                 metricsLogger.error(msg);
230                 doFailure(rc, HttpStatus.NOT_FOUND_404, msg);
231             } catch (Exception e1) {
232                 String msg = EELFResourceManager.format(Msg.SERVER_OPERATION_EXCEPTION, e1,
233                         e1.getClass().getSimpleName(), RESTART_SERVICE.toString(), vm_url,
234                         context == null ? "Unknown" : context.getTenantName());
235                 logger.error(msg, e1);
236                 metricsLogger.error(msg, e1);
237                 doFailure(rc, HttpStatus.INTERNAL_SERVER_ERROR_500, msg);
238             }
239         } catch (RequestFailedException e) {
240             doFailure(rc, e.getStatus(), e.getMessage());
241         }
242
243         return server;
244     }
245
246     @Override
247     protected ModelObject executeProviderOperation(Map<String, String> params, SvcLogicContext context)
248             throws UnknownProviderException {
249         setMDC(RESTART_SERVICE.toString(), "App-C IaaS Adapter:Restart", ADAPTER_NAME);
250         logOperation(Msg.RESTARTING_SERVER, params, context);
251
252         setTimeForMetricsLogger("execute restart");
253
254         metricsLogger.info("Executing Provider Operation: Restart");
255
256         return restartServer(params, context);
257     }
258
259     private void setTimeForMetricsLogger(String targetServiceName) {
260         long startTime = System.currentTimeMillis();
261         TimeZone tz = TimeZone.getTimeZone("UTC");
262         DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
263         df.setTimeZone(tz);
264         long endTime = System.currentTimeMillis();
265         long duration = endTime - startTime;
266         String durationStr = String.valueOf(duration);
267         String endTimeStrUTC = df.format(new Date());
268         MDC.put("EndTimestamp", endTimeStrUTC);
269         MDC.put("ElapsedTime", durationStr);
270         MDC.put("TargetEntity", "cdp");
271         MDC.put("TargetServiceName", targetServiceName);
272         MDC.put("ClassName", "org.openecomp.appc.adapter.iaas.provider.operation.impl.RestartServer");
273     }
274 }