mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 09:45:59 +01:00
4b6de6647b
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@6517 b35dd754-fafc-0310-a699-88a17e54d16e
278 lines
7.3 KiB
Java
278 lines
7.3 KiB
Java
package org.jivesoftware.smackx.packet;
|
|
|
|
import org.jivesoftware.smack.packet.PacketExtension;
|
|
import org.jivesoftware.smackx.jingle.media.PayloadType;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Jingle content description.
|
|
*
|
|
* @author Alvaro Saurin <alvaro.saurin@gmail.com>
|
|
*/
|
|
public abstract class JingleContentDescription implements PacketExtension {
|
|
|
|
// static
|
|
|
|
public static final String NODENAME = "description";
|
|
|
|
// non-static
|
|
|
|
private final List payloads = new ArrayList();
|
|
|
|
/**
|
|
* Creates a content description..
|
|
*/
|
|
public JingleContentDescription() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Returns the XML element name of the element.
|
|
*
|
|
* @return the XML element name of the element.
|
|
*/
|
|
public String getElementName() {
|
|
return NODENAME;
|
|
}
|
|
|
|
/**
|
|
* Return the namespace.
|
|
*
|
|
* @return The namespace
|
|
*/
|
|
public abstract String getNamespace();
|
|
|
|
/**
|
|
* Adds a audio payload type to the packet.
|
|
*
|
|
* @param pt the audio payload type to add.
|
|
*/
|
|
public void addJinglePayloadType(final JinglePayloadType pt) {
|
|
synchronized (payloads) {
|
|
payloads.add(pt);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Adds a list of payloads to the packet.
|
|
*
|
|
* @param pts the payloads to add.
|
|
*/
|
|
public void addAudioPayloadTypes(final List pts) {
|
|
synchronized (payloads) {
|
|
Iterator ptIter = pts.iterator();
|
|
while (ptIter.hasNext()) {
|
|
PayloadType.Audio pt = (PayloadType.Audio) ptIter.next();
|
|
addJinglePayloadType(new JinglePayloadType.Audio(pt));
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns an Iterator for the audio payloads in the packet.
|
|
*
|
|
* @return an Iterator for the audio payloads in the packet.
|
|
*/
|
|
public Iterator getJinglePayloadTypes() {
|
|
return Collections.unmodifiableList(getJinglePayloadTypesList()).iterator();
|
|
}
|
|
|
|
/**
|
|
* Returns a list for the audio payloads in the packet.
|
|
*
|
|
* @return a list for the audio payloads in the packet.
|
|
*/
|
|
public ArrayList getJinglePayloadTypesList() {
|
|
synchronized (payloads) {
|
|
return new ArrayList(payloads);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return the list of Payload types contained in the description.
|
|
*
|
|
* @return a list of PayloadType.Audio
|
|
*/
|
|
public ArrayList getAudioPayloadTypesList() {
|
|
ArrayList result = new ArrayList();
|
|
Iterator jinglePtsIter = getJinglePayloadTypes();
|
|
|
|
while (jinglePtsIter.hasNext()) {
|
|
JinglePayloadType jpt = (JinglePayloadType) jinglePtsIter.next();
|
|
if (jpt instanceof JinglePayloadType.Audio) {
|
|
JinglePayloadType.Audio jpta = (JinglePayloadType.Audio) jpt;
|
|
result.add(jpta.getPayloadType());
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Returns a count of the audio payloads in the Jingle packet.
|
|
*
|
|
* @return the number of audio payloads in the Jingle packet.
|
|
*/
|
|
public int getJinglePayloadTypesCount() {
|
|
synchronized (payloads) {
|
|
return payloads.size();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Convert a Jingle description to XML.
|
|
*
|
|
* @return a string with the XML representation
|
|
*/
|
|
public String toXML() {
|
|
StringBuilder buf = new StringBuilder();
|
|
|
|
synchronized (payloads) {
|
|
if (payloads.size() > 0) {
|
|
buf.append("<").append(getElementName());
|
|
buf.append(" xmlns=\"").append(getNamespace()).append("\" >");
|
|
|
|
Iterator pt = payloads.listIterator();
|
|
while (pt.hasNext()) {
|
|
JinglePayloadType pte = (JinglePayloadType) pt.next();
|
|
buf.append(pte.toXML());
|
|
}
|
|
buf.append("</").append(getElementName()).append(">");
|
|
}
|
|
}
|
|
|
|
return buf.toString();
|
|
}
|
|
|
|
/**
|
|
* Jingle audio description
|
|
*/
|
|
public static class Audio extends JingleContentDescription {
|
|
|
|
public static final String NAMESPACE = "http://jabber.org/protocol/jingle/description/audio";
|
|
|
|
public Audio() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Utility constructor, with a JinglePayloadType
|
|
*/
|
|
public Audio(final JinglePayloadType pt) {
|
|
super();
|
|
addJinglePayloadType(pt);
|
|
}
|
|
|
|
public String getNamespace() {
|
|
return NAMESPACE;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* A payload type, contained in a descriptor.
|
|
*
|
|
* @author Alvaro Saurin
|
|
*/
|
|
public static class JinglePayloadType {
|
|
|
|
public static final String NODENAME = "payload-type";
|
|
|
|
private PayloadType payload;
|
|
|
|
/**
|
|
* Create a payload type.
|
|
*
|
|
* @param payload the payload
|
|
*/
|
|
public JinglePayloadType(final PayloadType payload) {
|
|
super();
|
|
this.payload = payload;
|
|
}
|
|
|
|
/**
|
|
* Create an empty payload type.
|
|
*/
|
|
public JinglePayloadType() {
|
|
this(null);
|
|
}
|
|
|
|
/**
|
|
* Returns the XML element name of the element.
|
|
*
|
|
* @return the XML element name of the element.
|
|
*/
|
|
public static String getElementName() {
|
|
return NODENAME;
|
|
}
|
|
|
|
/**
|
|
* Get the payload represented.
|
|
*
|
|
* @return the payload
|
|
*/
|
|
public PayloadType getPayloadType() {
|
|
return payload;
|
|
}
|
|
|
|
/**
|
|
* Set the payload represented.
|
|
*
|
|
* @param payload the payload to set
|
|
*/
|
|
public void setPayload(final PayloadType payload) {
|
|
this.payload = payload;
|
|
}
|
|
|
|
protected String getChildAttributes() {
|
|
return null;
|
|
}
|
|
|
|
public String toXML() {
|
|
StringBuilder buf = new StringBuilder();
|
|
|
|
if (payload != null) {
|
|
buf.append("<").append(getElementName()).append(" ");
|
|
|
|
// We covert here the payload type to XML
|
|
if (payload.getId() != PayloadType.INVALID_PT) {
|
|
buf.append(" id=\"").append(payload.getId()).append("\"");
|
|
}
|
|
if (payload.getName() != null) {
|
|
buf.append(" name=\"").append(payload.getName()).append("\"");
|
|
}
|
|
if (payload.getChannels() != 0) {
|
|
buf.append(" channels=\"").append(payload.getChannels()).append("\"");
|
|
}
|
|
if (getChildAttributes() != null) {
|
|
buf.append(getChildAttributes());
|
|
}
|
|
buf.append("/>");
|
|
}
|
|
return buf.toString();
|
|
}
|
|
|
|
/**
|
|
* Audio payload type element
|
|
*/
|
|
public static class Audio extends JinglePayloadType {
|
|
public Audio(final PayloadType.Audio audio) {
|
|
super(audio);
|
|
}
|
|
|
|
protected String getChildAttributes() {
|
|
StringBuilder buf = new StringBuilder();
|
|
PayloadType pt = getPayloadType();
|
|
if (pt instanceof PayloadType.Audio) {
|
|
PayloadType.Audio pta = (PayloadType.Audio) pt;
|
|
|
|
buf.append(" clockrate=\"").append(pta.getClockRate()).append("\" ");
|
|
}
|
|
return buf.toString();
|
|
}
|
|
}
|
|
}
|
|
}
|