Return-Path: Delivered-To: apmail-cocoon-cvs-archive@www.apache.org Received: (qmail 45185 invoked from network); 22 Jan 2004 15:05:21 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 22 Jan 2004 15:05:21 -0000 Received: (qmail 13935 invoked by uid 500); 22 Jan 2004 15:05:17 -0000 Delivered-To: apmail-cocoon-cvs-archive@cocoon.apache.org Received: (qmail 13888 invoked by uid 500); 22 Jan 2004 15:05:17 -0000 Mailing-List: contact cvs-help@cocoon.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@cocoon.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@cocoon.apache.org Received: (qmail 13877 invoked by uid 500); 22 Jan 2004 15:05:17 -0000 Delivered-To: apmail-cocoon-2.1-cvs@apache.org Received: (qmail 13873 invoked from network); 22 Jan 2004 15:05:17 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 22 Jan 2004 15:05:17 -0000 Received: (qmail 45168 invoked by uid 1260); 22 Jan 2004 15:05:19 -0000 Date: 22 Jan 2004 15:05:19 -0000 Message-ID: <20040122150519.45166.qmail@minotaur.apache.org> From: cziegeler@apache.org To: cocoon-2.1-cvs@apache.org Subject: cvs commit: cocoon-2.1/src/blocks/portal/java/org/apache/cocoon/portal/pluto Deploy.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N cziegeler 2004/01/22 07:05:19 Added: src/blocks/portal/java/org/apache/cocoon/portal/pluto Deploy.java Log: Adding a dummy deploy function Revision Changes Path 1.1 cocoon-2.1/src/blocks/portal/java/org/apache/cocoon/portal/pluto/Deploy.java Index: Deploy.java =================================================================== /* ============================================================================ The Apache Software License, Version 1.1 ============================================================================ Copyright (C) 2004 The Apache Software Foundation. All rights reserved. Redistribution and use in source and binary forms, with or without modifica- tion, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The end-user documentation included with the redistribution, if any, must include the following acknowledgment: "This product includes software developed by the Apache Software Foundation (http://www.apache.org/)." Alternately, this acknowledgment may appear in the software itself, if and wherever such third-party acknowledgments normally appear. 4. The names "Apache Cocoon" and "Apache Software Foundation" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact apache@apache.org. 5. Products derived from this software may not be called "Apache", nor may "Apache" appear in their name, without prior written permission of the Apache Software Foundation. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU- DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.apache.cocoon.portal.pluto; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.util.Collection; import java.util.Enumeration; import java.util.Iterator; import java.util.Locale; import java.util.Vector; import java.util.jar.JarEntry; import java.util.jar.JarFile; import org.apache.cocoon.portal.pluto.factory.ControllerFactoryImpl; import org.apache.cocoon.portal.pluto.om.PortletApplicationDefinitionImpl; import org.apache.cocoon.portal.pluto.om.ServletDefinitionImpl; import org.apache.cocoon.portal.pluto.om.ServletMapping; import org.apache.cocoon.portal.pluto.om.WebApplicationDefinitionImpl; import org.apache.cocoon.portal.pluto.om.common.DescriptionImpl; import org.apache.cocoon.portal.pluto.om.common.DescriptionSetImpl; import org.apache.cocoon.portal.pluto.om.common.DisplayNameImpl; import org.apache.cocoon.portal.pluto.om.common.DisplayNameSetImpl; import org.apache.pluto.om.ControllerFactory; import org.apache.pluto.om.common.DescriptionSet; import org.apache.pluto.om.common.DisplayNameSet; import org.apache.pluto.om.common.Parameter; import org.apache.pluto.om.common.ParameterCtrl; import org.apache.pluto.om.common.ParameterSet; import org.apache.pluto.om.common.ParameterSetCtrl; import org.apache.pluto.om.common.SecurityRoleRef; import org.apache.pluto.om.common.SecurityRoleRefSet; import org.apache.pluto.om.common.SecurityRoleRefSetCtrl; import org.apache.pluto.om.common.SecurityRoleSet; import org.apache.pluto.om.portlet.PortletDefinition; import org.apache.pluto.om.servlet.ServletDefinition; import org.apache.pluto.om.servlet.ServletDefinitionCtrl; import org.apache.pluto.om.servlet.ServletDefinitionListCtrl; import org.apache.xml.serialize.OutputFormat; import org.apache.xml.serialize.XMLSerializer; import org.exolab.castor.mapping.Mapping; import org.exolab.castor.xml.Marshaller; import org.exolab.castor.xml.Unmarshaller; import org.xml.sax.InputSource; /** * Deplyment of new portlets * This version is directly taken from the pluto implementation and is currently not * working. You have to deploy new portlets using the pluto deployment mechanisms. * * @author Carsten Ziegeler * * @version CVS $Id: Deploy.java,v 1.1 2004/01/22 15:05:19 cziegeler Exp $ */ public class Deploy { public final static String WEB_PORTLET_PUBLIC_ID = "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"; public final static String WEB_PORTLET_DTD = "http://java.sun.com/dtd/web-app_2_3.dtd"; private static boolean debug = false; private static String dirDelim = System.getProperty("file.separator"); private static String webInfDir = dirDelim + "WEB-INF" + dirDelim; private static String webAppsDir; private static String portalImplWebDir; private static String buildContainerDirectory; public static void deployArchive(String webAppsDir, String warFile) throws IOException { String warFileName = warFile; if (warFileName.indexOf("/") != -1) warFileName = warFileName.substring(warFileName.lastIndexOf("/") + 1); if (warFileName.indexOf(dirDelim) != -1) warFileName = warFileName.substring(warFileName.lastIndexOf(dirDelim) + 1); if (warFileName.endsWith(".war")) warFileName = warFileName.substring(0, warFileName.lastIndexOf(".")); System.out.println("deploying '" + warFileName + "' ..."); String destination = webAppsDir + warFileName; JarFile jarFile = new JarFile(warFile); Enumeration files = jarFile.entries(); while (files.hasMoreElements()) { JarEntry entry = (JarEntry) files.nextElement(); File file = new File(destination, entry.getName()); File dirF = new File(file.getParent()); dirF.mkdirs(); if (entry.isDirectory()) { file.mkdirs(); } else { byte[] buffer = new byte[1024]; int length = 0; InputStream fis = jarFile.getInputStream(entry); FileOutputStream fos = new FileOutputStream(file); while ((length = fis.read(buffer)) >= 0) { fos.write(buffer, 0, length); } fos.close(); } } System.out.println("finished!"); } public static void prepareWebArchive(String webAppsDir, String warFile) throws Exception, IOException { String webModule = warFile; if (webModule.indexOf("/") != -1) webModule = webModule.substring(webModule.lastIndexOf("/") + 1); if (webModule.indexOf(dirDelim) != -1) webModule = webModule.substring(webModule.lastIndexOf(dirDelim) + 1); if (webModule.endsWith(".war")) webModule = webModule.substring(0, webModule.lastIndexOf(".")); System.out.println("prepare web archive '" + webModule + "' ..."); Mapping mappingPortletXml = null; Mapping mappingWebXml = null; // get portlet xml mapping file String _portlet_mapping = webAppsDir + portalImplWebDir + "WEB-INF" + dirDelim + "data" + dirDelim + "xml" +dirDelim + "portletdefinitionmapping.xml"; mappingPortletXml = new Mapping(); try { mappingPortletXml.loadMapping(_portlet_mapping); } catch (Exception e) { System.out.println("CASTOR-Exception: " + e); throw new IOException( "Failed to load mapping file " + _portlet_mapping); } File portletXml = new File(webAppsDir + webModule + webInfDir + "portlet.xml"); // get web xml mapping file String _web_mapping = webAppsDir + portalImplWebDir + "WEB-INF" + dirDelim + "data" + dirDelim + "xml" + dirDelim + "servletdefinitionmapping.xml"; mappingWebXml = new Mapping(); try { mappingWebXml.loadMapping(_web_mapping); } catch (Exception e) { throw new IOException( "Failed to load mapping file " + _web_mapping); } File webXml = new File(webAppsDir + webModule + webInfDir + "web.xml"); try { InputSource source = new InputSource(new FileInputStream(portletXml)); source.setSystemId(portletXml.toURL().toExternalForm()); Unmarshaller unmarshaller = new Unmarshaller(mappingPortletXml); PortletApplicationDefinitionImpl portletApp = (PortletApplicationDefinitionImpl) unmarshaller.unmarshal(source); // refill structure with necessary information Vector structure = new Vector(); structure.add(webModule); structure.add(null); structure.add(null); portletApp.preBuild(structure); if (debug) { System.out.println(portletApp); } // now generate web part WebApplicationDefinitionImpl webApp = null; if (webXml.exists()) { source = new InputSource(new FileInputStream(webXml)); source.setSystemId(webXml.toURL().toExternalForm()); Unmarshaller unmarshallerWeb = new Unmarshaller(mappingWebXml); webApp = (WebApplicationDefinitionImpl) unmarshallerWeb.unmarshal(source); } else { webApp = new WebApplicationDefinitionImpl(); DisplayNameImpl dispName = new DisplayNameImpl(); dispName.setDisplayName(webModule); dispName.setLocale(Locale.ENGLISH); DisplayNameSetImpl dispSet = new DisplayNameSetImpl(); dispSet.add(dispName); webApp.setDisplayNames((DisplayNameSet) dispSet); DescriptionImpl desc = new DescriptionImpl(); desc.setDescription("Automated generated Application Wrapper"); desc.setLocale(Locale.ENGLISH); DescriptionSetImpl descSet = new DescriptionSetImpl(); descSet.add(desc); webApp.setDescriptions((DescriptionSet) descSet); } ControllerFactory controllerFactory = new ControllerFactoryImpl(); ServletDefinitionListCtrl servletDefinitionSetCtrl = (ServletDefinitionListCtrl) controllerFactory.get( webApp.getServletDefinitionList()); Collection servletMappings = webApp.getServletMappings(); Iterator portlets = portletApp.getPortletDefinitionList().iterator(); while (portlets.hasNext()) { PortletDefinition portlet = (PortletDefinition) portlets.next(); // check if already exists ServletDefinition servlet = webApp.getServletDefinitionList().get(portlet.getName()); if (servlet != null) { if (!servlet .getServletClass() .equals("org.apache.pluto.core.PortletServlet")) { System.out.println( "Note: Replaced already existing the servlet with the name '" + portlet.getName() + "' with the wrapper servlet."); } ServletDefinitionCtrl _servletCtrl = (ServletDefinitionCtrl) controllerFactory.get(servlet); _servletCtrl.setServletClass( "org.apache.pluto.core.PortletServlet"); } else { servlet = servletDefinitionSetCtrl.add( portlet.getName(), "org.apache.pluto.core.PortletServlet"); } ServletDefinitionCtrl servletCtrl = (ServletDefinitionCtrl) controllerFactory.get(servlet); DisplayNameImpl dispName = new DisplayNameImpl(); dispName.setDisplayName(portlet.getName() + " Wrapper"); dispName.setLocale(Locale.ENGLISH); DisplayNameSetImpl dispSet = new DisplayNameSetImpl(); dispSet.add(dispName); servletCtrl.setDisplayNames((DisplayNameSet) dispSet); DescriptionImpl desc = new DescriptionImpl(); desc.setDescription("Automated generated Portlet Wrapper"); desc.setLocale(Locale.ENGLISH); DescriptionSetImpl descSet = new DescriptionSetImpl(); descSet.add(desc); servletCtrl.setDescriptions(descSet); ParameterSet parameters = servlet.getInitParameterSet(); ParameterSetCtrl parameterSetCtrl = (ParameterSetCtrl) controllerFactory.get(parameters); Parameter parameter1 = parameters.get("portlet-class"); if (parameter1 == null) { parameterSetCtrl.add( "portlet-class", portlet.getClassName()); } else { ParameterCtrl parameterCtrl = (ParameterCtrl) controllerFactory.get(parameter1); parameterCtrl.setValue(portlet.getClassName()); } Parameter parameter2 = parameters.get("portlet-guid"); if (parameter2 == null) { parameterSetCtrl.add( "portlet-guid", portlet.getId().toString()); } else { ParameterCtrl parameterCtrl = (ParameterCtrl) controllerFactory.get(parameter2); parameterCtrl.setValue(portlet.getId().toString()); } boolean found = false; Iterator mappings = servletMappings.iterator(); while (mappings.hasNext()) { ServletMapping servletMapping = (ServletMapping) mappings.next(); if (servletMapping .getServletName() .equals(portlet.getName())) { found = true; servletMapping.setUrlPattern( "/" + portlet.getName().replace(' ', '_') + "/*"); } } if (!found) { ServletMapping servletMapping = new ServletMapping(); servletMapping.setServletName(portlet.getName()); servletMapping.setUrlPattern( "/" + portlet.getName().replace(' ', '_') + "/*"); servletMappings.add(servletMapping); } SecurityRoleRefSet servletSecurityRoleRefs = ((ServletDefinitionImpl)servlet).getInitSecurityRoleRefSet(); SecurityRoleRefSetCtrl servletSecurityRoleRefSetCtrl = (SecurityRoleRefSetCtrl) controllerFactory.get( servletSecurityRoleRefs); SecurityRoleSet webAppSecurityRoles = webApp.getSecurityRoles(); SecurityRoleRefSet portletSecurityRoleRefs = portlet.getInitSecurityRoleRefSet(); SecurityRoleRefSetCtrl portletSecurityRoleRefSetCtrl = (SecurityRoleRefSetCtrl) controllerFactory.get( portletSecurityRoleRefs); Iterator p = portletSecurityRoleRefs.iterator(); while (p.hasNext()) { SecurityRoleRef portletSecurityRoleRef = (SecurityRoleRef) p.next(); if ( portletSecurityRoleRef.getRoleLink()== null && webAppSecurityRoles.get(portletSecurityRoleRef.getRoleName())==null ){ System.out.println( "Note: The web application has no security role defined which matches the role name \"" + portletSecurityRoleRef.getRoleName() + "\" of the security-role-ref element defined for the wrapper-servlet with the name '" + portlet.getName() + "'."); break; } SecurityRoleRef servletSecurityRoleRef = servletSecurityRoleRefs.get( portletSecurityRoleRef.getRoleName()); if (null != servletSecurityRoleRef) { System.out.println( "Note: Replaced already existing element of type with value \"" + portletSecurityRoleRef.getRoleName() + "\" for subelement of type for the wrapper-servlet with the name '" + portlet.getName() + "'."); servletSecurityRoleRefSetCtrl.remove( servletSecurityRoleRef); } servletSecurityRoleRefSetCtrl.add(portletSecurityRoleRef); } } if (debug) { System.out.println(webApp); } OutputFormat of = new OutputFormat(); of.setIndenting(true); of.setIndent(4); // 2-space indention of.setLineWidth(16384); // As large as needed to prevent linebreaks in text nodes of.setDoctype( WEB_PORTLET_PUBLIC_ID, WEB_PORTLET_DTD); FileWriter writer = new FileWriter(webAppsDir + webModule + System.getProperty("file.separator") + "WEB-INF"+ System.getProperty("file.separator") + "web.xml"); XMLSerializer serializer = new XMLSerializer(writer, of); try { Marshaller marshaller = new Marshaller(serializer.asDocumentHandler()); marshaller.setMapping(mappingWebXml); marshaller.marshal(webApp); } catch (Exception e) { writer.close(); e.printStackTrace(System.out); throw new Exception(); } String strTo = dirDelim + "WEB-INF" + dirDelim + "tld" + dirDelim + "portlet.tld"; // String strFrom = ".." + dirDelim + "war" + strTo; String strFrom = ".." + dirDelim + "portal"+dirDelim+"src"+dirDelim+"webapp"+strTo; copy(strFrom, webAppsDir + webModule + strTo); } catch (Exception e) { e.printStackTrace(System.out); throw new Exception(); } System.out.println("finished!"); } public static void copy(String from, String to) throws IOException { File f = new File(to); f.getParentFile().mkdirs(); byte[] buffer = new byte[1024]; int length = 0; InputStream fis = new FileInputStream(from); FileOutputStream fos = new FileOutputStream(f); while ((length = fis.read(buffer)) >= 0) { fos.write(buffer, 0, length); } fos.close(); } public static void main(String args[]) { String warFile; if (args.length < 4) { System.out.println( "No argument specified. This command hast to be issued as:"); System.out.println( "deploy [-debug] [-addToEntityReg [:]+]"); return; } if (args.length > 4) { if ((args[4].equals("-debug")) || (args[4].equals("/debug"))) { debug = true; } } if(debug) { for(int i=0; i 4) { if ((args[4].equals("-debug")) || (args[4].equals("/debug"))) { debug = true; } if ( (args[4].equals("-addToEntityReg")) || ( (args.length>5) && (args[5].equals("-addToEntityReg")) ) ) { // parameters: app-id portlet application id; must be unique in portletentityregistry.xml // portlet-id portlet id; must be unique inside the portlet application // portlet-name the name of the portlet in portlet.xml //addToEntityReg(args); } } try { deployArchive(webAppsDir, warFile); prepareWebArchive(webAppsDir, warFile); } catch (Exception e) { e.printStackTrace(System.out); } } /* static private void addToEntityReg(String[] args) { String pluto = args[1]; File portletAppFile = new File(args[2]); String portletAppFileName = portletAppFile.getName(); String portletApp = portletAppFileName.substring(0, portletAppFileName.lastIndexOf(".war")); int o = (args[4].equals("-addToEntityReg") ? 5 : 6); String appId = args[o++]; try { String entityMapping = webAppsDir + portalImplWebDir + "WEB-INF/data/portletentityregistry.xml"; File file = new File(entityMapping); RandomAccessFile ras = new RandomAccessFile(file, "rw"); long length = ras.length(); byte[] contentByte = new byte[(int) length]; ras.read(contentByte); String contentString = new String(contentByte); long pos = contentString.lastIndexOf(""); ras.seek(pos); ras.writeBytes(" \r\n"); ras.writeBytes(" " + portletApp + "\r\n"); StringTokenizer tokenizer; for (int i = o; i < args.length; ++i) { tokenizer = new StringTokenizer(args[i], ":"); String portletId = tokenizer.nextToken(); String portletName = tokenizer.nextToken(); ras.writeBytes(" \r\n"); ras.writeBytes(" " + portletApp + "." + portletName + "\r\n"); ras.writeBytes(" \r\n"); } ras.writeBytes(" \r\n"); ras.writeBytes("\r\n"); ras.close(); } catch (Exception e) { e.printStackTrace(System.out); } }*/ }