]> sjero.net Git - linphone/blob - coreapi/sal.c
Merge branch 'dev_multicall'
[linphone] / coreapi / sal.c
1 /*
2 linphone
3 Copyright (C) 2010  Simon MORLAT (simon.morlat@free.fr)
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 */
19
20 /** 
21  This header files defines the Signaling Abstraction Layer.
22  The purpose of this layer is too allow experiment different call signaling 
23  protocols and implementations under linphone, for example SIP, JINGLE...
24 **/
25
26 #include "sal.h"
27
28 SalMediaDescription *sal_media_description_new(){
29         SalMediaDescription *md=ms_new0(SalMediaDescription,1);
30         md->refcount=1;
31         return md;
32 }
33
34 static void sal_media_description_destroy(SalMediaDescription *md){
35         int i;
36         for(i=0;i<SAL_MEDIA_DESCRIPTION_MAX_STREAMS;i++){
37                 ms_list_for_each(md->streams[i].payloads,(void (*)(void *))payload_type_destroy);
38                 ms_list_free(md->streams[i].payloads);
39                 md->streams[i].payloads=NULL;
40         }
41         ms_free(md);
42 }
43
44 void sal_media_description_ref(SalMediaDescription *md){
45         md->refcount++;
46 }
47
48 void sal_media_description_unref(SalMediaDescription *md){
49         md->refcount--;
50         if (md->refcount==0){
51                 sal_media_description_destroy (md);
52         }
53 }
54
55 const SalStreamDescription *sal_media_description_find_stream(const SalMediaDescription *md,
56     SalMediaProto proto, SalStreamType type){
57         int i;
58         for(i=0;i<md->nstreams;++i){
59                 const SalStreamDescription *ss=&md->streams[i];
60                 if (ss->proto==proto && ss->type==type) return ss;
61         }
62         return NULL;
63 }
64
65 bool_t sal_media_description_empty(const SalMediaDescription *md){
66         int i;
67         for(i=0;i<md->nstreams;++i){
68                 const SalStreamDescription *ss=&md->streams[i];
69                 if (ss->port!=0) return FALSE;
70         }
71         return TRUE;
72 }
73
74 void sal_media_description_set_dir(SalMediaDescription *md, SalStreamDir stream_dir){
75         int i;
76         for(i=0;i<md->nstreams;++i){
77                 SalStreamDescription *ss=&md->streams[i];
78                 ss->dir=stream_dir;
79         }
80 }
81
82 bool_t sal_media_description_has_dir(const SalMediaDescription *md, SalStreamDir stream_dir){
83         int i;
84         for(i=0;i<md->nstreams;++i){
85                 const SalStreamDescription *ss=&md->streams[i];
86                 if (ss->dir!=stream_dir) return FALSE;
87         }
88         return TRUE;
89 }
90
91 static void assign_string(char **str, const char *arg){
92         if (*str){
93                 ms_free(*str);
94                 *str=NULL;
95         }
96         if (arg)
97                 *str=ms_strdup(arg);
98 }
99
100 void sal_op_set_contact(SalOp *op, const char *contact){
101         assign_string(&((SalOpBase*)op)->contact,contact);
102 }
103
104 void sal_op_set_route(SalOp *op, const char *route){
105         assign_string(&((SalOpBase*)op)->route,route);
106 }
107
108 void sal_op_set_from(SalOp *op, const char *from){
109         assign_string(&((SalOpBase*)op)->from,from);
110 }
111
112 void sal_op_set_to(SalOp *op, const char *to){
113         assign_string(&((SalOpBase*)op)->to,to);
114 }
115
116 void sal_op_set_user_pointer(SalOp *op, void *up){
117         ((SalOpBase*)op)->user_pointer=up;
118 }
119
120 Sal *sal_op_get_sal(const SalOp *op){
121         return ((SalOpBase*)op)->root;
122 }
123
124 const char *sal_op_get_from(const SalOp *op){
125         return ((SalOpBase*)op)->from;
126 }
127
128 const char *sal_op_get_to(const SalOp *op){
129         return ((SalOpBase*)op)->to;
130 }
131
132 const char *sal_op_get_contact(const SalOp *op){
133         return ((SalOpBase*)op)->contact;
134 }
135
136 const char *sal_op_get_route(const SalOp *op){
137         return ((SalOpBase*)op)->route;
138 }
139
140 void *sal_op_get_user_pointer(const SalOp *op){
141         return ((SalOpBase*)op)->user_pointer;
142 }
143
144 const char *sal_op_get_proxy(const SalOp *op){
145         return ((SalOpBase*)op)->route;
146 }
147
148 const char *sal_op_get_network_origin(const SalOp *op){
149         return ((SalOpBase*)op)->origin;
150 }
151
152 void __sal_op_init(SalOp *b, Sal *sal){
153         memset(b,0,sizeof(SalOpBase));
154         ((SalOpBase*)b)->root=sal;
155 }
156
157 void __sal_op_set_network_origin(SalOp *op, const char *origin){
158         assign_string(&((SalOpBase*)op)->origin,origin);
159 }
160
161
162 void __sal_op_free(SalOp *op){
163         SalOpBase *b=(SalOpBase *)op;
164         if (b->from) {
165                 ms_free(b->from);
166                 b->from=NULL;
167         }
168         if (b->to) {
169                 ms_free(b->to);
170                 b->to=NULL;
171         }
172         if (b->route) {
173                 ms_free(b->route);
174                 b->route=NULL;
175         }
176         if (b->contact) {
177                 ms_free(b->contact);
178                 b->contact=NULL;
179         }
180         if (b->origin){
181                 ms_free(b->origin);
182                 b->origin=NULL;
183         }
184         if (b->local_media)
185                 sal_media_description_unref(b->local_media);
186         if (b->remote_media)
187                 sal_media_description_unref(b->remote_media);
188         ms_free(op);
189 }