mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-09-10 02:39:42 +02:00
File Transfer. (SMACK-72) (SMACK-122)
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@3395 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
e3c264c689
commit
8d0db1a339
23 changed files with 5781 additions and 1 deletions
69
source/org/jivesoftware/smackx/provider/IBBProviders.java
Normal file
69
source/org/jivesoftware/smackx/provider/IBBProviders.java
Normal file
|
@ -0,0 +1,69 @@
|
|||
/*
|
||||
* Created on Jul 5, 2005
|
||||
*/
|
||||
package org.jivesoftware.smackx.provider;
|
||||
|
||||
import org.jivesoftware.smack.packet.IQ;
|
||||
import org.jivesoftware.smack.packet.PacketExtension;
|
||||
import org.jivesoftware.smack.provider.IQProvider;
|
||||
import org.jivesoftware.smack.provider.PacketExtensionProvider;
|
||||
import org.jivesoftware.smackx.packet.IBBExtensions;
|
||||
import org.xmlpull.v1.XmlPullParser;
|
||||
|
||||
/**
|
||||
*
|
||||
* Parses an IBB packet.
|
||||
*
|
||||
* @author Alexander Wenckus
|
||||
*/
|
||||
public class IBBProviders {
|
||||
|
||||
/**
|
||||
* Parses an open IBB packet.
|
||||
*
|
||||
* @author Alexander Wenckus
|
||||
*
|
||||
*/
|
||||
public static class Open implements IQProvider {
|
||||
public IQ parseIQ(XmlPullParser parser) throws Exception {
|
||||
final String sid = parser.getAttributeValue("", "sid");
|
||||
final int blockSize = Integer.parseInt(parser.getAttributeValue("",
|
||||
"block-size"));
|
||||
|
||||
return new IBBExtensions.Open(sid, blockSize);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses a data IBB packet.
|
||||
*
|
||||
* @author Alexander Wenckus
|
||||
*
|
||||
*/
|
||||
public static class Data implements PacketExtensionProvider {
|
||||
public PacketExtension parseExtension(XmlPullParser parser)
|
||||
throws Exception {
|
||||
final String sid = parser.getAttributeValue("", "sid");
|
||||
final long seq = Long
|
||||
.parseLong(parser.getAttributeValue("", "seq"));
|
||||
final String data = parser.nextText();
|
||||
|
||||
return new IBBExtensions.Data(sid, seq, data);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses a close IBB packet.
|
||||
*
|
||||
* @author Alexander Wenckus
|
||||
*
|
||||
*/
|
||||
public static class Close implements IQProvider {
|
||||
public IQ parseIQ(XmlPullParser parser) throws Exception {
|
||||
final String sid = parser.getAttributeValue("", "sid");
|
||||
|
||||
return new IBBExtensions.Close(sid);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue