RosterPacketProvider.java
- /**
- *
- * Copyright © 2003-2007 Jive Software, 2014-2015 Florian Schmaus
- *
- * Licensed 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.jivesoftware.smack.roster.provider;
- import java.io.IOException;
- import org.jivesoftware.smack.SmackException;
- import org.jivesoftware.smack.provider.IQProvider;
- import org.jivesoftware.smack.roster.packet.RosterPacket;
- import org.jxmpp.jid.Jid;
- import org.jxmpp.jid.impl.JidCreate;
- import org.xmlpull.v1.XmlPullParser;
- import org.xmlpull.v1.XmlPullParserException;
- public class RosterPacketProvider extends IQProvider<RosterPacket> {
- public static final RosterPacketProvider INSTANCE = new RosterPacketProvider();
- @Override
- public RosterPacket parse(XmlPullParser parser, int initialDepth) throws XmlPullParserException, IOException,
- SmackException {
- RosterPacket roster = new RosterPacket();
- RosterPacket.Item item = null;
- String version = parser.getAttributeValue("", "ver");
- roster.setVersion(version);
- outerloop: while (true) {
- int eventType = parser.next();
- switch(eventType) {
- case XmlPullParser.START_TAG:
- String startTag = parser.getName();
- switch (startTag) {
- case "item":
- String jidString = parser.getAttributeValue("", "jid");
- String name = parser.getAttributeValue("", "name");
- Jid jid = JidCreate.from(jidString);
- // Create packet.
- item = new RosterPacket.Item(jid, name);
- // Set status.
- String ask = parser.getAttributeValue("", "ask");
- RosterPacket.ItemStatus status = RosterPacket.ItemStatus.fromString(ask);
- item.setItemStatus(status);
- // Set type.
- String subscription = parser.getAttributeValue("", "subscription");
- RosterPacket.ItemType type = RosterPacket.ItemType.valueOf(subscription != null ? subscription : "none");
- item.setItemType(type);
- break;
- case "group":
- // TODO item!= null
- final String groupName = parser.nextText();
- if (groupName != null && groupName.trim().length() > 0) {
- item.addGroupName(groupName);
- }
- break;
- }
- break;
- case XmlPullParser.END_TAG:
- String endTag = parser.getName();
- switch(endTag) {
- case "item":
- roster.addRosterItem(item);
- break;
- case "query":
- break outerloop;
- }
- }
- }
- return roster;
- }
- }