📄 checkrequiredattributes.java
字号:
/* * $Id: CheckRequiredAttributes.java 10628 2008-01-30 17:30:01Z acooke $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.config.spring.parsers.processors;import org.mule.config.spring.parsers.PreProcessor;import org.mule.config.spring.parsers.assembly.configuration.PropertyConfiguration;import org.mule.config.spring.util.SpringXMLUtils;import java.util.HashMap;import java.util.Iterator;import java.util.Map;import org.w3c.dom.Attr;import org.w3c.dom.Element;import org.w3c.dom.NamedNodeMap;/** * All attributes from at least one set must be provided */public class CheckRequiredAttributes implements PreProcessor{ // maps from attribute name to attribute set index (integer) private Map knownAttributes = new HashMap(); // maps from attribute set index to number of attributes in that set private Map numberOfAttributes = new HashMap(); // description of acceptable attributes private String summary; public CheckRequiredAttributes(String[][] attributeSets) { StringBuffer buffer = new StringBuffer(); for (int set = 0; set < attributeSets.length; set++) { String[] attributes = attributeSets[set]; // ignore empty sets if (attributes.length > 0) { Integer index = new Integer(set); numberOfAttributes.put(index, new Integer(attributes.length)); if (set > 0) { buffer.append("; "); } for (int attribute = 0; attribute < attributes.length; attribute++) { knownAttributes.put(attributes[attribute], index); if (attribute > 0) { buffer.append(", "); } // don't translate to alias because the error message is in terms of the attributes // the user enters - we don't want to expose the details of translations buffer.append(attributes[attribute]); } } } summary = buffer.toString(); } public void preProcess(PropertyConfiguration config, Element element) { // map from attribute set index to count Map foundAttributesCount = new HashMap(); NamedNodeMap attributes = element.getAttributes(); for (int i = 0; i < attributes.getLength(); i++) { String alias = SpringXMLUtils.attributeName((Attr) attributes.item(i)); if (knownAttributes.containsKey(alias)) { Integer index = (Integer) knownAttributes.get(alias); if (!foundAttributesCount.containsKey(index)) { foundAttributesCount.put(index, new Integer(0)); } foundAttributesCount.put(index, new Integer(1 + ((Integer) foundAttributesCount.get(index)).intValue())); } } // if there are no attributes to check for, we are ok boolean ok = knownAttributes.size() == 0; Iterator indices = foundAttributesCount.keySet().iterator(); while (indices.hasNext() && !ok) { Object index = indices.next(); Object count = foundAttributesCount.get(index); ok = numberOfAttributes.get(index).equals(count); } if (!ok) { throw new CheckRequiredAttributesException(element, summary); } } public static class CheckRequiredAttributesException extends IllegalStateException { private CheckRequiredAttributesException(Element element, String summary) { super("Element " + SpringXMLUtils.elementToString(element) + " must have all attributes for one of the sets: " + summary + "."); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -