forked from juddmon/jpilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jpilot-dump.c
1916 lines (1818 loc) · 70.1 KB
/
jpilot-dump.c
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
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*******************************************************************************
* jpilot-dump.c
*
* Copyright (C) 2000 by hvrietsc
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
******************************************************************************/
/********************************* Includes ***********************************/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <sys/stat.h>
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif
/* Pilot-link header files */
#include <pi-todo.h>
#include <pi-memo.h>
#include <pi-address.h>
#include <pi-calendar.h>
/* Jpilot header files */
#include "datebook.h"
#include "address.h"
#include "todo.h"
#include "memo.h"
#include "utils.h"
#include "i18n.h"
#include "otherconv.h"
#include "prefs.h"
#include "sync.h"
/********************************* Constants **********************************/
/* RFCs use CRLF for Internet newline */
#define CRLF "\x0D\x0A"
#define LIMIT(a,b,c) if (a < b) {a=b;} if (a > c) {a=c;}
/* Uncomment for more debug output */
/* #define JDUMP_DEBUG 1 */
/******************************* Global vars **********************************/
int glob_sqlite = 0; // just to keep the linker happy
int glob_rc_file_write = 1; // just to keep the linker happy
/* dump switches */
int dumpD;
int dumpI;
int dumpN;
int Nyear;
int Nmonth;
int Nday;
int dumpA;
int dumpC;
int dumpC_type;
int dumpM;
int dumpT;
const char *formatD;
const char *formatM;
const char *formatA;
const char *formatT;
/* Start Hack */
/* FIXME: The following is a hack.
* The variables below are global variables in jpilot.c which are unused in
* this code but must be instantiated for the code to compile.
* The same is true of the functions which are only used in GUI mode. */
pid_t jpilot_master_pid = -1;
int pipe_to_parent;
GtkWidget *glob_dialog;
GtkWidget *glob_date_label;
gint glob_date_timer_tag;
void output_to_pane(const char *str) { return; }
int sync_once(struct my_sync_info *sync_info) { return EXIT_SUCCESS; }
/* End Hack */
/* Structs needed for ContactsDB export */
static address_schema_entry contact_schema[NUM_CONTACT_FIELDS]={
{contLastname, 0, ADDRESS_GUI_LABEL_TEXT},
{contFirstname, 0, ADDRESS_GUI_LABEL_TEXT},
{contCompany, 0, ADDRESS_GUI_LABEL_TEXT},
{contTitle, 0, ADDRESS_GUI_LABEL_TEXT},
{contPhone1, 0, ADDRESS_GUI_DIAL_SHOW_PHONE_MENU_TEXT},
{contPhone2, 0, ADDRESS_GUI_DIAL_SHOW_PHONE_MENU_TEXT},
{contPhone3, 0, ADDRESS_GUI_DIAL_SHOW_PHONE_MENU_TEXT},
{contPhone4, 0, ADDRESS_GUI_DIAL_SHOW_PHONE_MENU_TEXT},
{contPhone5, 0, ADDRESS_GUI_DIAL_SHOW_PHONE_MENU_TEXT},
{contPhone6, 0, ADDRESS_GUI_DIAL_SHOW_PHONE_MENU_TEXT},
{contPhone7, 0, ADDRESS_GUI_DIAL_SHOW_PHONE_MENU_TEXT},
{contIM1, 0, ADDRESS_GUI_IM_MENU_TEXT},
{contIM2, 0, ADDRESS_GUI_IM_MENU_TEXT},
{contWebsite, 0, ADDRESS_GUI_WEBSITE_TEXT},
{contAddress1, 1, ADDRESS_GUI_ADDR_MENU_TEXT},
{contCity1, 1, ADDRESS_GUI_LABEL_TEXT},
{contState1, 1, ADDRESS_GUI_LABEL_TEXT},
{contZip1, 1, ADDRESS_GUI_LABEL_TEXT},
{contCountry1, 1, ADDRESS_GUI_LABEL_TEXT},
{contAddress2, 2, ADDRESS_GUI_ADDR_MENU_TEXT},
{contCity2, 2, ADDRESS_GUI_LABEL_TEXT},
{contState2, 2, ADDRESS_GUI_LABEL_TEXT},
{contZip2, 2, ADDRESS_GUI_LABEL_TEXT},
{contCountry2, 2, ADDRESS_GUI_LABEL_TEXT},
{contAddress3, 3, ADDRESS_GUI_ADDR_MENU_TEXT},
{contCity3, 3, ADDRESS_GUI_LABEL_TEXT},
{contState3, 3, ADDRESS_GUI_LABEL_TEXT},
{contZip3, 3, ADDRESS_GUI_LABEL_TEXT},
{contCountry3, 3, ADDRESS_GUI_LABEL_TEXT},
{contBirthday, 4, ADDRESS_GUI_BIRTHDAY},
{contCustom1, 4, ADDRESS_GUI_LABEL_TEXT},
{contCustom2, 4, ADDRESS_GUI_LABEL_TEXT},
{contCustom3, 4, ADDRESS_GUI_LABEL_TEXT},
{contCustom4, 4, ADDRESS_GUI_LABEL_TEXT},
{contCustom5, 4, ADDRESS_GUI_LABEL_TEXT},
{contCustom6, 4, ADDRESS_GUI_LABEL_TEXT},
{contCustom7, 4, ADDRESS_GUI_LABEL_TEXT},
{contCustom8, 4, ADDRESS_GUI_LABEL_TEXT},
{contCustom9, 4, ADDRESS_GUI_LABEL_TEXT},
{contNote, 5, ADDRESS_GUI_LABEL_TEXT}
};
static char *ldifMapType(int label)
{
switch (label) {
case 0:
return "telephoneNumber";
case 1:
return "homePhone";
case 2:
return "facsimileTelephoneNumber";
case 3:
return "xotherTelephoneNumber";
case 4:
return "mail";
case 5:
return "xmainTelephoneNumber";
case 6:
return "pager";
case 7:
return "mobile";
default:
return "xunknownTelephoneNumber";
}
}
static char *vCardMapType(int label)
{
switch (label) {
case 0:
return "work";
case 1:
return "home";
case 2:
return "fax";
case 3:
return "x-other";
case 4:
return "email";
case 5:
return "x-main";
case 6:
return "pager";
case 7:
return "cell";
default:
return "x-unknown";
}
}
/****************************** Main Code *************************************/
static void fprint_jpd_usage_string(FILE *out)
{
fprintf(out, "%s-dump [ +format [-v] || [-h] || [-f] || [-D] || [-i] || [-A] || [-C] || [-T] || [-M] || [-N] ]\n", EPN);
fprintf(out, _(" +D +A +T +M format like date +format.\n"));
fprintf(out, _(" -v displays version and exits.\n"));
fprintf(out, _(" -h displays help and exits.\n"));
fprintf(out, _(" -f displays help for format codes.\n"));
fprintf(out, _(" -D dump DateBook.\n"));
fprintf(out, _(" -i dump DateBook in iCalendar format.\n"));
fprintf(out, _(" -N dump appts for today in DateBook.\n"));
fprintf(out, _(" -NYYYY/MM/DD dump appts on YYYY/MM/DD in DateBook.\n"));
fprintf(out, _(" -A dump Address book.\n"));
fprintf(out, _(" -C dumps Contacts database:-\n"));
fprintf(out, _(" -Ct dumps as text (default).\n"));
fprintf(out, _(" -Cc dumps as csv.\n"));
fprintf(out, _(" -Cv dumps as vcard.\n"));
fprintf(out, _(" -Cl dumps as ldif.\n"));
fprintf(out, _(" -T dump ToDo list as CSV.\n"));
fprintf(out, _(" -M dump Memos.\n"));
}
/* convert from UTF8 to local encoding */
static void utf8_to_local(char *str)
{
char *local_buf;
if (str == NULL)
return;
local_buf = g_locale_from_utf8(str, -1, NULL, NULL, NULL);
if (local_buf)
{
g_strlcpy(str, local_buf, strlen(str)+1);
free(local_buf);
}
}
/* Parse the string and replace dangerous characters with spaces */
static void takeoutfunnies(char *str)
{
int i;
if (!str) {
return;
}
for (i=0; str[i]; i++) {
if ((str[i]=='\r') ||
(str[i]=='\n') ||
(str[i]=='\\') ||
(str[i]=='\'') ||
(str[i]=='"' ) ||
(str[i]=='`' )
) {
str[i]=' ';
}
}
}
static int dumpical(void)
{
MyAppointment *mappt;
AppointmentList *al, *temp_list;
int i;
char text[1024];
char csv_text[65550];
char *p;
gchar *end;
time_t ltime;
struct tm *now;
struct tm ical_time;
long char_set;
char username[256];
char hostname[256];
const char *svalue;
long userid;
/* ICAL setup */
get_pref(PREF_CHAR_SET, &char_set, NULL);
if (char_set < CHAR_SET_UTF) {
fprintf(stderr, _("Warning: "
"Host character encoding is not UTF-8 based.\n"
"Exported ical file may not be standards-compliant\n"));
}
get_pref(PREF_USER, NULL, &svalue);
g_strlcpy(text, svalue, 128);
text[127] = '\0';
charset_p2j(text, 128, char_set);
str_to_ical_str(username, sizeof(username), text);
get_pref(PREF_USER_ID, &userid, NULL);
gethostname(text, sizeof(hostname));
text[sizeof(hostname)-1]='\0';
str_to_ical_str(hostname, sizeof(hostname), text);
time(<ime);
now = gmtime(<ime);
al=NULL;
get_days_appointments2(&al, NULL, 2, 2, 2, NULL);
mappt=NULL;
for (i=0, temp_list=al; temp_list; temp_list = temp_list->next, i++) {
mappt = &(temp_list->mappt);
/* RFC 2445: Internet Calendaring and Scheduling Core
* Object Specification */
if (i == 0) {
printf("BEGIN:VCALENDAR"CRLF);
printf("VERSION:2.0"CRLF);
printf("PRODID:%s"CRLF, FPI_STRING);
}
printf("BEGIN:VEVENT"CRLF);
/* XXX maybe if it's secret export a VFREEBUSY busy instead? */
if (mappt->attrib & dlpRecAttrSecret) {
printf("CLASS:PRIVATE"CRLF);
}
printf("UID:palm-datebook-%08x-%08lx-%s@%s"CRLF,
mappt->unique_id, userid, username, hostname);
printf("DTSTAMP:%04d%02d%02dT%02d%02d%02dZ"CRLF,
now->tm_year+1900,
now->tm_mon+1,
now->tm_mday,
now->tm_hour,
now->tm_min,
now->tm_sec);
if (mappt->appt.description) {
g_strlcpy(text, mappt->appt.description, 51);
/* truncate the string on a UTF-8 character boundary */
if (char_set > CHAR_SET_UTF) {
if (!g_utf8_validate(text, -1, (const gchar **)&end))
*end = 0;
}
} else {
/* Handle pathological case with null description. */
text[0] = '\0';
}
if ((p = strchr(text, '\n'))) {
*p = '\0';
}
str_to_ical_str(csv_text, sizeof(csv_text), text);
printf("SUMMARY:%s%s"CRLF, csv_text,
strlen(text) > 49 ? "..." : "");
str_to_ical_str(csv_text, sizeof(csv_text), mappt->appt.description);
printf("DESCRIPTION:%s", csv_text);
if (mappt->appt.note && mappt->appt.note[0]) {
str_to_ical_str(csv_text, sizeof(csv_text), mappt->appt.note);
printf("\\n"CRLF" %s"CRLF, csv_text);
} else {
printf(CRLF);
}
if (mappt->appt.event) {
printf("DTSTART;VALUE=DATE:%04d%02d%02d"CRLF,
mappt->appt.begin.tm_year+1900,
mappt->appt.begin.tm_mon+1,
mappt->appt.begin.tm_mday);
/* XXX unclear: can "event" span multiple days? */
/* since DTEND is "noninclusive", should this be the next day? */
if (mappt->appt.end.tm_year != mappt->appt.begin.tm_year ||
mappt->appt.end.tm_mon != mappt->appt.begin.tm_mon ||
mappt->appt.end.tm_mday != mappt->appt.begin.tm_mday) {
printf("DTEND;VALUE=DATE:%04d%02d%02d"CRLF,
mappt->appt.end.tm_year+1900,
mappt->appt.end.tm_mon+1,
mappt->appt.end.tm_mday);
}
} else {
/*
* These are "local" times, so will be treated as being in
* the other person's timezone when they are imported. This
* may or may not be what is desired. (DateBk calls this
* "all time zones").
*
* DateBk timezones could help us decide what to do here.
*
* When using DateBk timezones, we could write them out
* as iCalendar timezones.
*
* Maybe the default should be to write an absolute (UTC) time,
* and only write a "local" time when using DateBk and it says to.
* It'd be interesting to see if repeated events get translated
* properly when doing this, or if they become not eligible for
* daylight savings. This probably depends on the importing
* application.
*/
printf("DTSTART:%04d%02d%02dT%02d%02d00"CRLF,
mappt->appt.begin.tm_year+1900,
mappt->appt.begin.tm_mon+1,
mappt->appt.begin.tm_mday,
mappt->appt.begin.tm_hour,
mappt->appt.begin.tm_min);
printf("DTEND:%04d%02d%02dT%02d%02d00"CRLF,
mappt->appt.end.tm_year+1900,
mappt->appt.end.tm_mon+1,
mappt->appt.end.tm_mday,
mappt->appt.end.tm_hour,
mappt->appt.end.tm_min);
}
if (mappt->appt.repeatType != repeatNone) {
int wcomma, rptday;
const char *wday[] = {"SU","MO","TU","WE","TH","FR","SA"};
printf("RRULE:FREQ=");
switch (mappt->appt.repeatType) {
case repeatNone:
/* can't happen, just here to silence compiler warning */
break;
case repeatDaily:
printf("DAILY");
break;
case repeatWeekly:
printf("WEEKLY;BYDAY=");
wcomma=0;
for (i=0; i<7; i++) {
if (mappt->appt.repeatDays[i]) {
if (wcomma) {
printf(",");
}
wcomma = 1;
printf("%s", wday[i]);
}
}
break;
case repeatMonthlyByDay:
rptday = (mappt->appt.repeatDay / 7) + 1;
printf("MONTHLY;BYDAY=%d%s", rptday == 5 ? -1 : rptday,
wday[mappt->appt.repeatDay % 7]);
break;
case repeatMonthlyByDate:
printf("MONTHLY;BYMONTHDAY=%d", mappt->appt.begin.tm_mday);
break;
case repeatYearly:
printf("YEARLY");
break;
}
if (mappt->appt.repeatFrequency != 1) {
if (mappt->appt.repeatType == repeatWeekly &&
mappt->appt.repeatWeekstart >= 0 && mappt->appt.repeatWeekstart < 7) {
printf(CRLF" "); // Weekly repeats can exceed RFC line length
printf(";WKST=%s", wday[mappt->appt.repeatWeekstart]);
}
printf(";INTERVAL=%d", mappt->appt.repeatFrequency);
}
if (!mappt->appt.repeatForever) {
/* RFC 2445 is unclear on how to handle inclusivity for
* dates, rather than datestamps. Because most other
* ical parsers assume non-inclusivity Jpilot needs to
* add one day to the end date of repeating events. */
memset(&ical_time, 0, sizeof(ical_time));
ical_time.tm_year = mappt->appt.repeatEnd.tm_year;
ical_time.tm_mon = mappt->appt.repeatEnd.tm_mon;
ical_time.tm_mday = mappt->appt.repeatEnd.tm_mday;
ical_time.tm_isdst= -1;
mktime(&ical_time);
printf(";UNTIL=%04d%02d%02d",
ical_time.tm_year+1900,
ical_time.tm_mon+1,
ical_time.tm_mday);
}
printf(CRLF);
if (mappt->appt.exceptions > 0) {
for (i=0; i<mappt->appt.exceptions; i++) {
printf("EXDATE;VALUE=DATE:%04d%02d%02d"CRLF,
mappt->appt.exception[i].tm_year+1900,
mappt->appt.exception[i].tm_mon+1,
mappt->appt.exception[i].tm_mday);
}
}
}
if (mappt->appt.alarm) {
const char *units;
printf("BEGIN:VALARM"CRLF);
printf("ACTION:DISPLAY"CRLF);
str_to_ical_str(csv_text, sizeof(csv_text), mappt->appt.description);
printf("DESCRIPTION:%s"CRLF, csv_text);
switch (mappt->appt.advanceUnits) {
case advMinutes:
units = "M";
break;
case advHours:
units = "H";
break;
case advDays:
units = "D";
break;
default: /* XXX */
units = "?";
break;
}
printf("TRIGGER:-PT%d%s"CRLF, mappt->appt.advance, units);
printf("END:VALARM"CRLF);
}
printf("END:VEVENT"CRLF);
if (temp_list->next == NULL) {
printf("END:VCALENDAR"CRLF);
}
}
free_AppointmentList(&al);
return EXIT_SUCCESS;
}
static int dumpbook(void)
{
AppointmentList *tal, *al;
int num, i;
int year, month, day, hour, minute;
struct tm tm_dom;
al = NULL;
num = get_days_appointments(&al, NULL, NULL);
if (num == 0)
return (0);
/* get date */
LIMIT(Nday,1,31);
LIMIT(Nyear,1900,3000);
LIMIT(Nmonth,1,12);
tm_dom.tm_sec = 0;
tm_dom.tm_min = 0;
tm_dom.tm_hour = 0;
tm_dom.tm_mday = Nday;
tm_dom.tm_year = Nyear-1900;
tm_dom.tm_mon = Nmonth-1;
tm_dom.tm_isdst = 0;
mktime(&tm_dom);
#ifdef JDUMP_DEBUG
printf("Dumpbook:dump year=%d,month=%d,day=%d\n", Nyear, Nmonth, Nday);
printf("Dumpbook:date is %s", asctime(&tm_dom));
#endif
for (tal=al; tal; tal = tal->next) {
if (((dumpN == FALSE) || (isApptOnDate(&(tal->mappt.appt), &tm_dom) == TRUE))
&& (tal->mappt.rt != DELETED_PALM_REC)
&& (tal->mappt.rt != MODIFIED_PALM_REC)) {
utf8_to_local(tal->mappt.appt.description);
utf8_to_local(tal->mappt.appt.note);
/* sort through format codes */
for (i=2; formatD[i] != '\0'; i++) {
if ( formatD[i] != '%') {
printf("%c", formatD[i]);
} else {
switch (formatD[i+1]) {
case '\0':
break;
case 'n' :
printf("\n");
i++;
break;
case 't' :
printf("\t");
i++;
break;
case 'q' :
printf("'");
i++;
break;
case 'Q' :
printf("\"");
i++;
break;
case 'w' :
printf("%d", tal->mappt.appt.alarm);
i++;
break;
case 'v' :
printf("%d", tal->mappt.appt.advance);
i++;
break;
case 'u' :
switch (tal->mappt.appt.advanceUnits) {
case advMinutes : printf("m"); break;
case advHours : printf("h"); break;
case advDays : printf("d"); break;
default : printf("x"); break;
}
i++;
break;
case 'X' :
takeoutfunnies(tal->mappt.appt.note);
/* fall thru */
case 'x' :
if (tal->mappt.appt.note != NULL) {
printf("%s", tal->mappt.appt.note);
}
i++;
break;
case 'A' :
takeoutfunnies(tal->mappt.appt.description);
/* fall thru */
case 'a' :
printf("%s", tal->mappt.appt.description);
i++;
break;
case 'N' : /* normal output */
/* start date+time, end date+time, "description" */
takeoutfunnies(tal->mappt.appt.description);
printf("%.4d/%.2d/%.2d,%.2d:%.2d,%.4d/%.2d/%.2d,%.2d:%.2d,\"%s\"",
tal->mappt.appt.begin.tm_year+1900,
tal->mappt.appt.begin.tm_mon+1,
tal->mappt.appt.begin.tm_mday,
tal->mappt.appt.begin.tm_hour,
tal->mappt.appt.begin.tm_min,
tal->mappt.appt.end.tm_year+1900,
tal->mappt.appt.end.tm_mon+1,
tal->mappt.appt.end.tm_mday,
tal->mappt.appt.end.tm_hour,
tal->mappt.appt.end.tm_min,
tal->mappt.appt.description
);
i++;
break;
/* now process the double character format codes */
case 'b' :
case 'e' :
if (formatD[i+1] == 'b') {
year = tal->mappt.appt.begin.tm_year+1900;
month = tal->mappt.appt.begin.tm_mon+1;
day = tal->mappt.appt.begin.tm_mday;
hour = tal->mappt.appt.begin.tm_hour;
minute = tal->mappt.appt.begin.tm_min;
} else {
year = tal->mappt.appt.end.tm_year+1900;
month = tal->mappt.appt.end.tm_mon+1;
day = tal->mappt.appt.end.tm_mday;
hour = tal->mappt.appt.end.tm_hour;
minute = tal->mappt.appt.end.tm_min;
}
/* do %bx and %ex format codes */
switch (formatD[i+2]) {
case '\0':
printf("%c", formatD[i+1]);
break;
case 'm' :
printf("%.2d", month);
i++;
break;
case 'd' :
printf("%.2d", day);
i++;
break;
case 'y' :
printf("%.2d", year%100);
i++;
break;
case 'Y' :
printf("%.4d", year);
i++;
break;
case 'X' :
printf("%.2d/%.2d/%.2d", year-1900, month, day);
i++;
break;
case 'D' :
printf("%.2d/%.2d/%.2d", month, day, year%100);
i++;
break;
case 'H' :
printf("%.2d", hour);
i++;
break;
case 'k' :
printf("%d", hour);
i++;
break;
case 'I' :
if (hour < 13) {
printf("%.2d", hour);
} else {
printf("%.2d", hour-12);
}
i++;
break;
case 'l' :
if (hour < 13) {
printf("%d", hour);
} else {
printf("%d", hour-12);
}
i++;
break;
case 'M' :
printf("%.2d", minute);
i++;
break;
case 'p' :
if (hour < 13) {
printf("AM");
} else {
printf("PM");
}
i++;
break;
case 'T' :
printf("%.2d:%.2d", hour, minute);
i++;
break;
case 'r' :
if (hour < 13) {
printf("%.2d:%.2d AM", hour, minute);
} else {
printf("%.2d:%.2d PM", hour-12, minute);
}
i++;
break;
case 'h' :
case 'b' :
switch (month-1) {
case 0: printf("Jan"); break;
case 1: printf("Feb"); break;
case 2: printf("Mar"); break;
case 3: printf("Apr"); break;
case 4: printf("May"); break;
case 5: printf("Jun"); break;
case 6: printf("Jul"); break;
case 7: printf("Aug"); break;
case 8: printf("Sep"); break;
case 9: printf("Oct"); break;
case 10:printf("Nov"); break;
case 11:printf("Dec"); break;
default:printf("???"); break;
}
i++;
break;
case 'B' :
switch (month-1) {
case 0: printf("January"); break;
case 1: printf("February"); break;
case 2: printf("March"); break;
case 3: printf("April"); break;
case 4: printf("May"); break;
case 5: printf("June"); break;
case 6: printf("July"); break;
case 7: printf("August"); break;
case 8: printf("September"); break;
case 9: printf("October"); break;
case 10:printf("November"); break;
case 11:printf("December"); break;
default:printf("???"); break;
}
i++;
break;
default: /* 2 letter format codes */
printf("%c%c", formatD[i+1], formatD[i+2]);
i++;
break;
} /* end switch 2 letters format codes */
i++;
break;
default: /* one letter format codes */
printf("%c", formatD[i+1]);
i++;
break;
} /* end switch one letter format codes */
} /* end if % */
} /* for loop over formatD */
printf("\n");
} /* end if excluding deleted records */
} /* end for loop on tal= */
free_AppointmentList(&al);
return EXIT_SUCCESS;
}
static int dumpaddress(void)
{
AddressList *tal, *al;
int num, i;
struct AddressAppInfo ai;
get_address_app_info(&ai);
al = NULL;
i = 0;
num = get_addresses(&al, i);
for (tal=al; tal; tal = tal->next) {
if ((tal->maddr.rt != DELETED_PALM_REC) &&
(tal->maddr.rt != MODIFIED_PALM_REC)) {
for (num=0; num < 19; num++)
utf8_to_local(tal->maddr.addr.entry[num]);
for ( i=2 ; formatA[i] != '\0' ; i++) {
if ( formatA[i] != '%') {
printf("%c", formatA[i]);
} else {
switch (formatA[i+1]) {
case '\0':
break;
case 'n' :
printf("\n");
i++;
break;
case 't' :
printf("\t");
i++;
break;
case 'q' :
printf("'");
i++;
break;
case 'Q' :
printf("\"");
i++;
break;
case 'C' :
printf("%s", ai.category.name[tal->maddr.attrib & 0x0F]);
i++;
break;
case 'N' : /* normal output */
for (num=0; num < 19 ; num++) {
if (tal->maddr.addr.entry[num] == NULL) {
printf("\n");
} else {
printf("%s\n", tal->maddr.addr.entry[num]);
}
}
i++;
break;
#define PRIT if (tal->maddr.addr.entry[num] != NULL) { printf("%s", tal->maddr.addr.entry[num]); }
#define PRITE if (tal->maddr.addr.entry[num + 3] != NULL) { printf("%d", tal->maddr.addr.phoneLabel[num]); }
case 'l' : num=0; PRIT; i++; break;
case 'f' : num=1; PRIT; i++; break;
case 'c' : num=2; PRIT; i++; break;
case 'p' : num=3;
switch (formatA[i+2]) {
case '1' : num=3; PRIT; i++; break;
case '2' : num=4; PRIT; i++; break;
case '3' : num=5; PRIT; i++; break;
case '4' : num=6; PRIT; i++; break;
case '5' : num=7; PRIT; i++; break;
}
i++;
break;
case 'e' : num = 0;
switch (formatA[i+2]) {
case '1' : num=0; PRITE; i++; break;
case '2' : num=1; PRITE; i++; break;
case '3' : num=2; PRITE; i++; break;
case '4' : num=3; PRITE; i++; break;
case '5' : num=4; PRITE; i++; break;
}
i++;
break;
case 'a' : num=8; PRIT; i++; break;
case 'T' : num=9; PRIT; i++; break;
case 's' : num=10; PRIT; i++; break;
case 'z' : num=11; PRIT; i++; break;
case 'u' : num=12; PRIT; i++; break;
case 'm' : num=13; PRIT; i++; break;
case 'U' :
switch (formatA[i+2]) {
case '1' : num=14; PRIT; i++; break;
case '2' : num=15; PRIT; i++; break;
case '3' : num=16; PRIT; i++; break;
case '4' : num=17; PRIT; i++; break;
}
i++;
break;
case 'X' :
takeoutfunnies(tal->maddr.addr.entry[18]);
/* fall thru */
case 'x' :
if (tal->maddr.addr.entry[18] != NULL) printf("%s", tal->maddr.addr.entry[18]);
i++;
break;
default: /* one letter ones */
printf("%c", formatA[i+1]);
i++;
break;
} /* switch one letter ones */
} /* fi */
} /* for */
printf("\n");
}/* end if deleted*/
}/* end for tal=*/
free_AddressList(&al);
return EXIT_SUCCESS;
}
static void dumpcontact()
{
MyContact *mcont;
const char *short_date;
time_t ltime;
struct tm *now;
char str1[256], str2[256];
char pref_time[40];
int i, n;
int record_num;
char text[1024];
char date_string[1024];
char csv_text[65550];
long char_set;
char username[256];
char hostname[256];
const char *svalue;
long userid;
char birthday_str[255];
const char *pref_date;
int address_i, IM_i, phone_i;
char *utf;
static struct ContactAppInfo contact_app_info;
ContactList *tcl, *cl;
get_contact_app_info(&contact_app_info);
cl = NULL;
record_num = get_contacts(&cl, SORT_ASCENDING);
/* Write a header for TEXT file */
if (dumpC_type == EXPORT_TYPE_TEXT) {
get_pref(PREF_SHORTDATE, NULL, &short_date);
get_pref_time_no_secs(pref_time);
time(<ime);
now = localtime(<ime);
strftime(str1, sizeof(str1), short_date, now);
strftime(str2, sizeof(str2), pref_time, now);
g_snprintf(date_string, sizeof(date_string), "%s %s", str1, str2);
printf("Contact exported from %s %s on %s\n\n",
PN,VERSION,date_string);
}
/* Write a header to the CSV file */
if (dumpC_type == EXPORT_TYPE_CSV) {
printf("CSV contacts version "VERSION": Category, Private, ");
address_i=phone_i=IM_i=0;
for (i=0; i<NUM_CONTACT_FIELDS; i++) {
switch (contact_schema[i].type) {
case ADDRESS_GUI_IM_MENU_TEXT:
printf("IM %d label, ", IM_i);
printf("IM %d, ", IM_i);
IM_i++;
break;
case ADDRESS_GUI_DIAL_SHOW_PHONE_MENU_TEXT:
printf("Phone %d label, ", phone_i);
printf("Phone %d, ", phone_i);
phone_i++;
break;
case ADDRESS_GUI_ADDR_MENU_TEXT:
printf("Address %d label, ", address_i);
printf("Address %d, ", address_i);
address_i++;
break;
case ADDRESS_GUI_BIRTHDAY:
printf("%s, ", contact_app_info.labels[contact_schema[i].record_field]);
printf("Reminder Advance, ");
break;
case ADDRESS_GUI_LABEL_TEXT:
case ADDRESS_GUI_WEBSITE_TEXT:
printf("%s, ", contact_app_info.labels[contact_schema[i].record_field]);
break;
}
}
printf("Show in List\n");
} /* end writing CSV header */
/* Special setup for VCARD export */
if (dumpC_type == EXPORT_TYPE_VCARD) {
get_pref(PREF_USER, NULL, &svalue);
g_strlcpy(text, svalue, sizeof(text));
str_to_ical_str(username, sizeof(username), text);
get_pref(PREF_USER_ID, &userid, NULL);
gethostname(text, sizeof(text));
text[sizeof(text)-1]='\0';
str_to_ical_str(hostname, sizeof(hostname), text);
}
/* Check encoding for LDIF output */
if (dumpC_type == EXPORT_TYPE_LDIF) {
get_pref(PREF_CHAR_SET, &char_set, NULL);
if (char_set < CHAR_SET_UTF) {
jp_logf(JP_LOG_WARN, _("Host character encoding is not UTF-8 based.\n Exported ldif file may not be standards-compliant\n"));
}
}
get_pref(PREF_CHAR_SET, &char_set, NULL);
for (record_num=0, tcl=cl; tcl; tcl = tcl->next, record_num++) {
mcont = &tcl->mcont;
switch (dumpC_type) {
case EXPORT_TYPE_TEXT:
utf = charset_p2newj(contact_app_info.category.name[mcont->attrib & 0x0F], 16, char_set);
printf(("Category: %s\n"), utf);
g_free(utf);
printf(("Private: %s\n"),
(mcont->attrib & dlpRecAttrSecret) ? _("Yes"):_("No"));
address_i=phone_i=IM_i=0;
for (i=0; i<NUM_CONTACT_FIELDS; i++) {
/* Special handling for birthday which doesn't have an entry
* field but instead has a flag and a tm struct field */
if ((contact_schema[i].type == ADDRESS_GUI_BIRTHDAY) &&
mcont->cont.birthdayFlag)
{
printf(("%s: "), contact_app_info.labels[contact_schema[i].record_field] ? contact_app_info.labels[contact_schema[i].record_field] : "");
birthday_str[0]='\0';
get_pref(PREF_SHORTDATE, NULL, &pref_date);
strftime(birthday_str, sizeof(birthday_str), pref_date, &(mcont->cont.birthday));
printf(("%s\n"), birthday_str);
}
if (mcont->cont.entry[contact_schema[i].record_field]) {
/* Print labels for menu selectable fields (Work, Fax, etc.) */
switch (contact_schema[i].type) {
case ADDRESS_GUI_IM_MENU_TEXT:
printf(("%s: "), contact_app_info.IMLabels[mcont->cont.IMLabel[IM_i]]);
IM_i++;
break;