2  * ============LICENSE_START=======================================================
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  22  * ============LICENSE_END=========================================================
 
  25 package org.openecomp.appc.adapter.iaas.provider.operation.impl;
 
  27 import org.openecomp.appc.Constants;
 
  28 import org.openecomp.appc.adapter.iaas.ProviderAdapter;
 
  29 import org.openecomp.appc.adapter.iaas.impl.IdentityURL;
 
  30 import org.openecomp.appc.adapter.iaas.impl.RequestContext;
 
  31 import org.openecomp.appc.adapter.iaas.impl.RequestFailedException;
 
  32 import org.openecomp.appc.adapter.iaas.impl.VMURL;
 
  33 import org.openecomp.appc.adapter.iaas.provider.operation.common.enums.Operation;
 
  34 import org.openecomp.appc.adapter.iaas.provider.operation.impl.base.ProviderServerOperation;
 
  35 import org.openecomp.appc.exceptions.APPCException;
 
  36 import org.openecomp.appc.i18n.Msg;
 
  37 import com.att.cdp.exceptions.ResourceNotFoundException;
 
  38 import com.att.cdp.zones.Context;
 
  39 import com.att.cdp.zones.model.ModelObject;
 
  40 import com.att.cdp.zones.model.Server;
 
  41 import com.att.eelf.configuration.EELFLogger;
 
  42 import com.att.eelf.configuration.EELFManager;
 
  43 import com.att.eelf.i18n.EELFResourceManager;
 
  44 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
 
  45 import org.glassfish.grizzly.http.util.HttpStatus;
 
  49 import static org.openecomp.appc.adapter.iaas.provider.operation.common.enums.Operation.START_SERVICE;
 
  50 import static org.openecomp.appc.adapter.utils.Constants.ADAPTER_NAME;
 
  52 public class StartServer extends ProviderServerOperation {
 
  54     private static final EELFLogger logger = EELFManager.getInstance().getLogger(StartServer.class);
 
  57      * @see org.openecomp.appc.adapter.iaas.ProviderAdapter#startServer(java.util.Map, org.openecomp.sdnc.sli.SvcLogicContext)
 
  59     @SuppressWarnings("nls")
 
  60     public Server startServer(Map<String, String> params, SvcLogicContext ctx) throws APPCException {
 
  62         RequestContext rc = new RequestContext(ctx);
 
  65         String appName = configuration.getProperty(Constants.PROPERTY_APPLICATION_NAME);
 
  68             validateParametersExist(params, ProviderAdapter.PROPERTY_INSTANCE_URL,
 
  69                     ProviderAdapter.PROPERTY_PROVIDER_NAME);
 
  71             String vm_url = params.get(ProviderAdapter.PROPERTY_INSTANCE_URL);
 
  73             VMURL vm = VMURL.parseURL(vm_url);
 
  74             if (validateVM(rc, appName, vm_url, vm)) return null;
 
  76             IdentityURL ident = IdentityURL.parseURL(params.get(ProviderAdapter.PROPERTY_IDENTITY_URL));
 
  77             String identStr = (ident == null) ? null : ident.toString();
 
  79             Context context = null;
 
  80             ctx.setAttribute("START_STATUS", "ERROR");
 
  82                 context = getContext(rc, vm_url, identStr);
 
  83                 if (context != null) {
 
  85                     server = lookupServer(rc, context, vm.getServerId());
 
  86                     logger.debug(Msg.SERVER_FOUND, vm_url, context.getTenantName(), server.getStatus().toString());
 
  90                      * We determine what to do based on the current state of the server
 
  94                      * Pending is a bit of a special case. If we find the server is in a
 
  95                      * pending state, then the provider is in the process of changing state
 
  96                      * of the server. So, lets try to wait a little bit and see if the state
 
  97                      * settles down to one we can deal with. If not, then we have to fail
 
 101                     if (server.getStatus().equals(Server.Status.PENDING)) {
 
 102                         waitForStateChange(rc, server, Server.Status.READY, Server.Status.RUNNING, Server.Status.ERROR,
 
 103                                 Server.Status.SUSPENDED, Server.Status.PAUSED, Server.Status.DELETED);
 
 106                     switch (server.getStatus()) {
 
 108                             // Nothing to do, the server is gone
 
 109                             msg = EELFResourceManager.format(Msg.SERVER_DELETED,
 
 110                                     server.getName(), server.getId(), server.getTenantId(), "started");
 
 112                             throw new RequestFailedException(
 
 113                                     "Start Server", msg, HttpStatus.METHOD_NOT_ALLOWED_405, server);
 
 116                             // Nothing to do, the server is already running
 
 117                             logger.info("Server was already running");
 
 121                             // Server is in error state
 
 122                             msg = EELFResourceManager.format(Msg.SERVER_ERROR_STATE,
 
 123                                     server.getName(), server.getId(), server.getTenantId(), "start");
 
 125                             throw new RequestFailedException(
 
 126                                     "Start Server", msg, HttpStatus.METHOD_NOT_ALLOWED_405, server);
 
 129                             // Server is stopped attempt to start the server
 
 131                             startServer(rc, server);
 
 135                             // if paused, un-pause it
 
 137                             unpauseServer(rc, server);
 
 141                             // Attempt to resume the suspended server
 
 143                             resumeServer(rc, server);
 
 147                             // Hmmm, unknown status, should never occur
 
 148                             msg = EELFResourceManager.format(Msg.UNKNOWN_SERVER_STATE, server.getName(), server.getId(),
 
 149                                     server.getTenantId(), server.getStatus().name());
 
 150                             generateEvent(rc, false, msg);
 
 152                             throw new RequestFailedException(
 
 153                                     "Start Server", msg, HttpStatus.METHOD_NOT_ALLOWED_405, server);
 
 157                     ctx.setAttribute("START_STATUS", "SUCCESS");
 
 161                     ctx.setAttribute("START_STATUS", "CONTEXT_NOT_FOUND");
 
 163             } catch (ResourceNotFoundException e) {
 
 164                 String msg = EELFResourceManager.format(Msg.SERVER_NOT_FOUND, e, vm_url);
 
 166                 doFailure(rc, HttpStatus.NOT_FOUND_404, msg);
 
 167             } catch (Exception e1) {
 
 168                 String msg = EELFResourceManager.format(Msg.SERVER_OPERATION_EXCEPTION, e1, e1.getClass().getSimpleName(),
 
 169                         START_SERVICE.toString(), vm_url, context == null ? "Unknown" : context.getTenantName());
 
 170                 logger.error(msg, e1);
 
 171                 doFailure(rc, HttpStatus.INTERNAL_SERVER_ERROR_500, msg);
 
 173         } catch (RequestFailedException e) {
 
 174             doFailure(rc, e.getStatus(), e.getMessage());
 
 181     protected ModelObject executeProviderOperation(Map<String, String> params, SvcLogicContext context)
 
 182             throws APPCException {
 
 183         setMDC(Operation.START_SERVICE.toString(), "App-C IaaS Adapter:Start", ADAPTER_NAME);
 
 184         logOperation(Msg.STARTING_SERVER, params, context);
 
 185         return startServer(params, context);