summaryrefslogtreecommitdiffstats
path: root/stream/freesdp/parser.h
blob: 80c61d0115a8d4b5451d5083af1ac484383e121d (plain)
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
/*
  This file is part of FreeSDP
  Copyright (C) 2001,2002,2003 Federico Montesino Pouzols <fedemp@altern.org>

  FreeSDP is free software; you can redistribute it and/or modify it
  under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

  Benjamin Zores, (C) 2006
    added support in parser for the a=control: lines.
    added support in parser for the a=range: lines.
*/

/**
 * @file parser.h
 * @ingroup parser
 * @short Specific public header for parsing module.
 **/

#ifndef FSDP_PARSER_H
#define FSDP_PARSER_H

#include "common.h"

BEGIN_C_DECLS
/**
 * @defgroup parser FreeSDP Parsing Module
 *
 * SDP descriptions parsing routines.
 * @{
 **/
/**
 * Parse a SDP description in <code>description</code>, extracting the
 * session properties into <code>dsc</code>. These properties can be
 * obtained individually later using the <code>fsdp_get_xxxx<code>
 * functions.
 *
 * @param description a multimedia session description formatted in
 * SDP.  
 * @param dsc pointer that is updated to point to a fsdp_description_t
 * object. This fsdp_description_t object should have been previously
 * allocated using <code>fsdp_description_new()</code>; to free it,
 * <code>fsdp_description_delete()</code> should be used.
 *
 * @return FSDPE_OK when parsing completes successfully. Otherwise,
 * another error code is returned.
 **/
fsdp_error_t fsdp_parse (const char *description, fsdp_description_t * dsc);

/**
 * Get the SDP protocol version of the description.
 *
 * @return SDP protocol version number. 
 **/
unsigned int fsdp_get_version (const fsdp_description_t * dsc);

/**
 * Get the username provided by the originator of the session. 
 *
 * @param dsc SDP description object.
 * @return username of the session owner
 **/
const char *fsdp_get_owner_username (const fsdp_description_t * dsc);

/**
 * Get the id for the session described in <code>dsc</code>. 
 *
 * @param dsc SDP description object.
 * @return id string for this session.
 **/
const char *fsdp_get_session_id (const fsdp_description_t * dsc);

/**
 * Get the announcement version for the session description in
 * <code>dsc</code>.
 *
 * @param dsc SDP description object.
 * @return announcement version string for this description.
 **/
const char *fsdp_get_announcement_version (const fsdp_description_t * dsc);

/**
 * Get the the type of network the owner of the session described in
 * <code>dsc</code> is based on.
 *
 * @param dsc SDP description object.
 * @return network type for the owner of this session.
 **/
fsdp_network_type_t
fsdp_get_owner_network_type (const fsdp_description_t * dsc);

/**
 * Get the the type of address the owner of the session described in
 * <code>dsc</code> is based on.
 *
 * @param dsc SDP description object.
 * @return network address type for the owner of this session.
 **/
fsdp_address_type_t
fsdp_get_owner_address_type (const fsdp_description_t * dsc);

/**
 * Get the network address of the owner of the session described in
 * <code>dsc</code>.
 *
 * @param dsc SDP description object.
 * @return network address for the owner this session.
 **/
const char *fsdp_get_owner_address (const fsdp_description_t * dsc);

/**
 * Get the name of the session described in <code>dsc</code>.
 *
 * @param dsc SDP description object.
 * @return name of this session.
 **/
const char *fsdp_get_name (const fsdp_description_t * dsc);

/**
 * Get the information about the session provided in the description
 * <code>dsc</code>.
 *
 * @param dsc SDP description object.
 * @return information of this session.
 **/
const char *fsdp_get_information (const fsdp_description_t * dsc);

/**
 * Get an URI about the session provided in the description
 * <code>dsc</code>.
 *
 * @param dsc SDP description object.
 * @return string containing an URI about the session. NULL if the
 * session uri is missing.
 **/
const char *fsdp_get_uri (const fsdp_description_t * dsc);

