blob: cb0bccd91efd35a12a60724df98a597cc0a3baf7 [file] [log] [blame]
/*
* 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.myfaces.buildtools.maven2.plugin.builder.model;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import org.apache.commons.digester.Digester;
import org.apache.myfaces.buildtools.maven2.plugin.builder.io.XmlWriter;
/**
* Store metadata about a class that is either a JSF Converter, or some base
* class or interface that a Converter can be derived from.
* <p>
* A converter can be used in three ways:
* <ul>
* <li>instantiated via a tag,
* <li>referenced via its id,
* <li>implicitly used via its forClass property
* </ul>
*/
public class ConverterMeta extends ViewEntityMeta implements PropertyHolder
{
private String _converterId;
private int _converterClassModifiers;
//Some converters has its own tag class, so it's necessary to
//add some properties for this cases (f:convertNumber or f:convertDateTime)
private String _bodyContent;
private String _tagClass;
private String _tagSuperclass;
private String _serialuidtag;
private Boolean _generatedTagClass;
private Boolean _configExcluded;
/**
* Write an instance of this class out as xml.
*/
protected void writeXmlSimple(XmlWriter out)
{
super.writeXmlSimple(out);
out.writeElement("converterId", _converterId);
out.writeElement("bodyContent", _bodyContent);
out.writeElement("tagClass", _tagClass);
out.writeElement("tagSuperclass", _tagSuperclass);
out.writeElement("serialuidtag", _serialuidtag);
out.writeElement("generatedTagClass", _generatedTagClass);
out.writeElement("configExcluded", _configExcluded);
}
/**
* Add digester rules to repopulate an instance of this type from an xml
* file.
*/
public static void addXmlRules(Digester digester, String prefix)
{
String newPrefix = prefix + "/converter";
digester.addObjectCreate(newPrefix, ConverterMeta.class);
digester.addSetNext(newPrefix, "addConverter");
ViewEntityMeta.addXmlRules(digester, newPrefix);
digester.addBeanPropertySetter(newPrefix + "/converterId");
digester.addBeanPropertySetter(newPrefix + "/bodyContent");
digester.addBeanPropertySetter(newPrefix + "/tagClass");
digester.addBeanPropertySetter(newPrefix + "/tagSuperclass");
digester.addBeanPropertySetter(newPrefix + "/serialuidtag");
digester.addBeanPropertySetter(newPrefix + "/generatedTagClass");
digester.addBeanPropertySetter(newPrefix + "/configExcluded");
}
public ConverterMeta()
{
super("converter");
}
/**
* Merge the data in the specified other property into this one, throwing an
* exception if there is an incompatibility.
*
* Not used right now since theorically there is very few inheritance
* on converters
*
*/
public void merge(ConverterMeta other)
{
super.merge(other);
_bodyContent = ModelUtils.merge(this._bodyContent, other._bodyContent);
boolean inheritParentTag = false;
//check if the parent set a tag class
if (other._tagClass != null)
{
//The tagSuperclass is the tagClass of the parent
_tagSuperclass = ModelUtils.merge(this._tagSuperclass,
other._tagClass);
inheritParentTag = true;
}
else
{
//The tagSuperclass is the tagSuperclass of the parent
_tagSuperclass = ModelUtils.merge(this._tagSuperclass,
other._tagSuperclass);
}
_converterId = ModelUtils.merge(this._converterId, other._converterId);
// TODO: _converterClassMOdifiers
if (inheritParentTag)
{
for (Iterator i = this.properties(); i.hasNext();)
{
PropertyMeta srcProp = (PropertyMeta) i.next();
PropertyMeta parentProp = other.getProperty(srcProp.getName());
if (parentProp != null)
{
//There are three possible behaviors:
//1. The property is defined on the child again and
// the property was already on the tag hierarchy, so
// inheritedTag must be set to TRUE.
//2. The property is defined on the child again and
// it is necessary to write again on the generated
// tag, so the annotation looks like
// "@JSFProperty inheritedTag=false"
// This condition must remain as FALSE
//3. The property is set by the user as true, but there
// was not defined previously on the hierarchy, so
// this condition must be as is (TRUE)
// (skipped on parentProp != null).
if (srcProp.isLocalInheritedTag() == null ||
srcProp.isInheritedTag().booleanValue())
{
srcProp.setInheritedTag(Boolean.TRUE);
}
}
}
_propertyTagList = null;
}
}
/**
* Sets the converter identifer for this component.
*/
public void setConverterId(String converterId)
{
_converterId = converterId;
}
public String getConverterId()
{
return _converterId;
}
/**
* Adds a Java Language class modifier to the converter class.
* <p>
* TODO: what is this for????
*/
public void addConverterClassModifier(int modifier)
{
_converterClassModifiers |= modifier;
}
/**
* Returns the Java Language class modifiers for the converter class. By
* default, these modifiers include Modifier.PUBLIC.
*
* @return the Java Language class modifiers for the converter class
*/
public int getConverterClassModifiers()
{
int modifiers = _converterClassModifiers;
if (!Modifier.isPrivate(modifiers) && !Modifier.isProtected(modifiers)
&& !Modifier.isPublic(modifiers))
{
modifiers |= Modifier.PUBLIC;
}
return modifiers;
}
public void setBodyContent(String bodyContent)
{
this._bodyContent = bodyContent;
}
public String getBodyContent()
{
return _bodyContent;
}
/**
* Sets the JSP tag handler class for this component.
*/
public void setTagClass(String tagClass)
{
_tagClass = tagClass;
}
public String getTagClass()
{
return _tagClass;
}
/**
* Sets the JSP tag handler superclass for this component.
*/
public void setTagSuperclass(String tagSuperclass)
{
_tagSuperclass = tagSuperclass;
}
public String getTagSuperclass()
{
return _tagSuperclass;
}
public void setSerialuidtag(String serialuidtag)
{
_serialuidtag = serialuidtag;
}
public String getSerialuidtag()
{
return _serialuidtag;
}
public void setGeneratedTagClass(Boolean generatedTagClass)
{
_generatedTagClass = generatedTagClass;
}
public Boolean isGeneratedTagClass()
{
return ModelUtils.defaultOf(_generatedTagClass,false);
}
public void setConfigExcluded(Boolean configExcluded)
{
_configExcluded = configExcluded;
}
public Boolean isConfigExcluded()
{
return ModelUtils.defaultOf(_configExcluded,false);
}
//THIS METHODS ARE USED FOR VELOCITY TO GET DATA AND GENERATE CLASSES
private List _propertyTagList = null;
public Collection getPropertyTagList()
{
if (_propertyTagList == null)
{
_propertyTagList = new ArrayList();
for (Iterator it = getPropertyList().iterator(); it.hasNext();)
{
PropertyMeta prop = (PropertyMeta) it.next();
if (!prop.isTagExcluded().booleanValue() &&
!prop.isInheritedTag().booleanValue())
{
_propertyTagList.add(prop);
}
}
}
return _propertyTagList;
}
}