Package org.apache.pluto.container.impl

Source Code of org.apache.pluto.container.impl.MimeResponseImpl

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.pluto.container.impl;

import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;

import javax.portlet.CacheControl;
import javax.portlet.MimeResponse;
import javax.portlet.PortletURL;
import javax.portlet.ResourceURL;

import org.apache.pluto.container.PortletMimeResponseContext;
import org.apache.pluto.container.PortletURLProvider;
import org.apache.pluto.container.om.portlet.PortletDefinition;
import org.apache.pluto.container.om.portlet.Supports;

public class MimeResponseImpl extends PortletResponseImpl implements MimeResponse
{
    /** Response content types. */
    private ArrayList<String> responseContentTypes;
   
    private boolean usingWriter;
    private boolean usingStream;
    private boolean committed;
    private String contentType;

    private PortletMimeResponseContext responseContext;
   
  public MimeResponseImpl(PortletMimeResponseContext responseContext)
  {
    super(responseContext);
    this.responseContext = responseContext;
    PortletDefinition portletDefinition = getPortletWindow().getPortletDefinition();
    getCacheControl().setExpirationTime(portletDefinition.getExpirationCache());
    getCacheControl().setPublicScope(PUBLIC_SCOPE.equals(portletDefinition.getCacheScope()));
  }
 
    protected List<String> getResponseContentTypes()
    {
        if (responseContentTypes == null)
        {
            responseContentTypes = new ArrayList<String>();
            PortletDefinition dd = getPortletWindow().getPortletDefinition();
            for (Supports sup : dd.getSupports())
            {
                responseContentTypes.add(sup.getMimeType());
            }
            if (responseContentTypes.isEmpty())
            {
                responseContentTypes.add("text/html");
            }
        }
        return responseContentTypes;
    }
   
    public PortletURL createActionURL()
    {
        return new PortletURLImpl(responseContext, PortletURLProvider.TYPE.ACTION);
    }
   
    public PortletURL createRenderURL()
    {
        return new PortletURLImpl(responseContext, PortletURLProvider.TYPE.RENDER);
    }


    public ResourceURL createResourceURL()
    {
        return new PortletURLImpl(responseContext, PortletURLProvider.TYPE.RESOURCE);
    }
   
    public void flushBuffer() throws IOException
    {
        committed = true;
        responseContext.flushBuffer();
    }

    public int getBufferSize()
    {
        return responseContext.getBufferSize();
    }
   
  public CacheControl getCacheControl() {
    return responseContext.getCacheControl();
  }
 
    public String getCharacterEncoding()
    {
        return responseContext.getCharacterEncoding();
    }

    public String getContentType()
    {
        return contentType;
    }
   
    public Locale getLocale()
    {
        return responseContext.getLocale();
    }

    public OutputStream getPortletOutputStream()
    throws IllegalStateException, IOException
    {
        if (usingWriter)
        {
            throw new IllegalStateException("getPortletOutputStream can't be used after getWriter was invoked.");
        }
        if (getContentType() == null)
        {
            setContentType(getResponseContentTypes().get(0));
        }
        usingStream = true;
        return responseContext.getOutputStream();
    }
   
    public PrintWriter getWriter()
    throws IllegalStateException, IOException
    {
        if (usingStream)
        {
            throw new IllegalStateException("getWriter can't be used after getOutputStream was invoked.");
        }
        if (getContentType() == null)
        {
            setContentType(getResponseContentTypes().get(0));
        }
        usingWriter = true;
        return responseContext.getWriter();
    }

    public boolean isCommitted()
    {
        return committed ? true : responseContext.isCommitted();
    }

    public void reset()
    {
        if (isCommitted())
        {
            throw new IllegalStateException("Response is already committed");
        }
        responseContext.reset();
    }

    public void resetBuffer()
    {
        if (isCommitted())
        {
            throw new IllegalStateException("Response is already committed");
        }
        responseContext.resetBuffer();
    }

    public void setBufferSize(int size)
    {
        if (isCommitted())
        {
            throw new IllegalStateException("Response is already committed");
        }
        responseContext.setBufferSize(size);
    }
   
    public void setContentType(String contentType)
    {
        this.contentType = contentType;
        responseContext.setContentType(contentType);
    }
   
    @Override
    public void setProperty(String name, String value)
    {
        if (USE_CACHED_CONTENT.equals(name))
        {
            getCacheControl().setUseCachedContent(value != null);
        }
        else if (EXPIRATION_CACHE.equals(name))
        {
            int expirationTime;
            try
            {
                expirationTime = Integer.parseInt(value);
            }
            catch (NumberFormatException e)
            {
                expirationTime = 0;
            }
            getCacheControl().setExpirationTime(expirationTime);
        }
        else if (ETAG.equals(name))
        {
            getCacheControl().setETag(value);
        }
        else if (CACHE_SCOPE.equals(name))
        {
            getCacheControl().setPublicScope(PUBLIC_SCOPE.equals(value));
        }
        else
        {
            super.setProperty(name, value);
        }
    }
}
TOP

Related Classes of org.apache.pluto.container.impl.MimeResponseImpl

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.