/**
 * Get the number of emails specified for the session in the description
 * <code>dsc</code>.
 *
 * @param dsc SDP description object.
 * @return number of emails.
 **/
unsigned int fsdp_get_emails_count (const fsdp_description_t * dsc);

/**
 * Get the n-th email specified for the session in the description
 * <code>dsc</code>.
 *
 * @param dsc SDP description object.
 * @param index number of URI. Note that this index follows the
 * traditional C convention: from 0 to fsdp_get_emails_count() - 1.
 * @return string containing an email about the session. NULL if there
 * is no such index.
 **/
const char *fsdp_get_email (const fsdp_description_t * dsc,
			    unsigned int index);

/**
 * Get the number of phones specified for the session in the description
 * <code>dsc</code>.
 *
 * @param dsc SDP description object.
 * @return number of emails.
 **/
unsigned int fsdp_get_phones_count (const fsdp_description_t * dsc);

/**
 * Get the n-th phone specified for the session in the description
 * <code>dsc</code>.
 *
 * @param dsc SDP description object.
 * @param index number of URI. Note that this index follows the
 * traditional C convention: from 0 to fsdp_get_phones_count() - 1.
 * @return string containing a phone about the session. NULL if there
 * is no such index.
 **/
const char *fsdp_get_phone (const fsdp_description_t * dsc,
			    unsigned int index);

/**
 * Get the the global type of network of the multimedia session
 * connection.
 *
 * @param dsc SDP description object.
 * @return global network type for this
 * connection. FSDP_NETWORK_TYPE_UNDEFINED if no global network
 * address type is included in the description.
 **/
fsdp_network_type_t
fsdp_get_global_conn_network_type (const fsdp_description_t * dsc);

/**
 * Get the the global type of network address of the multimedia
 * session connection.
 *
 * @param dsc SDP description object.
 * @return global network address type for this connection.
 * FSDP_ADDRESS_TYPE_UNDEFINED if no global network address type is
 * included in the description.
 **/
fsdp_address_type_t
fsdp_get_global_conn_address_type (const fsdp_description_t * dsc);

/**
 * Get the the global address of the multimedia session connection.
 *
 * @param dsc SDP description object.
 * @return global address for this connection.
 **/
const char *fsdp_get_global_conn_address (const fsdp_description_t * dsc);

unsigned int
fsdp_get_global_conn_address_ttl (const fsdp_description_t * dsc);

unsigned int
fsdp_get_global_conn_address_count (const fsdp_description_t * dsc);

/**
 * Get the number of bandwidth modifiers specified for this session.
 *
 * @param dsc SDP description object.
 * @return number of bandwidth modifiers.
 **/
unsigned int fsdp_get_bw_modifier_count (const fsdp_description_t * dsc);

/**
 * Get the bandwidth modifier type for the session.
 *
 * @param dsc SDP description object.
 * @param index number of bandwidth modifier.
 *
 * @return global bandwidth modifier type.  
 * @retval FSDP_BW_MOD_TYPE_UNDEFINED if no global bandwith modifier
 * type is defined or invalid index.
 * @retval FSDP_BW_MOD_TYPE_UNKNOWN if an unknown bandwith modifier is
 * specified or an invalid index is provided. In this case
 * fsdp_get_bw_modifer_type_unknown() can be called to get the
 * modifier as a character string.
 **/
fsdp_bw_modifier_type_t
fsdp_get_bw_modifier_type (const fsdp_description_t * dsc,
			   unsigned int index);

/**
 * Get the textual bandwidth modifier type when it is unknown. 
 *
 * @param dsc SDP description object.
 * @param index number of bandwidth modifier.
 *
 * @return global bandwidth modifier type.
 * @retval empty string if the provided bandwidth type is not unknown,
 * the provided index is invalid or or there was a parse error.
 **/
const char *fsdp_get_bw_modifier_type_unknown (const fsdp_description_t * dsc,
					       unsigned int index);

/**
 * Get the value for the bandwidth modifier. 
 *
 * @param dsc SDP description object.
 * @param index number of bandwidth modifier.
 * @return global bandwidth value.
 * @retval 0 if no bandwidth is specified for this session or an
 * invalid index has been provided.
 **/
