001 /**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements. See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License. You may obtain a copy of the License at
008 *
009 * http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017 package org.apache.geronimo.console.configcreator;
018
019 import java.io.File;
020 import java.io.FileWriter;
021 import java.io.IOException;
022 import java.net.URL;
023 import java.net.MalformedURLException;
024
025 import javax.portlet.ActionRequest;
026 import javax.portlet.ActionResponse;
027 import javax.portlet.PortletException;
028 import javax.portlet.RenderRequest;
029 import javax.portlet.RenderResponse;
030
031 import org.apache.commons.logging.Log;
032 import org.apache.commons.logging.LogFactory;
033 import org.apache.geronimo.console.MultiPageModel;
034
035 /**
036 * A handler for ...
037 *
038 * @version $Rev: 706640 $ $Date: 2008-10-21 14:44:05 +0000 (Tue, 21 Oct 2008) $
039 */
040 public class DeployStatusHandler extends AbstractHandler {
041 private static final Log log = LogFactory.getLog(DisplayPlanHandler.class);
042
043 public DeployStatusHandler() {
044 super(DEPLOY_STATUS_MODE, "/WEB-INF/view/configcreator/deployStatus.jsp");
045 }
046
047 public String actionBeforeView(ActionRequest request, ActionResponse response, MultiPageModel model)
048 throws PortletException, IOException {
049 return getMode();
050 }
051
052 public void renderView(RenderRequest request, RenderResponse response, MultiPageModel model)
053 throws PortletException, IOException {
054 WARConfigData data = getSessionData(request);
055 try {
056 File moduleFile = new File((new URL(data.getUploadedWarUri())).getPath());
057
058 File planFile = File.createTempFile("console-deployment", ".xml");
059 planFile.deleteOnExit();
060 FileWriter out = new FileWriter(planFile);
061 out.write(data.getDeploymentPlan());
062 out.close();
063
064 String[] status = JSR88_Util.deploy(request, moduleFile, planFile);
065 request.setAttribute(DEPLOY_ABBR_STATUS_PARAMETER, status[0]);
066 request.setAttribute(DEPLOY_FULL_STATUS_PARAMETER, status[1]);
067 } catch (MalformedURLException e) {
068 log.error(e.getMessage(), e);
069 }
070 request.setAttribute(DATA_PARAMETER, data);
071 }
072
073 public String actionAfterView(ActionRequest request, ActionResponse response, MultiPageModel model)
074 throws PortletException, IOException {
075 return "";
076 }
077 }