81d82a135c4f0182e21c2f7c22d420b821bc637a
[modest] / src / hildon2 / modest-maemo-utils.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef DBUS_API_SUBJECT_TO_CHANGE
31 #define DBUS_API_SUBJECT_TO_CHANGE
32 #endif /*DBUS_API_SUBJECT_TO_CHANGE*/
33
34 #include <dbus/dbus.h>
35 #include <dbus/dbus-glib-lowlevel.h>
36 #include <glib.h>
37 #include <glib/gstdio.h>
38 #include <errno.h>
39 #include <string.h> /* for strlen */
40 #include <modest-runtime.h>
41 #include <libgnomevfs/gnome-vfs.h>
42 #include <tny-fs-stream.h>
43 #include <tny-camel-account.h>
44 #include <tny-status.h>
45 #include <tny-camel-transport-account.h>
46 #include <tny-camel-imap-store-account.h>
47 #include <tny-camel-pop-store-account.h>
48 #include "modest-hildon-includes.h"
49
50 #include <modest-defs.h>
51 #include "modest-maemo-utils.h"
52 #include "modest-text-utils.h"
53 #include "modest-platform.h"
54 #include "modest-ui-constants.h"
55 #include <hildon/hildon-picker-dialog.h>
56 #ifdef MODEST_USE_IPHB
57 #include <iphbd/libiphb.h>
58 #endif
59
60 /* Label child of a captioned */
61 #define CAPTIONED_LABEL_CHILD "captioned-label"
62
63 #ifdef MODEST_PLATFORM_MAEMO
64 #define INTERNAL_MMC_USB_MODE  "/system/osso/af/internal-mmc-used-over-usb"
65 #endif
66
67 static osso_context_t *__osso_context = NULL; /* urgh global */
68
69 osso_context_t *
70 modest_maemo_utils_get_osso_context (void)
71 {
72         if (!__osso_context) 
73                 __osso_context = osso_initialize(PACKAGE,PACKAGE_VERSION,
74                                                  FALSE, NULL);
75
76         return __osso_context;
77 }
78
79 static void
80 get_properties_cb (DBusMessage *message)
81 {
82         DBusMessageIter iter;
83         DBusMessageIter dict_iter;
84         DBusMessageIter dict_entry_iter;
85         DBusError err;
86         gchar *bt_name = NULL;
87         int key_type, array_type, msg_type;
88
89         dbus_error_init(&err);
90         if (dbus_set_error_from_message (&err, message)) {
91                 g_warning ("%s: %s", __FUNCTION__, err.message);
92         }
93
94         /* Get msg type */
95         dbus_message_iter_init (message, &iter);
96         msg_type = dbus_message_iter_get_arg_type (&iter);
97         dbus_message_iter_recurse (&iter, &dict_iter);
98
99         while ((array_type = dbus_message_iter_get_arg_type (&dict_iter)) == DBUS_TYPE_DICT_ENTRY) {
100
101                 dbus_message_iter_recurse (&dict_iter, &dict_entry_iter);
102
103                 while ((key_type = dbus_message_iter_get_arg_type (&dict_entry_iter)) == DBUS_TYPE_STRING) {
104                         DBusMessageIter dict_entry_content_iter;
105                         char *key;
106                         char *value;
107                         int dict_entry_type;
108                         int dict_entry_content_type;
109
110                         dbus_message_iter_get_basic (&dict_entry_iter, &key);
111                         dbus_message_iter_next (&dict_entry_iter);
112                         dict_entry_type = dbus_message_iter_get_arg_type (&dict_entry_iter);
113                         dbus_message_iter_recurse (&dict_entry_iter, &dict_entry_content_iter);
114                         dict_entry_content_type = dbus_message_iter_get_arg_type (&dict_entry_content_iter);
115
116                         if (dict_entry_content_type == DBUS_TYPE_STRING) {
117                                 dbus_message_iter_get_basic ( &dict_entry_content_iter, &value );
118
119                                 if (strcmp (key, "Name") == 0 ) {
120                                         g_debug ("-------------Name %s", value);
121                                         bt_name = value;
122                                         break;
123                                 }
124                         }
125                         dbus_message_iter_next (&dict_entry_iter);
126                 }
127
128                 if (key_type != DBUS_TYPE_INVALID)
129                         break;
130
131                 dbus_message_iter_next (&dict_iter);
132         }
133
134         /* Save device name */
135         if (bt_name) {
136                 g_debug ("Setting the device name %s", bt_name);
137                 modest_conf_set_string (modest_runtime_get_conf(),
138                                         MODEST_CONF_DEVICE_NAME, bt_name,
139                                         NULL);
140         }
141 }
142
143 static void
144 get_default_adapter_cb (DBusConnection *conn,
145                         DBusMessage *message)
146 {
147         DBusMessageIter iter;
148         gchar* path = NULL;
149         DBusError error;
150         DBusMessage *msg, *adapterMsg;
151
152         dbus_message_iter_init (message, &iter);
153         dbus_message_iter_get_basic (&iter, &path);
154
155         if (!path)
156                 return;
157
158         adapterMsg = dbus_message_new_method_call ("org.bluez", path,
159                                                    "org.bluez.Adapter",
160                                                    "GetProperties");
161
162         dbus_error_init (&error);
163         msg = dbus_connection_send_with_reply_and_block (conn, adapterMsg, -1, &error);
164         if (msg) {
165                 g_debug ("Getting the properties");
166                 get_properties_cb (msg);
167                 dbus_message_unref (msg);
168         }
169         dbus_message_unref (adapterMsg);
170 }
171
172 void
173 modest_maemo_utils_get_device_name (void)
174 {
175         static DBusConnection *conn = NULL;
176         DBusMessage *request;
177         DBusError error;
178         DBusMessage *msg;
179
180         dbus_error_init (&error);
181         if (!conn) {
182                 conn = dbus_bus_get (DBUS_BUS_SYSTEM, &error);
183                 if (!conn) {
184                         g_printerr ("modest: cannot get on the dbus: %s: %s\n",
185                                     error.name, error.message);
186                         dbus_error_free (&error);
187                         return;
188                 }
189         }
190
191         /* Get the default adapter */
192         request = dbus_message_new_method_call ("org.bluez", "/" ,
193                                                 "org.bluez.Manager",
194                                                 "DefaultAdapter");
195
196         msg = dbus_connection_send_with_reply_and_block (conn, request, -1, &error);
197         if (msg) {
198                 g_debug ("Getting the default adapter");
199                 get_default_adapter_cb (conn, msg);
200                 dbus_message_unref (msg);
201         }
202
203         dbus_message_unref (request);
204         if (dbus_error_is_set (&error))
205                 dbus_error_free (&error);
206 }
207
208 void
209 modest_maemo_utils_setup_images_filechooser (GtkFileChooser *chooser)
210 {
211         GtkFileFilter *file_filter;
212         GList *image_mimetypes_list;
213         GList *node;
214         gchar *conf_folder;
215
216         g_return_if_fail (GTK_IS_FILE_CHOOSER (chooser));
217
218         conf_folder = modest_conf_get_string (modest_runtime_get_conf (),
219                                               MODEST_CONF_LATEST_INSERT_IMAGE_PATH, NULL);
220         if (conf_folder && conf_folder[0] != '\0') {
221                 gtk_file_chooser_set_current_folder_uri (chooser, conf_folder);
222         } else {
223                 gchar *images_folder;
224                 /* Set the default folder to images folder */
225                 images_folder = (gchar *) g_strdup(g_get_user_special_dir (G_USER_DIRECTORY_PICTURES));
226                 if (!images_folder) {
227                         /* fallback */
228                         images_folder = g_build_filename (g_getenv (MODEST_MAEMO_UTILS_MYDOCS_ENV),
229                                                           MODEST_MAEMO_UTILS_DEFAULT_IMAGE_FOLDER, NULL);
230                 }
231                 gtk_file_chooser_set_current_folder (chooser, images_folder);
232                 g_free (images_folder);
233         }
234         g_free (conf_folder);
235
236         /* Set the images mime filter */
237         file_filter = gtk_file_filter_new ();
238         image_mimetypes_list = hildon_mime_get_mime_types_for_category (HILDON_MIME_CATEGORY_IMAGES);
239         for (node = image_mimetypes_list; node != NULL; node = g_list_next (node)) {
240                 gtk_file_filter_add_mime_type (file_filter, node->data);
241         }
242         gtk_file_chooser_set_filter (chooser, file_filter);
243         hildon_mime_types_list_free (image_mimetypes_list);
244
245 }
246
247 GtkWidget *
248 modest_maemo_utils_get_manager_menubar_as_menu (GtkUIManager *manager,
249                                                 const gchar *item_name)
250 {
251         GtkWidget *new_menu;
252         GtkWidget *menubar;
253         GList *children, *iter;
254
255         menubar = gtk_ui_manager_get_widget (manager, item_name);
256         new_menu = gtk_menu_new ();
257
258         children = gtk_container_get_children (GTK_CONTAINER (menubar));
259         for (iter = children; iter != NULL; iter = g_list_next (iter)) {
260                 GtkWidget *menu;
261
262                 menu = GTK_WIDGET (iter->data);
263                 gtk_widget_reparent (menu, new_menu);
264         }
265         
266         g_list_free (children);
267
268         return new_menu;
269 }
270
271 /**
272  * modest_maemo_utils_create_captioned:
273  * @title_size_group: a #GtkSizeGroup
274  * @value_size_group: a #GtkSizeGroup
275  * @title: a string
276  * @control: a #GtkWidget
277  *
278  * this creates a widget (a #GtkHBox) with a control, and a label
279  * (@string) captioning it. It also uses the proper size groups for title
280  * and control.
281  *
282  * Returns: a widget containing the control and a proper label.
283  */
284 GtkWidget *
285 modest_maemo_utils_create_captioned    (GtkSizeGroup *title_size_group,
286                                         GtkSizeGroup *value_size_group,
287                                         const gchar *title,
288                                         gboolean use_markup,
289                                         GtkWidget *control)
290 {
291         return modest_maemo_utils_create_captioned_with_size_type (title_size_group,
292                                                                    value_size_group,
293                                                                    title,
294                                                                    use_markup,
295                                                                    control,
296                                                                    0);
297 }
298
299 /**
300  * modest_maemo_utils_create_captioned_with_size_type:
301  * @title_size_group: a #GtkSizeGroup
302  * @value_size_group: a #GtkSizeGroup
303  * @title: a string
304  * @control: a #GtkWidget
305  * @size_type: a #HildonSizeType
306  *
307  * this creates a widget (a #GtkHBox) with a control, and a label
308  * (@string) captioning it. It also uses the proper size groups for title
309  * and control.
310  *
311  * Returns: a widget containing the control and a proper label.
312  */
313 GtkWidget *
314 modest_maemo_utils_create_captioned_with_size_type    (GtkSizeGroup *title_size_group,
315                                                        GtkSizeGroup *value_size_group,
316                                                        const gchar *title,
317                                                        gboolean use_markup,
318                                                        GtkWidget *control,
319                                                        HildonSizeType size_type)
320 {
321         GtkWidget *label;
322         GtkWidget *align;
323         GtkWidget *box;
324   
325         if (use_markup) {
326                 label = gtk_label_new (NULL);
327                 gtk_label_set_markup (GTK_LABEL (label), title);
328         } else {
329                 label = gtk_label_new (title);
330         }
331         align = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);
332         gtk_alignment_set_padding (GTK_ALIGNMENT (align), 0, 0, MODEST_MARGIN_DOUBLE, MODEST_MARGIN_DOUBLE);
333
334         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
335         hildon_gtk_widget_set_theme_size (label, HILDON_SIZE_FINGER_HEIGHT);
336         gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
337         gtk_widget_show (label);
338         gtk_widget_show (align);
339         box = gtk_hbox_new (FALSE, 0);
340         gtk_container_add (GTK_CONTAINER (align), label);
341         gtk_box_pack_start (GTK_BOX (box), align, FALSE, FALSE, 0);
342         gtk_box_pack_start (GTK_BOX (box), control, TRUE, TRUE, 0);
343         if (title_size_group)
344                 gtk_size_group_add_widget (title_size_group, label);
345         if (value_size_group)
346                 gtk_size_group_add_widget (value_size_group, control);
347
348         hildon_gtk_widget_set_theme_size (control, size_type);
349
350         g_object_set_data (G_OBJECT (box), CAPTIONED_LABEL_CHILD, label);
351
352         return box;
353 }
354
355 /**
356  * modest_maemo_utils_captioned_set_label:
357  * @captioned: a #GtkWidget built as captioned
358  * @new_label: a string
359  * @use_markup: a #gboolean
360  *
361  * set a new label for the captioned
362  */
363 void
364 modest_maemo_utils_captioned_set_label (GtkWidget *captioned,
365                                         const gchar *new_label,
366                                         gboolean use_markup)
367 {
368         GtkWidget *label;
369
370         g_return_if_fail (GTK_IS_WIDGET (captioned));
371
372         label = g_object_get_data (G_OBJECT (captioned), CAPTIONED_LABEL_CHILD);
373         g_return_if_fail (GTK_IS_LABEL (label));
374
375         if (use_markup) {
376                 gtk_label_set_markup (GTK_LABEL (label), new_label);
377         } else {
378                 gtk_label_set_text (GTK_LABEL (label), new_label);
379         }
380 }
381
382 /**
383  * modest_maemo_utils_captioned_get_label_widget:
384  * @captioned: a #GtkWidget built as captioned
385  *
386  * obtains the label widget for the captioned
387  *
388  * Returns: a #GtkLabel
389  */
390 GtkWidget *
391 modest_maemo_utils_captioned_get_label_widget (GtkWidget *captioned)
392 {
393         GtkWidget *label;
394
395         g_return_val_if_fail (GTK_IS_WIDGET (captioned), NULL);
396
397         label = g_object_get_data (G_OBJECT (captioned), CAPTIONED_LABEL_CHILD);
398         g_return_val_if_fail (GTK_IS_LABEL (label), NULL);
399
400         return label;
401
402 }
403
404 /**
405  * modest_maemo_utils_set_hbutton_layout:
406  * @title_sizegroup: a #GtkSizeGroup, or %NULL
407  * @value_sizegroup: a #GtkSizeGroup, or %NULL
408  * @title: a string
409  * @button: a #HildonButton
410  *
411  * Configures the alignment and layout of @button. If @title_sizegroup is provided,
412  * the title will be aligned to the left using it. If @value_sizegroup is provided,
413  * the value will be aligned to the left using it. It also sets the title
414  * of the button.
415  *
416  * The alignment is left for the title and for the value.
417  */
418 void
419 modest_maemo_utils_set_hbutton_layout (GtkSizeGroup *title_sizegroup, 
420                                        GtkSizeGroup *value_sizegroup,
421                                        const gchar *title, 
422                                        GtkWidget *button)
423 {
424         hildon_button_set_title (HILDON_BUTTON (button), title);
425         if (title_sizegroup)
426                 hildon_button_add_title_size_group (HILDON_BUTTON (button), title_sizegroup);
427         if (value_sizegroup)
428                 hildon_button_add_value_size_group (HILDON_BUTTON (button), value_sizegroup);
429         hildon_button_set_alignment (HILDON_BUTTON (button), 0.0, 0.5, 1.0, 0.0);
430         hildon_button_set_title_alignment (HILDON_BUTTON (button), 0.0, 0.5);
431         hildon_button_set_value_alignment (HILDON_BUTTON (button), 0.0, 0.5);
432 }
433
434 void
435 modest_maemo_utils_set_vbutton_layout (GtkSizeGroup *sizegroup, 
436                                        const gchar *title, 
437                                        GtkWidget *button)
438 {
439         hildon_button_set_title (HILDON_BUTTON (button), title);
440         if (sizegroup) {
441                 hildon_button_add_title_size_group (HILDON_BUTTON (button), sizegroup);
442                 hildon_button_add_value_size_group (HILDON_BUTTON (button), sizegroup);
443         }
444         hildon_button_set_alignment (HILDON_BUTTON (button), 0.0, 0.5, 1.0, 0.0);
445         hildon_button_set_title_alignment (HILDON_BUTTON (button), 0.0, 0.5);
446         hildon_button_set_value_alignment (HILDON_BUTTON (button), 0.0, 0.5);
447 }
448
449 GtkWidget *
450 modest_maemo_utils_create_group_box (const gchar *label_text, GtkWidget *contents)
451 {
452         GtkWidget *label;
453         GtkWidget *box;
454
455         label = gtk_label_new (label_text);
456         gtk_widget_show (label);
457
458         box = gtk_vbox_new (FALSE, MODEST_MARGIN_HALF);
459         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
460         gtk_box_pack_start (GTK_BOX (box), contents, TRUE, TRUE, 0);
461         gtk_widget_show (box);
462
463         return box;
464 }
465
466 static gboolean match_all (TnyList *list, GObject *item, gpointer match_data)
467 {
468         return TRUE;
469 }
470
471 gboolean
472 modest_maemo_utils_select_attachments (GtkWindow *window, TnyList *att_list, gboolean include_msgs)
473 {
474         GtkTreeModel *model;
475         TnyIterator *iterator;
476         GtkWidget *selector;
477         GtkCellRenderer *renderer;
478         GtkWidget *dialog;
479         gint response;
480         gboolean result = TRUE;
481         gint attachments_added = 0;
482
483         model = GTK_TREE_MODEL (gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_OBJECT));
484         for (iterator = tny_list_create_iterator (att_list);
485              !tny_iterator_is_done (iterator);
486              tny_iterator_next (iterator)) {
487                 GtkTreeIter iter;
488                 TnyMimePart *part;
489                 gchar *filename = NULL;
490
491                 part = (TnyMimePart *) tny_iterator_get_current (iterator);
492
493                 /* Ignore purged attachments and messages if ignore is
494                    set to TRUE */
495                 if (!(tny_mime_part_is_purged (part) ||
496                       (TNY_IS_MSG (part) && !include_msgs))) {
497
498                         if (TNY_IS_MSG (part)) {
499                                 TnyHeader *header = tny_msg_get_header (TNY_MSG (part));
500                                 filename = tny_header_dup_subject (header);
501                                 g_object_unref (header);
502                         } else {
503                                 filename = g_strdup (tny_mime_part_get_filename (part));
504                         }
505                         if ((filename == NULL) || (filename[0] == '\0')) {
506                                 g_free (filename);
507                                 filename = g_strdup (_("mail_va_no_subject"));
508                         }
509                         gtk_list_store_append (GTK_LIST_STORE (model), &iter);
510                         gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, filename, 1, part, -1);
511                         attachments_added ++;
512                         g_free (filename);
513                 }
514                 g_object_unref (part);
515         }
516         g_object_unref (iterator);
517
518         selector = GTK_WIDGET (hildon_touch_selector_new ());
519         renderer = gtk_cell_renderer_text_new ();
520         g_object_set((GObject *) renderer, "ellipsize", PANGO_ELLIPSIZE_END, NULL);
521         hildon_touch_selector_append_column (HILDON_TOUCH_SELECTOR (selector), model, renderer,
522                                              "text", 0, NULL);
523         hildon_touch_selector_set_column_selection_mode (HILDON_TOUCH_SELECTOR (selector), 
524                                                          HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE);
525
526         dialog = hildon_picker_dialog_new (window);
527         gtk_window_set_title (GTK_WINDOW (dialog), (attachments_added > 1)?
528                               _("mcen_ti_select_attachments_title"):_("mcen_ti_select_attachment_title"));
529         hildon_picker_dialog_set_selector (HILDON_PICKER_DIALOG (dialog), HILDON_TOUCH_SELECTOR (selector));
530         hildon_picker_dialog_set_done_label (HILDON_PICKER_DIALOG (dialog), _HL("wdgt_bd_done"));
531
532         response = gtk_dialog_run (GTK_DIALOG (dialog));
533
534         if (response == GTK_RESPONSE_OK) {
535                 GList *selected_rows, *node;
536
537                 tny_list_remove_matches (att_list, match_all, NULL);
538                 selected_rows = hildon_touch_selector_get_selected_rows (HILDON_TOUCH_SELECTOR (selector), 0);
539                 for (node = selected_rows; node != NULL; node = g_list_next (node)) {
540                         GtkTreePath *path;
541                         GObject *selected;
542                         GtkTreeIter iter;
543
544                         path = (GtkTreePath *) node->data;
545                         gtk_tree_model_get_iter (model, &iter, path);
546                         gtk_tree_model_get (model, &iter, 1, &selected, -1);
547                         tny_list_append (att_list, selected);
548                 }
549                 if (tny_list_get_length (att_list) == 0)
550                         result = FALSE;
551
552                 g_list_foreach (selected_rows, (GFunc) gtk_tree_path_free, NULL);
553                 g_list_free (selected_rows);
554         } else {
555                 result = FALSE;
556         }
557
558         gtk_widget_destroy (dialog);
559
560         g_object_unref (model);
561
562         return result;
563 }
564
565 #ifdef MODEST_PLATFORM_MAEMO
566 gboolean
567 modest_maemo_utils_in_usb_mode ()
568 {
569         return modest_conf_get_bool (modest_runtime_get_conf (), INTERNAL_MMC_USB_MODE, NULL);
570 }
571 #endif
572
573 void
574 modest_maemo_utils_scroll_pannable (HildonPannableArea *pannable,
575                                     gint horizontal,
576                                     gint vertical)
577 {
578         gint h_pos = -1;
579         gint v_pos = -1;
580
581         g_assert (pannable);
582         /* at atleast one of values have to be valid */
583         g_return_if_fail (h_pos == -1 && v_pos == -1);
584
585         if (horizontal != 0) {
586                 GtkAdjustment *h_adj;
587
588                 h_adj = hildon_pannable_area_get_hadjustment (pannable);
589                 g_return_if_fail (h_adj);
590
591                 h_pos = h_adj->value + h_adj->step_increment * horizontal;
592                 if (horizontal > 0) {
593                         h_pos += h_adj->page_size;
594                 }
595         }
596
597         if (vertical != 0) {
598                 GtkAdjustment *v_adj;
599
600                 v_adj = hildon_pannable_area_get_vadjustment (pannable);
601                 g_return_if_fail (v_adj);
602
603                 v_pos = v_adj->value + v_adj->step_increment * vertical;
604                 if (vertical > 0) {
605                         v_pos += v_adj->page_size;
606                 }
607         }
608
609         hildon_pannable_area_scroll_to (pannable, h_pos, v_pos);
610 }
611
612 #ifdef MODEST_USE_IPHB
613
614 typedef struct _ModestHeartbeatSource {
615         GSource source;
616         iphb_t iphb;
617         GPollFD poll;
618         gint interval;
619 } ModestHeartbeatSource;
620
621 static gboolean modest_heartbeat_prepare (GSource* source, gint *timeout)
622 {
623     *timeout = -1;
624     return FALSE;
625 }
626
627 static gboolean 
628 modest_heartbeat_check(GSource* source)
629 {
630         return ((ModestHeartbeatSource *) source)->poll.revents != 0;
631 }
632
633 static gboolean modest_heartbeat_dispatch (GSource *source, GSourceFunc callback, gpointer userdata)
634 {
635     if (callback(userdata))
636     {
637             ModestHeartbeatSource *hb_source = (ModestHeartbeatSource *) source;
638
639             g_source_remove_poll (source, &(hb_source->poll));
640
641             int min = MAX(hb_source->interval - 30, 5);
642             iphb_wait(hb_source->iphb, min, min + 60, 0);
643
644             hb_source->poll.fd = iphb_get_fd(hb_source->iphb);
645             hb_source->poll.events = G_IO_IN;
646             hb_source->poll.revents = 0;
647
648             g_source_add_poll(source, &(hb_source->poll));
649
650             return TRUE;
651     } else {
652             return FALSE;
653     }
654 }
655
656 static void 
657 modest_heartbeat_finalize (GSource* source)
658 {
659         ModestHeartbeatSource* hb_source = (ModestHeartbeatSource *) source;
660         hb_source->iphb = iphb_close(hb_source->iphb);
661 }
662
663 GSourceFuncs modest_heartbeat_funcs =
664 {
665   modest_heartbeat_prepare,
666   modest_heartbeat_check,
667   modest_heartbeat_dispatch,
668   modest_heartbeat_finalize,
669   NULL,
670   NULL
671 };
672
673 static GSource *
674 modest_heartbeat_source_new (void)
675 {
676         GSource *source;
677         ModestHeartbeatSource *hb_source;
678         iphb_t iphb;
679         int hb_interval;
680
681         source = NULL;
682         hb_interval = 0;
683
684         iphb = iphb_open (&hb_interval);
685
686         if (iphb != 0) {
687                 int min;
688                 source = g_source_new (&modest_heartbeat_funcs, sizeof (ModestHeartbeatSource));
689                 hb_source = (ModestHeartbeatSource *) source;
690                 g_source_set_priority (source, G_PRIORITY_DEFAULT_IDLE);
691                 hb_source->iphb = iphb;
692                 hb_source->interval = hb_interval;
693
694                 min = MAX(hb_interval - 30, 5);
695                 iphb_wait(hb_source->iphb, min, min + 60, 0);
696
697                 hb_source->poll.fd = iphb_get_fd(hb_source->iphb);
698                 hb_source->poll.events = G_IO_IN;
699                 hb_source->poll.revents = 0;
700
701                 g_source_add_poll(source, &(hb_source->poll));
702         } else {
703                 source = g_idle_source_new ();
704         }
705
706         return source;
707 }
708
709 guint
710 modest_heartbeat_add (GSourceFunc function,
711                       gpointer userdata)
712 {
713         GSource *source;
714         guint id;
715
716         source = modest_heartbeat_source_new ();
717         g_source_set_callback (source, function, userdata, NULL);
718         id = g_source_attach (source, NULL);
719         g_source_unref (source);
720
721         return id;
722 }
723
724 #else
725 guint
726 modest_heartbeat_add (GSourceFunc function,
727                       gpointer userdata)
728 {
729         return g_idle_add (function, userdata);
730 }
731 #endif