unsigned long int
fsdp_get_bw_value (const fsdp_description_t * dsc, unsigned int index);

/**
 * Get the number of time periods specified for this session
 *
 * @param dsc SDP description object.
 * @return number of time periods
 **/
unsigned long int fsdp_get_period_count (const fsdp_description_t * dsc);

/**
 * Get the start time for the period selected by index.
 *
 * @param dsc SDP description object.
 * @param index number of time period. Note that this index follows the
 * traditional C convention: from 0 to fsdp_get_period_count() - 1.
 * @return start time
 * @retval 0 if an invalid index is provided.
 **/
time_t
fsdp_get_period_start (const fsdp_description_t * dsc, unsigned int index);

/**
 * Get the stop time for the period selected by index.
 *
 * @param dsc SDP description object.
 * @param index number of time period. Note that this index follows the
 * traditional C convention: from 0 to fsdp_get_period_count() - 1.
 * @return stop time
 * @retval 0 if an invalid index is provided.
 **/
time_t
fsdp_get_period_stop (const fsdp_description_t * dsc, unsigned int index);

/**
 * Get the number of repeats for the period selected by index.
 *
 * @param dsc SDP description object.
 * @param index number of the period. Note that this index follows the
 * traditional C convention: from 0 to fsdp_get_period_count() - 1.
 * @return number of repeats
 * @retval 0 if an invalid index is provided.
 **/
unsigned int
fsdp_get_period_repeats_count (const fsdp_description_t * dsc,
			       unsigned int index);

/**
 * Get the interval time of the repeat selected by rindex for the
 * period selected by index.
 *
 * @param dsc SDP description object.
 * @param index number of time period. Note that this index follows the
 * traditional C convention: from 0 to fsdp_get_period_count() - 1.
 * @param rindex number of repeat
 * @return interval time
 * @retval 0 if an invalid index is provided.
 **/
unsigned long int
fsdp_get_period_repeat_interval (const fsdp_description_t * dsc,
				 unsigned int index, unsigned int rindex);

/**
 * Get the duration of the repeat selected by rindex for the period
 * selected by index.
 *
 * @param dsc SDP description object.
 * @param index number of time period. Note that this index follows the
 * traditional C convention: from 0 to fsdp_get_period_count() - 1.
 * @param rindex number of repeat
 * @return duration
 * @retval 0 if an invalid index is provided.
 **/
unsigned long int
fsdp_get_period_repeat_duration (const fsdp_description_t * dsc,
				 unsigned int index, unsigned int rindex);

/**
 * Get the offsets of the repeat selected by rindex for the period
 * selected by index.
 *
 * @param dsc SDP description object.
 * @param index number of time period. Note that this index follows the
 * traditional C convention: from 0 to fsdp_get_period_count() - 1.
 * @param rindex number of repeat
 * @return array of offsets
 * @retval NULL if an invalid index is provided.
 **/
const unsigned long int *fsdp_get_period_repeat_offsets (const
							 fsdp_description_t *
							 dsc,
							 unsigned int index,
							 unsigned int rindex);

/**
 * Get the encryption method defined for this session.
 *
 * @param dsc SDP description object.
 * @return encryption method. FSDP_ENCRYPTION_METHOD_UNDEFINED if no
 * encryption method is specified.
 **/
fsdp_encryption_method_t
fsdp_get_encryption_method (const fsdp_description_t * dsc);

/**
 * Get the encryption key or a URI pointing to the encryption key for
 * this session.
 *
 * @param dsc SDP description object.
 * @return encryption key unless FSDP_ENCRYPTION_METHOD_URI is
 * specified, in which case a URI pointing to the key is returned. If
 * the global encryption method is undefined, NULL is returned.
 **/
const char *fsdp_get_encryption_content (const fsdp_description_t * dsc);

/**
 * Get timezone adjustments.
 *
 * @param dsc SDP description object.
 * @return string with list of timezone adjustments
 * @retval NULL if no timezone adjustment list was specified or there
 * was a parse error.
 **/
