Coverage Report - org.apache.myfaces.view.facelets.tag.jsf.ConverterTagHandlerDelegate
 
Classes in this File Line Coverage Branch Coverage Complexity
ConverterTagHandlerDelegate
0%
0/43
0%
0/22
3.833
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one
 3  
  * or more contributor license agreements.  See the NOTICE file
 4  
  * distributed with this work for additional information
 5  
  * regarding copyright ownership.  The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the
 7  
  * "License"); you may not use this file except in compliance
 8  
  * with the License.  You may obtain a copy of the License at
 9  
  *
 10  
  *   http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing,
 13  
  * software distributed under the License is distributed on an
 14  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 15  
  * KIND, either express or implied.  See the License for the
 16  
  * specific language governing permissions and limitations
 17  
  * under the License.
 18  
  */
 19  
 package org.apache.myfaces.view.facelets.tag.jsf;
 20  
 
 21  
 import java.io.IOException;
 22  
 
 23  
 import javax.el.ValueExpression;
 24  
 import javax.faces.component.UIComponent;
 25  
 import javax.faces.component.ValueHolder;
 26  
 import javax.faces.context.FacesContext;
 27  
 import javax.faces.convert.Converter;
 28  
 import javax.faces.view.ValueHolderAttachedObjectHandler;
 29  
 import javax.faces.view.facelets.ComponentHandler;
 30  
 import javax.faces.view.facelets.ConverterHandler;
 31  
 import javax.faces.view.facelets.FaceletContext;
 32  
 import javax.faces.view.facelets.MetaRuleset;
 33  
 import javax.faces.view.facelets.TagAttribute;
 34  
 import javax.faces.view.facelets.TagException;
 35  
 import javax.faces.view.facelets.TagHandlerDelegate;
 36  
 
 37  
 import org.apache.myfaces.view.facelets.FaceletCompositionContext;
 38  
 import org.apache.myfaces.view.facelets.tag.MetaRulesetImpl;
 39  
 
 40  
 /**
 41  
  * Handles setting a Converter instance on a ValueHolder. Will wire all attributes set to the Converter instance
 42  
  * created/fetched. Uses the "binding" attribute for grabbing instances to apply attributes to. <p/> Will only
 43  
  * set/create Converter is the passed UIComponent's parent is null, signifying that it wasn't restored from an existing
 44  
  * tree.
 45  
  * 
 46  
  * @author Leonardo Uribe (latest modification by $Author$)
 47  
  * @version $Revision$ $Date$
 48  
  *
 49  
  * @since 2.0
 50  
  */
 51  
 public class ConverterTagHandlerDelegate extends TagHandlerDelegate implements ValueHolderAttachedObjectHandler
 52  
 {
 53  
     private ConverterHandler _delegate;
 54  
     
 55  
     public ConverterTagHandlerDelegate(ConverterHandler delegate)
 56  0
     {
 57  0
         _delegate = delegate;
 58  0
     }
 59  
 
 60  
     /**
 61  
      * Set Converter instance on parent ValueHolder if it's not being restored.
 62  
      * <ol>
 63  
      * <li>Cast to ValueHolder</li>
 64  
      * <li>If "binding" attribute was specified, fetch/create and re-bind to expression.</li>
 65  
      * <li>Otherwise, call {@link #createConverter(FaceletContext) createConverter}.</li>
 66  
      * <li>Call {@link ObjectHandler#setAttributes(FaceletContext, Object) setAttributes} on Converter instance.</li>
 67  
      * <li>Set the Converter on the ValueHolder</li>
 68  
      * <li>If the ValueHolder has a localValue, convert it and set the value</li>
 69  
      * </ol>
 70  
      * 
 71  
      * @see ValueHolder
 72  
      * @see Converter
 73  
      * @see #createConverter(FaceletContext)
 74  
      * @see javax.faces.view.facelets.FaceletHandler#apply(javax.faces.view.facelets.FaceletContext, javax.faces.component.UIComponent)
 75  
      */
 76  
     @Override
 77  
     public void apply(FaceletContext ctx, UIComponent parent) throws IOException
 78  
     {
 79  
         // only process if it's been created
 80  0
         if (!ComponentHandler.isNew(parent))
 81  
         {
 82  0
             return;
 83  
         }
 84  0
         if (parent instanceof ValueHolder)
 85  
         {
 86  0
             applyAttachedObject(ctx.getFacesContext(), parent);
 87  
         }
 88  0
         else if (UIComponent.isCompositeComponent(parent))
 89  
         {
 90  0
             if (getFor() == null)
 91  
             {
 92  0
                 throw new TagException(_delegate.getTag(), "is nested inside a composite component"
 93  
                         + " but does not have a for attribute.");
 94  
             }
 95  0
             FaceletCompositionContext mctx = FaceletCompositionContext.getCurrentInstance(ctx);
 96  0
             mctx.addAttachedObjectHandler(parent, _delegate);
 97  0
         }
 98  
         else
 99  
         {
 100  0
             throw new TagException(_delegate.getTag(),
 101  
                     "Parent not composite component or an instance of ValueHolder: " + parent);
 102  
         }      
 103  0
     }
 104  
 
 105  
     /**
 106  
      * Create a Converter instance
 107  
      * 
 108  
      * @param ctx
 109  
      *            FaceletContext to use
 110  
      * @return Converter instance, cannot be null
 111  
      */
 112  
     protected Converter createConverter(FaceletContext ctx)
 113  
     {
 114  0
         if (_delegate.getConverterId(ctx) == null)
 115  
         {
 116  0
             throw new TagException(_delegate.getTag(),
 117  
                                     "Default behavior invoked of requiring a converter-id passed in the "
 118  
                                     + "constructor, must override ConvertHandler(ConverterConfig)");
 119  
         }
 120  0
         return ctx.getFacesContext().getApplication().createConverter(_delegate.getConverterId(ctx));
 121  
     }
 122  
 
 123  
     @Override
 124  
     public MetaRuleset createMetaRuleset(Class type)
 125  
     {
 126  0
         return new MetaRulesetImpl(_delegate.getTag(), type).ignore("binding").ignore("for");
 127  
     }
 128  
 
 129  
     public void applyAttachedObject(FacesContext context, UIComponent parent)
 130  
     {
 131  
         // Retrieve the current FaceletContext from FacesContext object
 132  0
         FaceletContext faceletContext = (FaceletContext) context.getAttributes().get(
 133  
                 FaceletContext.FACELET_CONTEXT_KEY);
 134  
         
 135  
         // cast to a ValueHolder
 136  0
         ValueHolder vh = (ValueHolder) parent;
 137  0
         ValueExpression ve = null;
 138  0
         Converter c = null;
 139  0
         if (_delegate.getBinding() != null)
 140  
         {
 141  0
             ve = _delegate.getBinding().getValueExpression(faceletContext, Converter.class);
 142  0
             c = (Converter) ve.getValue(faceletContext);
 143  
         }
 144  0
         if (c == null)
 145  
         {
 146  0
             c = this.createConverter(faceletContext);
 147  0
             if (ve != null)
 148  
             {
 149  0
                 ve.setValue(faceletContext, c);
 150  
             }
 151  
         }
 152  0
         if (c == null)
 153  
         {
 154  0
             throw new TagException(_delegate.getTag(), "No Converter was created");
 155  
         }
 156  0
         _delegate.setAttributes(faceletContext, c);
 157  0
         vh.setConverter(c);
 158  0
         Object lv = vh.getLocalValue();
 159  0
         FacesContext faces = faceletContext.getFacesContext();
 160  0
         if (lv instanceof String)
 161  
         {
 162  0
             vh.setValue(c.getAsObject(faces, parent, (String) lv));
 163  
         }
 164  0
     }
 165  
 
 166  
     public String getFor()
 167  
     {
 168  0
         TagAttribute forAttribute = _delegate.getTagAttribute("for");
 169  
         
 170  0
         if (forAttribute == null)
 171  
         {
 172  0
             return null;
 173  
         }
 174  
         else
 175  
         {
 176  0
             return forAttribute.getValue();
 177  
         }
 178  
     }
 179  
 }