You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by jv...@apache.org on 2001/08/08 15:44:13 UTC

cvs commit: jakarta-turbine/src/tool/org/apache/turbine/tool IntakeTool.java

jvanzyl     01/08/08 06:44:13

  Added:       src/tool/org/apache/turbine/tool IntakeTool.java
  Log:
  - adding intake tool
  
  Revision  Changes    Path
  1.1                  jakarta-turbine/src/tool/org/apache/turbine/tool/IntakeTool.java
  
  Index: IntakeTool.java
  ===================================================================
  package org.apache.turbine.services.intake;
  
  /* ====================================================================
   * The Apache Software License, Version 1.1
   *
   * Copyright (c) 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 Turbine" 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",
   *    "Apache Turbine", 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/>.
   */
  
  import java.util.ArrayList;
  import java.util.Collection;
  import java.util.HashMap;
  import java.util.Iterator;
  import java.util.List;
  import java.util.Map;
  import org.apache.torque.om.Retrievable;
  import org.apache.turbine.services.intake.model.Group;
  import org.apache.turbine.services.pull.ApplicationTool;
  import org.apache.fulcrum.Log;
  import org.apache.turbine.ParameterParser;
  import org.apache.turbine.RunData;
  import org.apache.fulcrum.pool.Recyclable;
  
  /**
   * A Pull tool to make intake objects available to a template
   *
   * @author <a href="mailto:jmcnally@collab.net">John D. McNally</a>
   * @version $Id: IntakeTool.java,v 1.1 2001/08/08 13:44:13 jvanzyl Exp $
   */
  public class IntakeTool 
      implements ApplicationTool, Recyclable
  {
      public static final String DEFAULT_KEY = "_0";
      private HashMap groups;
      private RunData data;
      // private boolean allValid;
      // private String omToolKey;
      // private OMTool omTool;
  
      /** The cache of PullHelpers. **/
      private Map pullMap = new HashMap();
  
      public IntakeTool()
      {
          String[] groupNames = TurbineIntake.getGroupNames();
          groups = new HashMap((int)(1.25*groupNames.length + 1));
          pullMap = new HashMap((int)(1.25*groupNames.length + 1));
          // omToolKey = TurbineResources.getString("tool.intake.om");
  
          for (int i=groupNames.length-1; i>=0; i--) 
          {
              pullMap.put(groupNames[i], new PullHelper(groupNames[i]));
          }
      }
  
      /**
       * Prepares intake for a single request
       */
      public void init(Object runData)
      {
          data = (RunData)runData;
  
          String[] groupKeys = data.getParameters().getStrings("intake-grp");
          String[] groupNames = null;
          if ( groupKeys == null || groupKeys.length == 0 ) 
          {
              groupNames = TurbineIntake.getGroupNames();
          }
          else 
          {
              groupNames = new String[groupKeys.length];
              for ( int i=groupKeys.length-1; i>=0; i-- ) 
              {
                  groupNames[i] = TurbineIntake.getGroupName(groupKeys[i]);
              }
              
          }
          
          for (int i=groupNames.length-1; i>=0; i--) 
          {
              try
              {
                  List foundGroups = TurbineIntake.getGroup(groupNames[i])
                      .getObjects(data);
                  
                  if ( foundGroups != null ) 
                  {            
                      Iterator iter = foundGroups.iterator();
                      while (iter.hasNext()) 
                      {
                          Group group = (Group)iter.next();
                          groups.put(group.getObjectKey(), group);
                      }
                  }
              }
              catch(Exception e)
              {
                  Log.error(e);
              }
          }        
      }
  
      /**
       * A convenience method to write out the hidden form fields
       * that notify intake of the relevant groups.  It should be used
       * only in templates with 1 form.  In multiform templates, the groups
       * that are relevant for each form need to be declared using
       * $intake.newForm() and $intake.declareGroup($group) for the relevant
       * groups in the form.
       *
       */
      public String declareGroups()
      {
          allGroupsSB.setLength(0);
          Iterator i = groups.values().iterator();
          while ( i.hasNext() ) 
          {
              declareGroup( (Group)i.next(), allGroupsSB );
          }
          return allGroupsSB.toString();
      }
  
      HashMap declaredGroups = new HashMap();
      StringBuffer allGroupsSB = new StringBuffer(256);
      StringBuffer groupSB = new StringBuffer(128);
  
      /**
       * A convenience method to write out the hidden form fields
       * that notify intake of the group.
       */
      public String declareGroup(Group group)
      {
          groupSB.setLength(0);
          declareGroup(group, groupSB);
          return groupSB.toString();
      }
  
      /**
       * xhtml valid hidden input field(s) that notifies intake of the
       * group's presence.
       */
      public void declareGroup(Group group, StringBuffer sb)
      {
          if ( !declaredGroups.containsKey(group.getIntakeGroupName()) ) 
          {
              declaredGroups.put(group.getIntakeGroupName(), null);
              sb.append("<input type=\"hidden\" name=\"")
                .append("intake-grp\" value=\"")
                .append(group.getGID())
                .append("\"></input>\n"); 
          }
          group.appendHtmlFormInput(sb);
      }
  
      public void newForm()
      {
          declaredGroups.clear();
          Iterator i = groups.values().iterator();
          while ( i.hasNext() ) 
          {
               ((Group)i.next()).resetDeclared();
          }
      }
  
      /**
       * Implementation of ApplicationTool interface is not needed for this
       * tool as it is request scoped
       */
      public void refresh()
      {
          // empty
      }
  
      /**
       * Inner class to present a nice interface to the template designer
       */
      public class PullHelper
      {
          String groupName;
  
          private PullHelper(String groupName)
          {
              this.groupName = groupName;
          }
  
          public Group getDefault()
              throws Exception
          {
              return setKey(DEFAULT_KEY);
          }
          
          public Group setKey(String key)
              throws Exception
          {
              return setKey(key, true);
          }
  
          public Group setKey(String key, boolean create)
              throws Exception
          {
              Group g = null;
  
              String inputKey = TurbineIntake.getGroupKey(groupName) + key;
              if ( groups.containsKey(inputKey)) 
              {
                  g = (Group)groups.get(inputKey);
              }
              else if (create)
              {
                  g = TurbineIntake.getGroup(groupName); 
                  groups.put(inputKey, g);
                  g.init(key, data);
              }
  
              return g;
          }
          
  
          public Group mapTo(Retrievable obj)
              throws Exception
          {
              Group g = null;
  
              try 
              {
                  String inputKey = TurbineIntake.getGroupKey(groupName) 
                      + obj.getQueryKey();
                  if ( groups.containsKey(inputKey)) 
                  {
                      g = (Group)groups.get(inputKey);
                  }
                  else 
                  {
                      g = TurbineIntake.getGroup(groupName); 
                      groups.put(inputKey, g);
                  }
                  return g.init(obj);
              }
              catch(Exception e)
              {
                  Log.error(e);
              }
  
              return null;        
          }
      }
      
      
      public Object get(String groupName)
          throws Exception
      {
          return pullMap.get(groupName);
      }
  
      public boolean isAllValid()
      {
          boolean allValid = true;
          Iterator iter = groups.values().iterator();
          while (iter.hasNext()) 
          {
              Group group = (Group)iter.next();
              allValid &= group.isAllValid();
          }
          return allValid;
      }
  
      public Group get(String groupName, String key)
          throws Exception
      {
          return ((PullHelper)get(groupName)).setKey(key);
      }
  
      public Group get(String groupName, String key, boolean create)
          throws Exception
      {
          return ((PullHelper)get(groupName)).setKey(key, create);
      }
  
      /**
       * Removes group.  Primary use is to remove a group that has
       * been processed by an action and is no longer appropriate
       * in the view (screen).
       */
      public void remove(Group group)
      {
          groups.remove(group.getObjectKey());
          group.removeFromRequest();
          TurbineIntake.releaseGroup(group);
      }
  
      /**
       * Removes all groups.  Primary use is to remove groups that have
       * been processed by an action and are no longer appropriate
       * in the view (screen).
       */
      public void removeAll()
      {
          Object[] allGroups = groups.values().toArray();
          for (int i=allGroups.length-1; i>=0; i-- ) 
          {
              Group group = (Group)allGroups[i];
              remove(group);
          }
      }
  
  
      // ****************** Recyclable implementation ************************
  
      private boolean disposed;
  
      /**
       * Recycles the object for a new client. Recycle methods with
       * parameters must be added to implementing object and they will be
       * automatically called by pool implementations when the object is
       * taken from the pool for a new client. The parameters must
       * correspond to the parameters of the constructors of the object.
       * For new objects, constructors can call their corresponding recycle
       * methods whenever applicable.
       * The recycle methods must call their super.
       */
      public void recycle()
      {
          disposed = false;
      }
  
      /**
       * Disposes the object after use. The method is called
       * when the object is returned to its pool.
       * The dispose method must call its super.
       */
      public void dispose()
      {
          Iterator iter = groups.values().iterator();
          while ( iter.hasNext() ) 
          {
              Group g = (Group)iter.next();
              TurbineIntake.releaseGroup(g);
          }
  
          groups.clear(); 
          declaredGroups.clear();
          data = null;
  
          disposed = true;
      }
  
      /**
       * Checks whether the recyclable has been disposed.
       * @return true, if the recyclable is disposed.
       */
      public boolean isDisposed()
      {
          return disposed;
      }
  
  
  }
  
  
  
  
  
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-dev-help@jakarta.apache.org