const char *fsdp_get_timezone_adj (const fsdp_description_t * dsc);

/**
 *
 **/
unsigned int
fsdp_get_unidentified_attribute_count (const fsdp_description_t * dsc);

/**
 *
 **/
const char *fsdp_get_unidentified_attribute (const fsdp_description_t * dsc,
					     unsigned int index);

/**
 *
 **/
unsigned int
fsdp_get_media_rtpmap_count (const fsdp_media_description_t * mdsc);

/**
 *
 **/
const char *fsdp_get_media_rtpmap_payload_type (const fsdp_media_description_t
						* mdsc, unsigned int index);

/**
 *
 **/
const char *fsdp_get_media_rtpmap_encoding_name (const
						 fsdp_media_description_t *
						 mdsc, unsigned int index);

/**
 *
 **/
unsigned int
fsdp_get_media_rtpmap_clock_rate (const fsdp_media_description_t * mdsc,
				  unsigned int index);

/**
 *
 **/
const char *fsdp_get_media_rtpmap_encoding_parameters (const
						       fsdp_description_t *
						       mdsc,
						       unsigned int index);

/**
 * Get the value of the session attribute specified in
 * <code>att</code>. This function works for all the session
 * attributes whose value is a character string. These attributes are
 * defined in the session_string_attribute_t enumerated type.
 *
 * @param dsc SDP description object.
 * @param att attribute to get.
 *
 * @return value of the attribute <code>att</code>.
 * @retval NULL if the attribute was not specified or there was a
 * parse error or an invalid att is given.
 **/
const char *fsdp_get_str_att (const fsdp_description_t * dsc,
			      fsdp_session_str_att_t att);

/**
 *
 **/
unsigned int fsdp_get_sdplang_count (const fsdp_description_t * dsc);

/**
 *
 **/
const char *fsdp_get_sdplang (const fsdp_description_t * dsc,
			      unsigned int index);

/** 
 * Get the mode of the conference, specified with attributes sendrecv,
 * sendonly, recvonly and inactive.
 *
 * @param dsc SDP description object.
 * @return send/rec conference mode.
 * @retval FSDP_SENDRECV_UNDEFINED if conference mode not provided.
 **/
fsdp_sendrecv_mode_t fsdp_get_sendrecv_mode (const fsdp_description_t * dsc);

/**
 * Get the type of conference, such as broadcast, meeting, moderated,
 * test or H332.
 *
 * @param dsc SDP description object.
 * @return conference type.
 * @retval FSDP_SESSION_TYPE_UNDEFINED if conference type not provided.
 **/
fsdp_session_type_t fsdp_get_session_type (const fsdp_description_t * dsc);

/**
 *
 **/
unsigned int fsdp_get_media_count (const fsdp_description_t * dsc);

/**
 *
 **/
const fsdp_media_description_t *fsdp_get_media (const fsdp_description_t *
						dsc, unsigned int index);

/**
 *
 **/
fsdp_media_t fsdp_get_media_type (const fsdp_media_description_t * dsc);

/**
 *
 **/
unsigned int fsdp_get_media_port (const fsdp_media_description_t * dsc);

unsigned int fsdp_get_media_port_count (const fsdp_media_description_t * dsc);

/**
 *
 **/
fsdp_transport_protocol_t
fsdp_get_media_transport_protocol (const fsdp_media_description_t * dsc);

/**
 *
 **/
const char *fsdp_get_media_formats (const fsdp_media_description_t * dsc);

/**
 *
 **/
unsigned int
fsdp_get_media_formats_count (const fsdp_media_description_t * dsc);

/**
 *
 **/
const char *fsdp_get_media_format (const fsdp_media_description_t * dsc,
				   unsigned int index);

/**
 *
 **/
const char *fsdp_get_media_title (const fsdp_media_description_t * dsc);

/**
 *
 **/
fsdp_network_type_t
fsdp_get_media_network_type (const fsdp_media_description_t * dsc);

/**
 *
 **/
