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.smackx.bytestreams.ibb.provider;
018
019import java.io.IOException;
020
021import org.jivesoftware.smackx.bytestreams.ibb.packet.Data;
022import org.jivesoftware.smackx.bytestreams.ibb.packet.DataPacketExtension;
023
024import org.xmlpull.v1.XmlPullParser;
025import org.xmlpull.v1.XmlPullParserException;
026
027/**
028 * Parses an In-Band Bytestream data stanza(/packet) which can be a stanza(/packet) extension of
029 * either an IQ stanza or a message stanza.
030 * 
031 * @author Henning Staib
032 */
033public class DataPacketProvider {
034
035    public static class IQProvider extends org.jivesoftware.smack.provider.IQProvider<Data> {
036
037        private static final PacketExtensionProvider packetExtensionProvider = new PacketExtensionProvider();
038
039        @Override
040        public Data parse(XmlPullParser parser, int initialDepth)
041                        throws Exception {
042            DataPacketExtension data = packetExtensionProvider.parse(parser);
043            Data iq = new Data(data);
044            return iq;
045        }
046    }
047
048    public static class PacketExtensionProvider extends org.jivesoftware.smack.provider.ExtensionElementProvider<DataPacketExtension> {
049
050        @Override
051        public DataPacketExtension parse(XmlPullParser parser,
052                        int initialDepth) throws XmlPullParserException,
053                        IOException {
054            String sessionID = parser.getAttributeValue("", "sid");
055            long seq = Long.parseLong(parser.getAttributeValue("", "seq"));
056            String data = parser.nextText();
057            return new DataPacketExtension(sessionID, seq, data);
058        }
059
060    }
061}