Package org.apache.jetspeed.portal

Source Code of org.apache.jetspeed.portal.JetspeedPortletInstance

/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, 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" and "Apache Software Foundation" and
*     "Apache Jetspeed" 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" or
*    "Apache Jetspeed", 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 (INCLUDING, 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.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation.  For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
package org.apache.jetspeed.portal;

// Java imports
import java.util.ArrayList;
import java.util.Iterator;

import org.apache.turbine.util.Log;

// ECS imports
import org.apache.ecs.ConcreteElement;

// Jetspeed imports
import org.apache.jetspeed.om.profile.Entry;
import org.apache.jetspeed.om.profile.MetaInfo;
import org.apache.jetspeed.om.profile.PSMLDocument;
import org.apache.jetspeed.om.profile.Parameter;
import org.apache.jetspeed.om.profile.Profile;
import org.apache.jetspeed.om.profile.psml.PsmlParameter;
import org.apache.jetspeed.portal.Portlet;
import org.apache.jetspeed.services.rundata.JetspeedRunData;

//Turbine imports
import org.apache.turbine.util.RunData;

/**
* Default Implementation of Jetspeed Portlet Instance.
* It implements the methods for getting, setting and removing attributes from
* portlet instance persistence storage.
*
* In a Jetspeed 1.4x PSML profile, the default XML format for an instance and attribute is:
*
* <entry>
*    <parameter name="someName" value="someValue"/>
*
* Since this modifies PSMLDocuments, it will make a clone once modification starts.
*
* @author <a href="mailto:sweaver@rippe.com">Scott Weaver</a>
* @author <a href="mailto:ggolden@apache.org">Glenn R. Golden</a>
* @version $Id: JetspeedPortletInstance.java,v 1.7 2003/03/04 00:05:03 sgala Exp $
*/
public class JetspeedPortletInstance implements PortletInstance
{
    /** The Profile (and PSMLDocument) that we started with, considered RO */
    private Profile m_profile = null;

    /** The Profile (and PSMLDocument) that we cloned to edit. */
    private Profile m_clonedProfile = null;

    /** The rundata - WARNING: it is VERY DANGEROUS to store rundata like this.
        Rundata objects are re-used, and are only good within one request.
        This means that a PortletInstance CANNOTA BE STORED BEYOND A SINGLE REQUEST! */
    private JetspeedRunData m_rundata = null;

    /**
     * keeping an instance of the actual Portlet around helps us with
     * getting information that is not directly available from the PSML profile
     */
    private Portlet m_portlet = null;
   
    /**
     * Constructs a PortletInstance from a Portlet and a RunData.
     *
     * @param Portlet The parent portlet of this instance.
     * @param RunData Jetspeed Run Data
     */
    public JetspeedPortletInstance(Portlet portlet, RunData data)
    {
        this(portlet, ((JetspeedRunData) data).getProfile());
        m_rundata = (JetspeedRunData)data;
       
        // if we are in an edit already, use that as the clone
        m_clonedProfile = ((JetspeedRunData)data).getCustomizedProfile();
    }

   /**
    * Constructs a PortletInstance from a Portlet and a Profile
    *
    * @param Portlet The parent portlet of this instance.
    * @param Profile The profile containing the instance.
    */
    public JetspeedPortletInstance(Portlet portlet, Profile profile)
    {
        m_portlet = portlet;
        m_profile = profile;
    }   
     /**
     * Protect the constructor so it can only be instantitated by
     * by the PortalPersistenceService
     */
    protected JetspeedPortletInstance()
    {
        // does nothin'
    }

    /**
     * @see PortletInstance#getAttribute()
     */
    public String getAttribute(String name, String dftValue)
    {
        Entry entry = getEntry();

        if (entry == null)
        {
            return dftValue;
        }
        Parameter attr = entry.getParameter(name);
        if (attr != null)
        {
            return attr.getValue();
        }
        else
        {
            return dftValue;
        }
    }

    /**
     * @see PortletInstance#getAttribute()
     */
    public String getAttribute(String name)
    {
        Entry entry = getEntry();

        if (entry == null)
        {
            return "";
        }
        Parameter attr = entry.getParameter(name);
        if (attr != null)
        {
            return attr.getValue();
        }
        else
        {
            return "";
        }
    }

    /**
     * @see PortletInstance#setAttribute(String, String)
     */
    public void setAttribute(String name, String value)
    {
        // make sure we are updating and using the clone now
        setupForUpdate();
       
        Entry entry = getEntry();

        Parameter attr = entry.getParameter(name);
        
         // Setting a attribute to null should just remove it.
        if(value == null)
        {
            removeAttribute(name);
        }
        else if (attr != null)
        {
            attr.setValue(value);
        }
        // If an attribute does not exist, then add it.
        else
        {
            PsmlParameter newAttr = new PsmlParameter();
            newAttr.setName(name);
            newAttr.setValue(value);
            entry.addParameter(newAttr);
        }
    }

    /**
     * @see PortletInstance#removeAttribute(String)
     */
    public void removeAttribute(String name)
    {
        // make sure we are updating and using the clone now
        setupForUpdate();
       
        Entry entry = getEntry();

        // I am assuming that we only allow one parameter per name
        Iterator params = entry.getParameterIterator();
        int index = -1;
        int count = 0;
        while (params.hasNext())
        {
            Parameter param = (Parameter) params.next();
            if (param.getName().equalsIgnoreCase(name))
            {
                index = count;
                break;
            }
            count++;
        }

        // We have to wait until we are outside the loop to remove
        // or else we throw a ConcurrentModificationException   
        if (index != -1)
        {
            entry.removeParameter(index);          
        }
    }

    /**
     * @see PortletInstance#removeAllAttributes()
     */
    public void removeAllAttributes()
    {
        // make sure we are updating and using the clone now
        setupForUpdate();
       
        Entry entry = getEntry();

        entry.removeAllParameter();
    }

    /**
     * @see PortletInstance#getAttributes()
     */
    public Iterator getAttributes()
    {
        Entry entry = getEntry();

        return entry.getParameterIterator();
    }

    /**
     * @see PortletInstance#getAttributeNames()
     */
    public Iterator getAttributeNames()
    {
        Iterator itr = getAttributes();
        ArrayList list = new ArrayList();
        while(itr.hasNext());
        {
            Parameter param = (Parameter) itr.next();
            list.add(param.getName());
        }
       
        return list.iterator();
    }

    /**
     * @see PortletInstance#getDocument()
     */
    public PSMLDocument getDocument()
    {
        return getProfile().getDocument();
    }

    /**
     * @see PortletInstance#getProfile()
     */
    public Profile getProfile()
    {
        // use the clone if we have made it
        if (m_clonedProfile != null) return m_clonedProfile;

        return m_profile;
    }

    /**
     * @see PortletInstance#getPortlet()
     */
    public Entry getEntry()
    {
        return getDocument().getEntryById(m_portlet.getID());
    }

    /**
     * @see PortletInstance#getDescription()
     */
    public String getDescription()
    {
        Entry entry = getEntry();

        String description = null;
        if (entry != null)
        {
            MetaInfo metaInfo = entry.getMetaInfo();
            if (metaInfo != null)
            {
                description = metaInfo.getDescription();
            }
        }
        return m_portlet.getDescription(description);
    }

    /**
     * @see PortletInstance#getName()
     */
    public String getName()
    {
        return getEntry().getParent();
    }

    /**
     * @see PortletInstance#getTitle()
     */
    public String getTitle()
    {
        Entry entry = getEntry();

        String title = null;
        if (entry != null)
        {
            MetaInfo metaInfo = entry.getMetaInfo();
            if (metaInfo != null)
            {
                title = metaInfo.getTitle();
            }
        }
        return m_portlet.getTitle(title);
    }

    /**
     * @see PortletInstance#getImage()
     */
    public String getImage()
    {
        Entry entry = getEntry();

        String image = null;
        if (entry != null)
        {
            MetaInfo metaInfo = entry.getMetaInfo();
            if (metaInfo != null)
            {
                return image = metaInfo.getImage();
            }
        }
        return m_portlet.getImage(image);
    }

    /**
     * @see PortletInstance#getPortlet()
     */
    public Portlet getPortlet()
    {
        return m_portlet;
    }
   
    /**
     * @see PortletInstance#getContent()
     */
    public ConcreteElement getContent()
    {
      return m_portlet.getContent(m_rundata);
    }
   
    /**
     * @see PortletInstance#isShowTitleBar()
     */
    public boolean isShowTitleBar()
    {
      return m_portlet.isShowTitleBar(m_rundata);
    }

    /**
    * Setup for making a change to the Entry
    * We must not change the PSMLDocument that we started with, instead we make a clone
    * and start using it.
    */
    private void setupForUpdate()
    {
        if (m_clonedProfile != null) return;
       
        try
        {
            m_clonedProfile = (Profile) m_profile.clone();
        }
        catch (CloneNotSupportedException e)
        {
            Log.warn("JetspeedPortletInstance: cannot clone Profile!: " + e);
        }
    }
}

TOP

Related Classes of org.apache.jetspeed.portal.JetspeedPortletInstance

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.