fsdp_address_type_t
fsdp_get_media_address_type (const fsdp_media_description_t * dsc);

/**
 *
 **/
const char *fsdp_get_media_address (const fsdp_media_description_t * dsc);

unsigned int
fsdp_get_media_address_ttl (const fsdp_media_description_t * mdsc);

unsigned int
fsdp_get_media_address_count (const fsdp_media_description_t * mdsc);

/**
 *
 **/
fsdp_bw_modifier_type_t
fsdp_get_media_bw_modifier_type (const fsdp_media_description_t * dsc,
				 unsigned int index);

/**
 *
 **/
const char *fsdp_get_media_bw_modifier_type_unknown (const
						     fsdp_media_description_t
						     * dsc,
						     unsigned int index);

/**
 *
 **/
unsigned long int
fsdp_get_media_bw_value (const fsdp_media_description_t * dsc,
			 unsigned int index);

/**
 *
 **/
fsdp_encryption_method_t
fsdp_get_media_encryption_method (const fsdp_media_description_t * dsc);

/**
 *
 **/
const char *fsdp_get_media_encryption_content (const fsdp_media_description_t
					       * dsc);

/**
 *
 **/
unsigned int fsdp_get_media_ptime (const fsdp_media_description_t * dsc);

/**
 *
 **/
unsigned int fsdp_get_media_maxptime (const fsdp_media_description_t * dsc);

/**
 *
 **/
unsigned int
fsdp_get_media_fmtp_count (const fsdp_media_description_t * mdsc);

/**
 *
 **/
const char *fsdp_get_media_fmtp (const fsdp_media_description_t * mdsc,
				 unsigned int index);

/**
 *
 **/
unsigned int
fsdp_get_media_sdplang_count (const fsdp_media_description_t * dsc);

/**
 *
 **/
const char *fsdp_get_media_sdplang (const fsdp_media_description_t * dsc,
				    unsigned int index);

/**
 *
 **/
unsigned int fsdp_get_media_lang_count (const fsdp_media_description_t * dsc);

/**
 *
 **/
const char *fsdp_get_media_lang (const fsdp_media_description_t * dsc,
				 unsigned int index);


unsigned int fsdp_get_control_count (const fsdp_description_t * dsc);

const char *fsdp_get_control (const fsdp_description_t * dsc,
			      unsigned int index);

const char *fsdp_get_range (const fsdp_description_t * dsc);

unsigned int
fsdp_get_media_control_count (const fsdp_media_description_t * mdsc);

char *fsdp_get_media_control (const fsdp_media_description_t * mdsc,
			      unsigned int index);

char *fsdp_get_media_range (const fsdp_media_description_t * mdsc);

/**
 *
 **/
fsdp_orient_t fsdp_get_media_orient (const fsdp_media_description_t * dsc);

/**
 *
 **/
fsdp_sendrecv_mode_t
fsdp_get_media_sendrecv (const fsdp_media_description_t * dsc);

/**
 *
 **/
float fsdp_get_media_framerate (const fsdp_media_description_t * dsc);

/**
 *
 **/
unsigned int fsdp_get_media_quality (const fsdp_media_description_t * dsc);

/**
 *
 **/
unsigned int fsdp_get_media_rtcp_port (const fsdp_media_description_t * dsc);

/**
 *
 **/
fsdp_network_type_t
fsdp_get_media_rtcp_network_type (const fsdp_media_description_t * dsc);

/**
 *
 **/
fsdp_address_type_t
fsdp_get_media_rtcp_address_type (const fsdp_media_description_t * dsc);

/**
 *
 **/
const char *fsdp_get_media_rtcp_address (const fsdp_media_description_t *
					 dsc);

/**
 *
 **/
unsigned int
fsdp_get_media_unidentified_attribute_count (const fsdp_media_description_t
					     * mdsc);

/**
 *
 **/
const char *fsdp_get_media_unidentified_attribute (const
						   fsdp_media_description_t *
						   mdsc, unsigned int index);


	  /** @} *//* closes parser group */

END_C_DECLS
#endif /* FSDP_PARSER_H */