Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7e74620e8b50fac2efb149728b90d1ee990b3da9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
package org.jivesoftware.smackx.packet;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

import org.jivesoftware.smack.packet.PacketExtension;
import org.jivesoftware.smackx.jingle.PayloadType;

/**
 * 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() {
		StringBuffer buf = new StringBuffer();

		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() {
			StringBuffer buf = new StringBuffer();

			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() {
				StringBuffer buf = new StringBuffer();
				PayloadType pt = getPayloadType();
				if (pt instanceof PayloadType.Audio) {
					PayloadType.Audio pta = (PayloadType.Audio) pt;

					buf.append(" clockrate=\"").append(pta.getClockRate()).append("\" ");
				}
				return buf.toString();
			}
		}
	}
}

Back to the top