001/** 002 * 003 * Copyright the original author or authors 004 * 005 * Licensed under the Apache License, Version 2.0 (the "License"); 006 * you may not use this file except in compliance with the License. 007 * You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017package org.jivesoftware.smack.provider; 018 019import java.io.IOException; 020import java.util.ArrayList; 021import java.util.HashMap; 022import java.util.List; 023import java.util.Map; 024 025import org.jivesoftware.smack.packet.ExtensionElement; 026import org.jivesoftware.smack.packet.XmlEnvironment; 027import org.jivesoftware.smack.parsing.SmackParsingException; 028import org.jivesoftware.smack.util.PacketParserUtils; 029import org.jivesoftware.smack.xml.XmlPullParser; 030import org.jivesoftware.smack.xml.XmlPullParserException; 031 032/** 033 * 034 * This class simplifies parsing of embedded elements by using the 035 * <a href="http://en.wikipedia.org/wiki/Template_method_pattern">Template Method Pattern</a>. 036 * After extracting the current element attributes and content of any child elements, the template method 037 * ({@link #createReturnExtension(String, String, Map, List)} is called. Subclasses 038 * then override this method to create the specific return type. 039 * 040 * <p>To use this class, you simply register your subclasses as extension providers in the 041 * <b>smack.properties</b> file. Then they will be automatically picked up and used to parse 042 * any child elements. 043 * 044 * <pre> 045 * For example, given the following message 046 * 047 * <message from='pubsub.shakespeare.lit' to='francisco@denmark.lit' id='foo> 048 * <event xmlns='http://jabber.org/protocol/pubsub#event> 049 * <items node='princely_musings'> 050 * <item id='asdjkwei3i34234n356'> 051 * <entry xmlns='http://www.w3.org/2005/Atom'> 052 * <title>Soliloquy</title> 053 * <link rel='alternative' type='text/html'/> 054 * <id>tag:denmark.lit,2003:entry-32397</id> 055 * </entry> 056 * </item> 057 * </items> 058 * </event> 059 * </message> 060 * 061 * I would have a classes 062 * <code>ItemsProvider</code> extends {@link EmbeddedExtensionProvider} 063 * <code>ItemProvider</code> extends {@link EmbeddedExtensionProvider} 064 * and 065 * AtomProvider extends {@link ExtensionElementProvider} 066 * 067 * These classes are then registered in the meta-inf/smack.providers file 068 * as follows. 069 * 070 * <extensionProvider> 071 * <elementName>items</elementName> 072 * <namespace>http://jabber.org/protocol/pubsub#event</namespace> 073 * <className>org.jivesoftware.smackx.provider.ItemsEventProvider</className> 074 * </extensionProvider> 075 * <extensionProvider> 076 * <elementName>item</elementName> 077 * <namespace>http://jabber.org/protocol/pubsub#event</namespace> 078 * <className>org.jivesoftware.smackx.provider.ItemProvider</className> 079 * </extensionProvider> 080 * 081 * </pre> 082 * 083 * @author Robin Collier 084 */ 085public abstract class EmbeddedExtensionProvider<PE extends ExtensionElement> extends ExtensionElementProvider<PE> { 086 087 @Override 088 public final PE parse(XmlPullParser parser, int initialDepth, XmlEnvironment xmlEnvironment) throws XmlPullParserException, IOException, SmackParsingException { 089 final String namespace = parser.getNamespace(); 090 final String name = parser.getName(); 091 final int attributeCount = parser.getAttributeCount(); 092 Map<String, String> attMap = new HashMap<>(attributeCount); 093 094 for (int i = 0; i < attributeCount; i++) { 095 attMap.put(parser.getAttributeName(i), parser.getAttributeValue(i)); 096 } 097 098 List<ExtensionElement> extensions = new ArrayList<>(); 099 XmlPullParser.Event event; 100 do { 101 event = parser.next(); 102 103 if (event == XmlPullParser.Event.START_ELEMENT) 104 PacketParserUtils.addExtensionElement(extensions, parser, xmlEnvironment); 105 } 106 while (!(event == XmlPullParser.Event.END_ELEMENT && parser.getDepth() == initialDepth)); 107 108 return createReturnExtension(name, namespace, attMap, extensions); 109 } 110 111 protected abstract PE createReturnExtension(String currentElement, String currentNamespace, 112 Map<String, String> attributeMap, List<? extends ExtensionElement> content); 113}