]> sjero.net Git - linphone/blob - coreapi/sal.c
work in progress to use SAL in coreapi
[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 }
32
33 static void sal_media_description_destroy(SalMediaDescription *md){
34         int i;
35         for(i=0;i<SAL_MEDIA_DESCRIPTION_MAX_STREAMS;i++){
36                 ms_list_for_each(md->streams[i].payloads,(void (*)(void *))payload_type_destroy);
37                 ms_list_free(md->streams[i].payloads);
38         }
39         ms_free(md);
40 }
41
42 void sal_media_description_ref(SalMediaDescription *md){
43         md->refcount++;
44 }
45
46 void sal_media_description_unref(SalMediaDescription *md){
47         md->refcount--;
48         if (md->refcount==0){
49                 sal_media_description_destroy (md);
50         }
51 }
52
53 SalStreamDescription *sal_media_description_find_stream(SalMediaDescription *md,
54     SalMediaProto proto, SalStreamType type){
55         int i;
56         for(i=0;i<md->nstreams;++i){
57                 SalStreamDescription *ss=&md->streams[i];
58                 if (ss->proto==proto && ss->type==type) return ss;
59         }
60         return NULL;
61 }
62
63
64 static void assign_string(char **str, const char *arg){
65         if (*str){
66                 ms_free(*str);
67                 *str=NULL;
68         }
69         if (arg)
70                 *str=ms_strdup(arg);
71 }
72
73 void sal_op_set_contact(SalOp *op, const char *contact){
74         assign_string(&((SalOpBase*)op)->contact,contact);
75 }
76
77 void sal_op_set_route(SalOp *op, const char *route){
78         assign_string(&((SalOpBase*)op)->route,route);
79 }
80
81 void sal_op_set_from(SalOp *op, const char *from){
82         assign_string(&((SalOpBase*)op)->from,from);
83 }
84
85 void sal_op_set_to(SalOp *op, const char *to){
86         assign_string(&((SalOpBase*)op)->to,to);
87 }
88
89 void sal_op_set_user_pointer(SalOp *op, void *up){
90         ((SalOpBase*)op)->user_pointer=up;
91 }
92
93 const char *sal_op_get_from(const SalOp *op){
94         return ((SalOpBase*)op)->from;
95 }
96
97 const char *sal_op_get_to(const SalOp *op){
98         return ((SalOpBase*)op)->to;
99 }
100
101 const char *sal_op_get_contact(const SalOp *op){
102         return ((SalOpBase*)op)->contact;
103 }
104
105 const char *sal_op_get_route(const SalOp *op){
106         return ((SalOpBase*)op)->route;
107 }
108
109 void *sal_op_get_user_pointer(const SalOp *op){
110         return ((SalOpBase*)op)->user_pointer;
111 }
112
113 void __sal_op_init(SalOp *b, Sal *sal){
114         memset(b,0,sizeof(SalOpBase));
115         ((SalOpBase*)b)->root=sal;
116 }
117
118 void __sal_op_free(SalOp *op){
119         SalOpBase *b=(SalOpBase *)op;
120         if (b->from) {
121                 ms_free(b->from);
122                 b->from=NULL;
123         }
124         if (b->to) {
125                 ms_free(b->to);
126                 b->to=NULL;
127         }
128         if (b->route) {
129                 ms_free(b->route);
130                 b->route=NULL;
131         }
132         if (b->contact) {
133                 ms_free(b->contact);
134                 b->contact=NULL;
135         }
136         if (b->local_media)
137                 sal_media_description_unref(b->local_media);
138         if (b->remote_media)
139                 sal_media_description_unref(b->remote_media);
140         ms_free(op);
141 }