aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-pilot-sync.c
blob: c8cd57460832e77870679086c094c6094fb354c0 (plain) (blame)
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
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * calendar-pilot-sync.c:
 *   
 * (C) 1999 International GNOME Support
 *
 * Author:
 *   Miguel de Icaza (miguel@gnome-support.com)
 *
 */


/*
 *
 * this only works in a monogamous pilot/desktop situation.
 *
 */



#include <config.h>
#include <gnome.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <bonobo.h>
#include <bonobo/bonobo-control.h>

#ifdef USING_OAF
#include <liboaf/liboaf.h>
#else
#include <libgnorba/gnorba.h>
#endif

#include <cal-client/cal-client.h>
#include "cal-util/calobj.h"
#include "cal-util/timeutil.h"
#include "pi-source.h"
#include "pi-socket.h"
#include "pi-datebook.h"
#include "pi-dlp.h"


char *calendar_file;

/* The default port to communicate with */
char *pilot_port = "/dev/pilot";

/* Our pi-socket address where we connect to */
struct pi_sockaddr addr;

/* The Pilot DB identifier for DateBook */
int db;

/* If true, enable debug output for alarms */
int debug_alarms = 0;

/* True if you want to dump the flags bits from the records */
int debug_attrs = 0;

int only_desktop_to_pilot = 0;

int only_pilot_to_desktop = 0;


const struct poptOption calendar_sync_options [] = {
    { "pilot", 0, POPT_ARG_STRING, &pilot_port, 0,
      N_("Specifies the port on which the Pilot is"), N_("PORT") },
    { "debug-attrs", 0, POPT_ARG_NONE, &debug_attrs, 0,
      N_("If you want to debug the attributes on records"), NULL },
    { "only-desktop", 0, POPT_ARG_NONE, &only_desktop_to_pilot, 0,
      N_("Only syncs from desktop to pilot"), NULL },
    { "only-pilot", 0, POPT_ARG_INT, &only_pilot_to_desktop, 0,
      N_("Only syncs from pilot to desktop"), NULL },
    { NULL, '\0', 0, NULL, 0 }
};

static void
conduit_free_Appointment (struct Appointment *a)
{
    /* free_Appointment is brain-dead with respect to guarding against
       double-frees */
    
    free_Appointment (a);
    a->exception = 0;
    a->description = 0;
    a->note = 0;
}

static int
setup_connection (void)
{
    int socket;
    int ret, news;
    
    if (!(socket = pi_socket(PI_AF_SLP, PI_SOCK_STREAM, PI_PF_PADP))) 
        g_error (_("Can not create Pilot socket\n"));

    addr.pi_family = PI_AF_SLP;
    strncpy ((void *)&addr.pi_device, pilot_port, sizeof (addr.pi_device));

    ret = pi_bind (socket, (struct sockaddr *)&addr, sizeof (addr));
    if (ret == -1)
        g_error (_("Can not bind to device %s\n"), pilot_port);

    if (pi_listen (socket, 1) == -1)
        g_error (_("Failed to get a connection "
               "from the Pilot device"));

    if ((news = pi_accept (socket, 0, 0)) == -1)
        g_error (_("pi_accept failed"));

    return news;
}


