Convert GDBus methods to use macro helpers
[platform/upstream/ofono.git] / src / cdma-sms.c
1 /*
2  *
3  *  oFono - Open Source Telephony
4  *
5  *  Copyright (C) 2010-2011  Nokia Corporation and/or its subsidiary(-ies).
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27 #include <stdio.h>
28 #include <errno.h>
29
30 #include <glib.h>
31 #include <gdbus.h>
32 #include <sys/time.h>
33
34 #include "ofono.h"
35
36 #include "cdma-smsutil.h"
37
38 static GSList *g_drivers;
39
40 struct ofono_cdma_sms {
41         const struct ofono_cdma_sms_driver *driver;
42         void *driver_data;
43         struct ofono_atom *atom;
44 };
45
46 static const GDBusMethodTable cdma_sms_manager_methods[] = {
47         /* TODO */
48         { }
49 };
50
51 static const GDBusSignalTable cdma_sms_manager_signals[] = {
52         { _GDBUS_SIGNAL("IncomingMessage", "sa{sv}",
53                         GDBUS_ARGS({ "message", "s"}, { "info", "a{sv}" })) },
54         /* TODO */
55         { }
56 };
57
58 static void cdma_dispatch_text_message(struct ofono_cdma_sms *cdma_sms,
59                                         const char *message,
60                                         const char *oaddr)
61 {
62         const char *path = __ofono_atom_get_path(cdma_sms->atom);
63         DBusConnection *conn = ofono_dbus_get_connection();
64         DBusMessage *signal;
65         DBusMessageIter iter;
66         DBusMessageIter dict;
67         const char *signal_name;
68
69         /* TODO: Support ImmediateMessage */
70         signal_name = "IncomingMessage";
71
72         signal = dbus_message_new_signal(path,
73                                         OFONO_CDMA_MESSAGE_MANAGER_INTERFACE,
74                                         signal_name);
75         if (signal == NULL)
76                 return;
77
78         dbus_message_iter_init_append(signal, &iter);
79
80         dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &message);
81
82         dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
83                                         OFONO_PROPERTIES_ARRAY_SIGNATURE,
84                                         &dict);
85
86         ofono_dbus_dict_append(&dict, "Sender", DBUS_TYPE_STRING, &oaddr);
87
88         /* TODO: Other properties not supported yet */
89
90         dbus_message_iter_close_container(&iter, &dict);
91
92         g_dbus_send_message(conn, signal);
93
94         /*TODO: Add the message to history*/
95 }
96
97 static void ofono_cdma_sms_process_wmt_deliver(struct ofono_cdma_sms *cdma_sms,
98                                                 const struct cdma_sms *incoming)
99 {
100         char *message;
101         const char *oaddr;
102         const struct cdma_sms_ud *ud;
103
104         ud = &incoming->p2p_msg.bd.wmt_deliver.ud;
105
106         /*
107          * If incoming message does not contain USER DATA, still
108          * send indication to upper layer but with empty string.
109          */
110         if (check_bitmap(incoming->p2p_msg.bd.subparam_bitmap,
111                                 CDMA_SMS_SUBPARAM_ID_USER_DATA) == FALSE)
112                 message = g_new0(char, 1);
113         else
114                 message = cdma_sms_decode_text(ud);
115
116         if (message == NULL)
117                 return;
118
119         oaddr = cdma_sms_address_to_string(&incoming->p2p_msg.oaddr);
120         if (oaddr == NULL) {
121                 g_free(message);
122                 return;
123         }
124
125         cdma_dispatch_text_message(cdma_sms, message, oaddr);
126
127         g_free(message);
128 }
129
130 static void ofono_cdma_sms_process_wmt(struct ofono_cdma_sms *cdma_sms,
131                                         struct cdma_sms *incoming)
132 {
133         /* TODO: Add duplicate detection support */
134
135         switch (incoming->p2p_msg.bd.id.msg_type) {
136         case CDMA_SMS_MSG_TYPE_RESERVED:
137                 break;
138         case CDMA_SMS_MSG_TYPE_DELIVER:
139                 ofono_cdma_sms_process_wmt_deliver(cdma_sms, incoming);
140                 break;
141         case CDMA_SMS_MSG_TYPE_SUBMIT:
142         case CDMA_SMS_MSG_TYPE_CANCEL:
143         case CDMA_SMS_MSG_TYPE_DELIVER_ACK:
144         case CDMA_SMS_MSG_TYPE_USER_ACK:
145         case CDMA_SMS_MSG_TYPE_READ_ACK:
146         case CDMA_SMS_MSG_TYPE_DELIVER_REPORT:
147         case CDMA_SMS_MSG_TYPE_SUBMIT_REPORT:
148                 /* TODO */
149                 break;
150         }
151 }
152
153 static void ofono_cdma_sms_process_p2p(struct ofono_cdma_sms *cdma_sms,
154                                         struct cdma_sms *incoming)
155 {
156         switch (incoming->p2p_msg.teleservice_id) {
157         case CDMA_SMS_TELESERVICE_ID_CMT91:
158         case CDMA_SMS_TELESERVICE_ID_WPT:
159                 break; /* TODO: Not supported yet */
160         case CDMA_SMS_TELESERVICE_ID_WMT:
161                 ofono_cdma_sms_process_wmt(cdma_sms, incoming);
162                 break;
163         case CDMA_SMS_TELESERVICE_ID_VMN:
164         case CDMA_SMS_TELESERVICE_ID_WAP:
165         case CDMA_SMS_TELESERVICE_ID_WEMT:
166         case CDMA_SMS_TELESERVICE_ID_SCPT:
167         case CDMA_SMS_TELESERVICE_ID_CATPT:
168                 break; /* TODO: Not supported yet */
169         }
170 }
171
172 void ofono_cdma_sms_deliver_notify(struct ofono_cdma_sms *cdma_sms,
173                                         unsigned char *pdu, int tpdu_len)
174 {
175         static struct cdma_sms s;
176
177         DBG("tpdu len %d", tpdu_len);
178
179         memset(&s, 0, sizeof(struct cdma_sms));
180
181         if (cdma_sms_decode(pdu, tpdu_len, &s) == FALSE)
182                 return;
183
184         switch (s.type) {
185         case CDMA_SMS_TP_MSG_TYPE_P2P:
186                 ofono_cdma_sms_process_p2p(cdma_sms, &s);
187                 break;
188         case CDMA_SMS_TP_MSG_TYPE_BCAST:
189         case CDMA_SMS_TP_MSG_TYPE_ACK:
190                 /*
191                  * TODO: Support SMS Broadcast Message and SMS
192                  * Acknowledge Message.
193                  */
194                 break;
195         }
196 }
197
198 int ofono_cdma_sms_driver_register(const struct ofono_cdma_sms_driver *d)
199 {
200         DBG("driver: %p, name: %s", d, d->name);
201
202         if (d->probe == NULL)
203                 return -EINVAL;
204
205         g_drivers = g_slist_prepend(g_drivers, (void *)d);
206
207         return 0;
208 }
209
210 void ofono_cdma_sms_driver_unregister(const struct ofono_cdma_sms_driver *d)
211 {
212         DBG("driver: %p, name: %s", d, d->name);
213
214         g_drivers = g_slist_remove(g_drivers, (void *)d);
215 }
216
217 static void cdma_sms_unregister(struct ofono_atom *atom)
218 {
219         DBusConnection *conn = ofono_dbus_get_connection();
220         struct ofono_modem *modem = __ofono_atom_get_modem(atom);
221         const char *path = __ofono_atom_get_path(atom);
222
223         g_dbus_unregister_interface(conn, path,
224                                         OFONO_CDMA_MESSAGE_MANAGER_INTERFACE);
225
226         ofono_modem_remove_interface(modem,
227                                         OFONO_CDMA_MESSAGE_MANAGER_INTERFACE);
228 }
229
230 static void cdma_sms_remove(struct ofono_atom *atom)
231 {
232         struct ofono_cdma_sms *cdma_sms = __ofono_atom_get_data(atom);
233
234         DBG("atom: %p", atom);
235
236         if (cdma_sms == NULL)
237                 return;
238
239         if (cdma_sms->driver && cdma_sms->driver->remove)
240                 cdma_sms->driver->remove(cdma_sms);
241
242         g_free(cdma_sms);
243 }
244
245 /*
246  * Create a CDMA SMS driver
247  *
248  * This creates a CDMA SMS driver that is hung off a @modem
249  * object. However, for the driver to be used by the system, it has to
250  * be registered with the oFono core using ofono_sms_register().
251  *
252  * This is done once the modem driver determines that SMS is properly
253  * supported by the hardware.
254  */
255 struct ofono_cdma_sms *ofono_cdma_sms_create(struct ofono_modem *modem,
256                                                 unsigned int vendor,
257                                                 const char *driver,
258                                                 void *data)
259 {
260         struct ofono_cdma_sms *cdma_sms;
261         GSList *l;
262
263         if (driver == NULL)
264                 return NULL;
265
266         cdma_sms = g_try_new0(struct ofono_cdma_sms, 1);
267         if (cdma_sms == NULL)
268                 return NULL;
269
270         cdma_sms->atom = __ofono_modem_add_atom(modem,
271                                                 OFONO_ATOM_TYPE_CDMA_SMS,
272                                                 cdma_sms_remove, cdma_sms);
273
274         for (l = g_drivers; l; l = l->next) {
275                 const struct ofono_cdma_sms_driver *drv = l->data;
276
277                 if (g_strcmp0(drv->name, driver))
278                         continue;
279
280                 if (drv->probe(cdma_sms, vendor, data) < 0)
281                         continue;
282
283                 cdma_sms->driver = drv;
284                 break;
285         }
286
287         return cdma_sms;
288 }
289
290 /*
291  * Indicate oFono that a CDMA SMS driver is ready for operation
292  *
293  * This is called after ofono_cdma_sms_create() was done and the modem
294  * driver determined that a modem supports SMS correctly. Once this
295  * call succeeds, the D-BUS interface for SMS goes live.
296  */
297 void ofono_cdma_sms_register(struct ofono_cdma_sms *cdma_sms)
298 {
299         DBusConnection *conn = ofono_dbus_get_connection();
300         struct ofono_modem *modem = __ofono_atom_get_modem(cdma_sms->atom);
301         const char *path = __ofono_atom_get_path(cdma_sms->atom);
302
303         if (!g_dbus_register_interface(conn, path,
304                                         OFONO_CDMA_MESSAGE_MANAGER_INTERFACE,
305                                         cdma_sms_manager_methods,
306                                         cdma_sms_manager_signals,
307                                         NULL, cdma_sms, NULL)) {
308                 ofono_error("Could not create %s interface",
309                                 OFONO_CDMA_MESSAGE_MANAGER_INTERFACE);
310                 return;
311         }
312
313         ofono_modem_add_interface(modem, OFONO_CDMA_MESSAGE_MANAGER_INTERFACE);
314
315         __ofono_atom_register(cdma_sms->atom, cdma_sms_unregister);
316 }
317
318 void ofono_cdma_sms_remove(struct ofono_cdma_sms *cdma_sms)
319 {
320         __ofono_atom_free(cdma_sms->atom);
321 }
322
323 void ofono_cdma_sms_set_data(struct ofono_cdma_sms *cdma_sms, void *data)
324 {
325         cdma_sms->driver_data = data;
326 }
327
328 void *ofono_cdma_sms_get_data(struct ofono_cdma_sms *cdma_sms)
329 {
330         return cdma_sms->driver_data;
331 }