static void
init_bonobo (int *argc, char **argv)
{
#       ifdef USING_OAF
    /* FIXME: VERSION instead of "0.0".  */
    gnome_init_with_popt_table ("evolution-calendar", "0.0",
                    *argc, argv, oaf_popt_options,
                    0, NULL);
    oaf_init (*argc, argv);
#      else
    CORBA_Environment ev;

    CORBA_exception_init (&ev);
    gnome_CORBA_init_with_popt_table (
        "evolution-calendar", "0.0",
        argc, argv, NULL, 0, NULL, GNORBA_INIT_SERVER_FUNC, &ev);
    CORBA_exception_free (&ev);
#       endif

    if (bonobo_init (CORBA_OBJECT_NIL,
             CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE)
        g_error (_("Could not initialize Bonobo"));
}


static void
delete_record_from_desktop (CalClient *client, int id)
{
    char *uid;
    CalClientGetStatus status;

    status = cal_client_get_uid_by_pilot_id (client, id, &uid);

    if (status == CAL_CLIENT_GET_SUCCESS) {
        cal_client_remove_object (client, uid);
        g_free (uid);
    }
}



static void
dump_attr (int flags)
{
    if (flags & dlpRecAttrDeleted)
        printf (" Deleted");
    if (flags & dlpRecAttrDirty)
        printf (" Dirty");
    if (flags & dlpRecAttrBusy)
        printf (" Busy");
    if (flags & dlpRecAttrSecret)
        printf (" Secret");
    if (flags & dlpRecAttrArchived)
        printf (" Archive");
    printf ("\n");
}



/* take a record retrieved from a pilot and merge it into the desktop cal */

static void
update_record (CalClient *client, int id, struct Appointment *a, int attr)
{
    iCalObject *obj;
    int i;
    CalClientGetStatus status;
    char *uid = NULL;
    gboolean success;
    
    printf ("pilot->cal: %d, ", id);

    status = cal_client_get_uid_by_pilot_id (client, id, &uid);
    if (status == CAL_CLIENT_GET_SUCCESS)
        status = cal_client_get_object (client, uid, &obj);

    if (status != CAL_CLIENT_GET_SUCCESS) {
        /* Object did not exist, creating a new one */
        time_t now = time (NULL);

        obj = ical_new (a->note ? a->note : "",
                g_get_user_name (),
                a->description ? a->description : "");
        
        obj->created = now;
        obj->last_mod = now;
        obj->priority = 0;
        obj->transp = 0;
        obj->related = NULL;
        obj->pilot_id = id;
        obj->pilot_status = ICAL_PILOT_SYNC_NONE;
    }

    if (obj->pilot_status == ICAL_PILOT_SYNC_MOD) {
        printf (_("\tObject has been modified on desktop and on "
              "the pilot, desktop takes precedence\n"));
        ical_object_unref (obj);
        return;
    }

    /*
     * Begin and end
     */

    if (a->event)
    {
        /* turn day-long events into a full day's appointment */
        a->begin.tm_sec = 0;
        a->begin.tm_min = 0;
        a->begin.tm_hour = 6;

        a->end.tm_sec = 0;
        a->end.tm_min = 0;
        a->end.tm_hour = 10;
    }

    if (a->note)
        obj->comment = g_strdup (a->note);

    if (a->description)
        obj->summary = g_strdup (a->description);

    
    obj->dtstart = mktime (&a->begin);
    obj->dtend = mktime (&a->end);

    /* Special case: daily repetitions are converted to a multiday event */
    if (a->repeatType == repeatDaily){
        time_t newt = time_add_day (obj->dtend, a->repeatFrequency);

        obj->dtend = newt;
    }

    /*
     * Alarm
     */
    if (a->alarm){
        obj->aalarm.type = ALARM_AUDIO;
        obj->aalarm.enabled = 1;
        obj->aalarm.count = a->advance;

        switch (a->advanceUnits){
        case advMinutes:
            obj->aalarm.units = ALARM_MINUTES;
            break;
            
        case advHours:
            obj->aalarm.units = ALARM_HOURS;
            break;
            
        case advDays:
            obj->aalarm.units = ALARM_DAYS;
            break;
        default:
        }
    }

    /*
     * Recurrence
     */
    if (a->repeatFrequency && a->repeatType != repeatDaily){
        obj->recur = g_new0 (Recurrence, 1);
        
        switch (a->repeatType){
        case repeatDaily:
            /*
             * In the Pilot daily repetitions are actually
             * multi-day events
             */
            g_warning ("Should not have got here");
            break;
            
        case repeatMonthlyByDate:
            obj->recur->type = RECUR_MONTHLY_BY_DAY;
            obj->recur->u.month_day = a->repeatFrequency;
            break;
            
        case repeatWeekly:
        {
            int wd;

            obj->recur->type = RECUR_WEEKLY;
            for (wd = 0; wd < 7; wd++)
                if (a->repeatDays [wd])
                    obj->recur->weekday |= 1 << wd;

            if (obj->recur->weekday == 0){
                struct tm tm = *localtime (&obj->dtstart);

                obj->recur->weekday = 1 << tm.tm_wday;
            }
            break;
        }
        
        case repeatMonthlyByDay:
            obj->recur->type = RECUR_MONTHLY_BY_POS;
            obj->recur->u.month_pos = a->repeatFrequency;
            obj->recur->weekday = (a->repeatDay / 7);
            break;
            
        case repeatYearly:
            obj->recur->type = RECUR_YEARLY_BY_DAY;
            break;

        default:
            g_warning ("Unhandled repeate case");
        }

        if (a->repeatForever)
            obj->recur->duration = 0;
        else
            obj->recur->_enddate = mktime (&a->repeatEnd);
    }

    /*
     * Load exception dates 
     */
    obj->exdate = NULL;
    for (i = 0; i < a->exceptions; i++){
        time_t *t = g_new (time_t, 1);

        *t = mktime (&(a->exception [i]));
        obj->exdate = g_list_prepend (obj->exdate, t);
    }

    g_free (obj->class);
    
    if (attr & dlpRecAttrSecret)
        obj->class = g_strdup ("PRIVATE");
    else
        obj->class = g_strdup ("PUBLIC");

    /*
     * Now, convert the in memory iCalObject to a full vCalendar
     * we can send
     */
    success = cal_client_update_object (client, obj);
    /* set the pilot_status to sync_none so we don't send
       this event right back to the pilot */
    cal_client_update_pilot_id (client, obj->uid, obj->pilot_id,
                    ICAL_PILOT_SYNC_NONE);


    dump_attr (attr);
    printf (" but not used.\n");

    /*
     * Shutdown
     */
    ical_object_unref (obj);
}

/*
 * Sets the alarm for Appointment based on @alarm
 */
static int
try_alarm (CalendarAlarm *alarm, struct Appointment *a)
{
    if (!alarm->enabled)
        return 0;

    a->advance = alarm->count;
    switch (alarm->type){
    case ALARM_DAYS:
        a->advanceUnits = advDays;
        break;
        
    case ALARM_HOURS:
        a->advanceUnits = advHours;
        break;

    case ALARM_MINUTES:
        a->advanceUnits = advMinutes;
        break;

    default:
        return 0;
    }
    a->alarm = 1;
    return 1;
}


static void
sync_object_to_pilot (CalClient *client, iCalObject *obj, int pilot_fd)
{
    char buffer [65536];
    struct Appointment *a;
    int wd, i, idx, attr, cat, rec_len;
    recordid_t new_id;
    GList *l;
    
    a = g_new0 (struct Appointment, 1);

    attr = 0;
    cat = 0;
    idx = 0;

    printf ("cal->pilot: pilotid=%d, ", obj->pilot_id);

    if (obj->pilot_id) {
        rec_len = dlp_ReadRecordById (pilot_fd, db, obj->pilot_id,
                          buffer,
                          &idx, &rec_len, &attr, &cat);

        if (rec_len > 0)
            unpack_Appointment (a, buffer, rec_len);
    } else {
        attr = 0;
        cat = 0;
    }
    
    /* a contains the appointment either cleared or with
       the data from the Pilot */
    a->begin = *localtime (&obj->dtstart);
    a->end   = *localtime (&obj->dtend);

    /* FIXME: add support for timeless */
    a->event = 0;

    /* Alarms, try the various ones.  Probably we should only do Audio?
     * Otherwise going gnomecal->pilot->gnomecal would get the gnomecal
     * with *possibly* an alarm that was not originally defined.
     */
    a->alarm = 0;
    if (try_alarm (&obj->aalarm, a) == 0)
        if (try_alarm (&obj->dalarm, a) == 0)
            try_alarm (&obj->palarm, a);

    /* Recurrence */
    if (obj->recur){
        a->repeatFrequency = obj->recur->interval;
        
        switch (obj->recur->type){
        case RECUR_MONTHLY_BY_POS:
            a->repeatType = repeatMonthlyByDay;
            a->repeatFrequency = obj->recur->u.month_pos;
            a->repeatDay = obj->recur->weekday * 7;
            break;
            
        case RECUR_MONTHLY_BY_DAY:
            a->repeatType = repeatMonthlyByDate;
            a->repeatFrequency = obj->recur->u.month_day;
            break;
        
        case RECUR_YEARLY_BY_DAY:
            a->repeatType = repeatYearly;
            break;
            
        case RECUR_WEEKLY:
            for (wd = 0; wd < 7; wd++)
                if (obj->recur->weekday & (1 << wd))
                    a->repeatDays [wd] = 1;
            a->repeatType = repeatWeekly;
            break;
        case RECUR_DAILY:
            
        default:
            a->repeatType = repeatNone;
            break;
        }
        if (obj->recur->enddate == 0){
            a->repeatForever = 1;
        } else
            a->repeatEnd = *localtime (&obj->recur->enddate);
    }
    
    /*
     * Pilot uses a repeat-daily for a multi-day event, adjust
     * for that case
     */
    if ((a->end.tm_mday != a->begin.tm_mday) ||
        (a->end.tm_mon != a->begin.tm_mon) ||
        (a->end.tm_year != a->begin.tm_year)) {
        a->event = 1;
        a->begin.tm_sec = 0;
        a->begin.tm_min = 0;
        a->begin.tm_hour = 0;

        a->end.tm_sec = 0;
        a->end.tm_min = 0;
        a->end.tm_hour = 0;

        a->repeatEnd = a->end;
        a->repeatForever = 0;
        a->repeatFrequency = 1;
        a->repeatType = repeatDaily;
    }
       
    /*
     * Exceptions
     */
    a->exceptions = g_list_length (obj->exdate);
    a->exception = (struct tm *)malloc (sizeof(struct tm) * a->exceptions);
    for (i = 0, l = obj->exdate; l; l = l->next, i++){
        time_t *exdate = l->data;

        a->exception [i] = *localtime (exdate);
    }

    /*
     * Description and note.
     *
     * We use strdup to be correct.  free_Appointment assumes we used
     * malloc.
     */
    if (obj->comment)
        a->note = strdup (obj->comment);
    else
        a->note = 0;

    if (obj->summary)
        a->description = strdup (obj->summary);
    else
        a->description = strdup (_("No description"));

    if (strcmp (obj->class, "PUBLIC") != 0)
        attr |= dlpRecAttrSecret;
    else
        attr &= ~dlpRecAttrSecret;

    /*
     * Send the appointment to the pilot
     */
    rec_len = pack_Appointment (a, buffer, sizeof (buffer));
    attr &= ~dlpRecAttrDirty;

    dump_attr (attr);
    printf ("\n");

    dlp_WriteRecord (pilot_fd, db, attr,
             obj->pilot_id, 0, buffer, rec_len, &new_id);

    cal_client_update_pilot_id (client, obj->uid, new_id,
                    ICAL_PILOT_SYNC_NONE);

    
    conduit_free_Appointment (a);
    g_free (a);
}

static void
sync_cal_to_pilot (CalClient *client, int pilot_fd)
{
    int c;
    int i;
    GList *uids;
    GList *cur;


    uids = cal_client_get_uids (client, CALOBJ_TYPE_ANY);

    c = g_list_length (uids);


    for (cur=uids, i=0; cur; cur=cur->next, i++) {
        const char *uid = cur->data;
        CalClientGetStatus status;
        iCalObject *ico;

        status = cal_client_get_object (client, uid, &ico);
        if (status == CAL_CLIENT_GET_SUCCESS &&
            ico->pilot_status == ICAL_PILOT_SYNC_MOD) {
            printf ("uid='%s', pilot_status=%d\n", uid,
                ico->pilot_status);
            sync_object_to_pilot (client, ico, pilot_fd);
        }
        /*
        else {
            warn
        }
        */
    }
}


static void
sync_pilot_to_cal (CalClient *client, int pilot_fd)
{
    int record;
    unsigned char buffer [65536];

    for (record = 0;; record++) {
        struct Appointment a;
        int rec_len, attr, size;
        recordid_t id;
            
        rec_len = dlp_ReadRecordByIndex (pilot_fd, db,
                         record, buffer,
                         &id, &size, &attr, 0);
        if (rec_len < 0)
            break;
            
        unpack_Appointment (&a, buffer, rec_len);
            
        if (debug_attrs)
            dump_attr (attr);
            
        /* If the object was deleted, remove it from
           the desktop database */
        if (attr & dlpRecAttrDeleted) {
            delete_record_from_desktop (client, id);
            conduit_free_Appointment (&a);
            dlp_DeleteRecord (pilot_fd, db, 0, id);
            continue;
        }

        if (attr & dlpRecAttrArchived)
            continue;

        if (attr & dlpRecAttrDirty) {
            update_record (client, id, &a, attr);
        } else {
            /* if the dirty flag is clear yet we have
               no copy of it in the desktop database, then
               we deleted it from the desktop database, so
               delete it from the pilot */

            char *uid;
            CalClientGetStatus status;
            status = cal_client_get_uid_by_pilot_id (client,
                                 id, &uid);
            if (status == CAL_CLIENT_GET_NOT_FOUND) {
                printf ("deleting %ld from pilot\n", id);
                dlp_DeleteRecord (pilot_fd, db, 0, id);
            }
            else
                g_free (uid);
        }

        attr &= ~dlpRecAttrDirty;

        conduit_free_Appointment (&a);
    }
}


static void
sync_pilot (CalClient *client, int pilot_fd)
{
    struct PilotUser user_info;
    struct SysInfo sys_info;
    unsigned char buffer [300];
    

    /* Get the pilot's system information.  FIX ME check return */
    dlp_ReadSysInfo (pilot_fd, &sys_info);

    /* Ask the pilot who it is.  FIX ME check return */
    dlp_ReadUserInfo (pilot_fd, &user_info);


    printf ("---------sys info--------------\n");
    printf ("romVersion=%ld\n", sys_info.romVersion);
    printf ("locale=%ld\n", sys_info.locale);
    strncpy (buffer, sys_info.name, sys_info.nameLength);
    printf ("name='%s'\n", buffer);
    printf ("---------user info--------------\n");
    printf ("userID=%ld\n", user_info.userID);
    printf ("viewerID=%ld\n", user_info.viewerID);
    printf ("lastSyncPC=%ld\n", user_info.lastSyncPC);
    printf ("successfulSyncDate=%s",
        ctime (& user_info.successfulSyncDate));
    printf ("lastSyncDate=%s",
        ctime (& user_info.lastSyncDate));
    printf ("username='%s'\n", user_info.username);
    strncpy (buffer, user_info.password, user_info.passwordLength);
    printf ("password='%s'\n", buffer);
    printf ("--------------------------------\n");


    /* This informs the user of the progress on the Pilot */
    dlp_OpenConduit (pilot_fd);

    if (dlp_OpenDB (pilot_fd, 0, 0x80 | 0x40, "DatebookDB", &db) < 0){
        g_warning (_("Could not open DatebookDB on the Pilot"));
        dlp_AddSyncLogEntry (pilot_fd, _("Unable to open DatebookDB"));
        pi_close (pilot_fd);
        exit (1);
    }

    /*
     * 1. Pull all the records from the Pilot, and make any updates
     *    required on the desktop side
     */
    if (! only_desktop_to_pilot)
        sync_pilot_to_cal (client, pilot_fd);


    /*
     * 2. Push all changes on the desktop to the pilot.
     *
     */

    if (! only_pilot_to_desktop)
        sync_cal_to_pilot (client, pilot_fd);   

    /*
     * 3. Clear the dirty bits on all the pilot's events.
     *
     */

    dlp_ResetSyncFlags (pilot_fd, db);

    /*
     * 4. Close down.
     *
     */
    
    dlp_CloseDB (pilot_fd, db);
    dlp_AddSyncLogEntry (pilot_fd,
                 _("Synced DateBook from Pilot to GnomeCal"));
    pi_close (pilot_fd);

    /*
     * 5. Dump Core.
     *
     */
}


static void
gnome_calendar_load_cb (GtkWidget *cal_client,
            CalClientLoadStatus status,
            int *link)
{
    CalClient *client = CAL_CLIENT (cal_client);
    static int tried = 0;

    if (status == CAL_CLIENT_LOAD_SUCCESS) {
        printf ("<Syncing>\n");
        sync_pilot (client, *link);
        printf ("</Syncing>\n");
    } else {
        if (tried) {
            printf ("load and create of calendar failed\n");
            return;
        }

        cal_client_create_calendar (client, calendar_file);
        tried = 1;
    }

    gtk_main_quit ();
}


int
main (int argc, char *argv [])
{
    int link;
    CalClient *client;

    init_bonobo (&argc, argv);

    g_log_set_always_fatal (G_LOG_LEVEL_ERROR |
                G_LOG_LEVEL_CRITICAL |
                G_LOG_LEVEL_WARNING);


    /* FIX ME */
    calendar_file = g_concat_dir_and_file (g_get_home_dir (),
                   "evolution/local/Calendar/calendar.vcf");


    for (;;) {
        printf ("Please, press HotSync button on the palm...\n");
        fflush (stdout);
        link = setup_connection ();
        printf ("Connected\n");

        printf ("Contacting calendar server...\n");
        fflush (stdout);
        client = cal_client_new ();

        gtk_signal_connect (GTK_OBJECT (client), "cal_loaded",
                    gnome_calendar_load_cb, &link);

        cal_client_load_calendar (client, calendar_file);

        bonobo_main ();

        gtk_object_unref (GTK_OBJECT (client));
        pi_close (link);
    }

    return 0;
}

/* Just a stub to link with */

void calendar_notify (time_t time, CalendarAlarm *which, void *data);

void
calendar_notify (time_t time, CalendarAlarm *which, void *data)
{
}