forked from juddmon/jpilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.h
584 lines (466 loc) · 17.8 KB
/
utils.h
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
/*******************************************************************************
* utils.h
* A module of J-Pilot http://jpilot.org
*
* Copyright (C) 1999-2014 by Judd Montgomery
*
* 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; version 2 of the License.
*
* 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
******************************************************************************/
#ifndef __UTILS_H__
#define __UTILS_H__
#include <time.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <gtk/gtk.h>
#include <pi-datebook.h>
#include <pi-address.h>
#include <pi-todo.h>
#include <pi-memo.h>
#include <pi-file.h>
#include <pi-calendar.h>
#include "jp-pi-contact.h"
#include "libplugin.h"
#include "japanese.h"
#include "cp1250.h"
#include "russian.h"
#define PRINT_FILE_LINE printf("%s line %d\n", __FILE__, __LINE__)
#ifdef ENABLE_PROMETHEON
# define PN "CoPilot"
# define EPN "copilot"
#else
# define PN "J-Pilot"
# define EPN "jpilot"
#endif
/* PRODID string for ical export */
#define FPI_STRING "-//Judd Montgomery//NONSGML "PN" "VERSION"//EN"
/* This is how often the clock updates in milliseconds */
#define CLOCK_TICK 1000
/* How clist widget should appear for main apps */
#define SHADOW GTK_SHADOW_ETCHED_OUT
/* Define the maximum length of a category name
* when expressed in Pilot character set (assuming 15
* character plus a delimiter) or in host character
* set (might be 50 or more if UTF-8).
* Note : host length is temporarily kept as 16 until all
* consequences are identified. In the meantime category
* names may be (hopefully safely) truncated. */
#define NUM_CATEGORIES 16
#define HOSTCAT_NAME_SZ 16
#define PILOTCAT_NAME_SZ 16
/* Constant used by J-Pilot to indicate "All" category */
#define CATEGORY_ALL 300
/* Used to mark the entry in the clist to add a record */
#define CLIST_NEW_ENTRY_DATA 100
#define CLIST_ADDING_ENTRY_DATA 101
#define CLIST_MIN_DATA 199
#define DIALOG_SAID_1 454
#define DIALOG_SAID_PRINT 454
#define DIALOG_SAID_FOURTH 454
#define DIALOG_SAID_2 455
#define DIALOG_SAID_LAST 455
#define DIALOG_SAID_3 456
#define DIALOG_SAID_CANCEL 456
#define DIALOG_SAID_4 457
/* Repeat event dialog */
#define DIALOG_SAID_RPT_CURRENT 454
#define DIALOG_SAID_RPT_FUTURE 455
#define DIALOG_SAID_RPT_ALL 456
#define DIALOG_SAID_RPT_CANCEL 457
/* Import dialog */
#define DIALOG_SAID_IMPORT_YES 455
#define DIALOG_SAID_IMPORT_ALL 456
#define DIALOG_SAID_IMPORT_SKIP 457
#define DIALOG_SAID_IMPORT_QUIT 458
#define DIALOG_INFO 1
#define DIALOG_QUESTION 2
#define DIALOG_ERROR 3
#define DIALOG_WARNING 4
#define CAL_DONE 100
#define CAL_CANCEL 101
#define PIXMAP_NOTE 100
#define PIXMAP_ALARM 101
#define PIXMAP_BOX_CHECK 102
#define PIXMAP_BOX_CHECKED 103
#define PIXMAP_FLOAT_CHECK 104
#define PIXMAP_FLOAT_CHECKED 105
#define PIXMAP_SDCARD 106
#define SORT_ASCENDING 100
#define SORT_DESCENDING 101
/* Import defines */
#define MAX_IMPORT_TYPES 10 /* Must be more than the following types */
#define IMPORT_TYPE_UNKNOWN 99
#define IMPORT_TYPE_TEXT 100
#define IMPORT_TYPE_DAT 101
#define IMPORT_TYPE_CSV 102
#define IMPORT_TYPE_XML 103
/* Export defines */
#define EXPORT_TYPE_UNKNOWN 99
#define EXPORT_TYPE_TEXT 100
#define EXPORT_TYPE_DAT 101
#define EXPORT_TYPE_CSV 102
#define EXPORT_TYPE_XML 103
#define EXPORT_TYPE_VCARD 104
#define EXPORT_TYPE_VCARD_GMAIL 105
#define EXPORT_TYPE_ICALENDAR 106
#define EXPORT_TYPE_LDIF 107
#define EXPORT_TYPE_BFOLDERS 108
#define EXPORT_TYPE_KEEPASSX 109
/* DAT file types */
#define DAT_DATEBOOK_FILE 10
#define DAT_ADDRESS_FILE 11
#define DAT_TODO_FILE 12
#define DAT_MEMO_FILE 13
/* Pilot-link 0.12 is broken and missing pi_uid_t */
typedef recordid_t pi_uid_t;
/* Unique ID used to locate a record, say after a search or GUI update */
extern unsigned int glob_find_id;
typedef enum {
DATEBOOK = 100L,
ADDRESS,
TODO,
MEMO,
CALENDAR,
CONTACTS,
TASKS,
MEMOS,
REDRAW
} AppType;
typedef struct {
PCRecType rt;
unsigned int unique_id;
unsigned char attrib;
struct Appointment appt;
} MyAppointment;
typedef struct AppointmentList_s {
AppType app_type;
struct AppointmentList_s *next;
MyAppointment mappt;
} AppointmentList;
typedef struct {
PCRecType rt;
unsigned int unique_id;
unsigned char attrib;
struct Address addr;
} MyAddress;
typedef struct AddressList_s {
AppType app_type;
struct AddressList_s *next;
MyAddress maddr;
} AddressList;
typedef struct {
PCRecType rt;
unsigned int unique_id;
unsigned char attrib;
struct ToDo todo;
} MyToDo;
typedef struct ToDoList_s {
AppType app_type;
struct ToDoList_s *next;
MyToDo mtodo;
} ToDoList;
typedef struct {
PCRecType rt;
unsigned int unique_id;
unsigned char attrib;
struct Memo memo;
} MyMemo;
typedef struct MemoList_s {
AppType app_type;
struct MemoList_s *next;
MyMemo mmemo;
} MemoList;
/* New OS PIM applications in OS 5.x */
/* Contacts */
typedef struct {
PCRecType rt;
unsigned int unique_id;
unsigned char attrib;
struct Contact cont;
} MyContact;
typedef struct ContactList_s {
AppType app_type;
struct ContactList_s *next;
MyContact mcont;
} ContactList;
/* Calendar */
typedef struct {
PCRecType rt;
unsigned int unique_id;
unsigned char attrib;
struct CalendarEvent cale;
} MyCalendarEvent;
typedef struct CalendarEventList_s {
AppType app_type;
struct CalendarEventList_s *next;
MyCalendarEvent mcale;
} CalendarEventList;
struct search_record
{
AppType app_type;
int plugin_flag;
unsigned int unique_id;
struct search_record *next;
};
struct sorted_cats
{
char Pcat[32];
int cat_num;
};
/* utils.c: The subroutines below are all from utils.c */
/* Takes an array of database names and changes the names
* to the new PIM names */
void rename_dbnames(char dbname[][32]);
/* Return usage string that must be freed by the caller */
void fprint_usage_string(FILE *out);
int cat_compare(const void *v1, const void *v2);
int get_timeout_interval(void);
gint timeout_sync_up(gpointer data);
gint timeout_date(gpointer data);
int get_pixmaps(GtkWidget *widget,
int which_one,
GdkPixmap **out_pixmap,
GdkBitmap **out_mask);
int check_hidden_dir(void);
int read_gtkrc_file(void);
int get_home_file_name(const char *file, char *full_name, int max_size);
int unpack_db_header(DBHeader *dbh, unsigned char *buffer);
int find_next_offset(mem_rec_header *mem_rh, long fpos,
unsigned int *next_offset,
unsigned char *attrib, unsigned int *unique_id);
/*The VP is a pointer to MyAddress, MyAppointment, etc. */
int delete_pc_record(AppType app_type, void *VP, int flag);
int undelete_pc_record(AppType app_type, void *VP, int flag);
void get_month_info(int month, int day, int year, int *dow, int *ndim);
void free_mem_rec_header(mem_rec_header **mem_rh);
void print_string(char *str, int len);
int get_app_info(char *DB_name, unsigned char **buf, int *buf_size);
int cleanup_pc_files(void);
int setup_sync(unsigned int flags);
/* Returns the number of the button that was pressed */
int dialog_generic(GtkWindow *main_window,
char *title, int type,
char *text, int nob, char *button_text[]);
/*
* Widget must be some widget used to get the main window from.
* The main window passed in would be fastest.
* This just calls dialog_generic with an OK button.
*/
int dialog_generic_ok(GtkWidget *widget,
char *title, int type, char *text);
/*
* Widget must be some widget used to get the main window from.
* The main window passed in would be fastest.
* changed is MODIFY_FLAG, or NEW_FLAG
*/
int dialog_save_changed_record(GtkWidget *widget, int changed);
int dialog_save_changed_record_with_cancel(GtkWidget *widget, int changed);
/* mon 0-11
* day 1-31
* year (year - 1900)
* This function will bring up the cal at mon, day, year
* After a new date is selected it will return mon, day, year
*/
int cal_dialog(GtkWindow *main_window,
const char *title, int monday_is_fdow,
int *mon, int *day, int *year);
void set_bg_rgb_clist_row(GtkWidget *clist, int row, int r, int g, int b);
void set_fg_rgb_clist_cell(GtkWidget *clist, int row, int col, int r, int g, int b);
void entry_set_multiline_truncate(GtkEntry *entry, gboolean value);
void clist_clear(GtkCList *clist);
void set_tooltip(int show_tooltip,
GtkTooltips *tooltips,
GtkWidget *widget,
const gchar *tip_text,
const gchar *tip_private);
void clist_select_row(GtkCList *clist,
int row,
int column);
int clist_find_id(GtkWidget *clist,
unsigned int unique_id,
int *found_at);
int check_copy_DBs_to_home(void);
int verify_csv_header(const char *header, int num_fields, const char *file_name);
void free_search_record_list(struct search_record **sr);
/* Copy src string into dest while escaping quotes with double quotes.
* dest could be as long as strlen(src)*2.
* Return value is the number of chars written to dest. */
int str_to_csv_str(char *dest, char *src);
/*
* Copy src string into dest while escaping carriage returns with <br/>
* dest could be as long as strlen(src)*5.
* Return value is the number of chars written to dest.
*/
int str_to_keepass_str(char *dest, char *src);
/* Copy src string into dest while escaping carriage returns,
* backslashes, commas and semicolons. Also do line wrapping.
* dest could be as long as strlen(src) * 2 + strlen(src) / 30.
* Return value is the number of chars written to dest. */
int str_to_ical_str(char *, int, char *);
/* Same as str_to_ical_str() except doesn't escape semicolons. */
int str_to_vcard_str(char *, int, char *);
/* Parse the string and replace CR and LFs with spaces */
void remove_cr_lfs(char *str);
/* Parse the string and replace CR and LFs with spaces
* a null is written if len is reached */
void lstrncpy_remove_cr_lfs(char *dest, char *src, int len);
/* Output LDIF format (RFC 2849) to file.
* Name is name of item (e.g. "cn")
* fmt ... is like printf. */
void ldif_out(FILE *f, const char *name, const char *fmt, ...);
void cleanup_path(char *path);
int add_days_to_date(struct tm *date, int n);
int sub_days_from_date(struct tm *date, int n);
int add_months_to_date(struct tm *date, int n);
int sub_months_from_date(struct tm *date, int n);
int add_years_to_date(struct tm *date, int n);
int sub_years_from_date(struct tm *date, int n);
time_t mktime_dst_adj(struct tm *tm);
int dateToDays(struct tm *tm1);
int find_prev_next(struct CalendarEvent *cale,
time_t adv,
struct tm *date1,
struct tm *date2,
struct tm *tm_prev,
struct tm *tm_next,
int *prev_found,
int *next_found);
int find_next_rpt_event(struct CalendarEvent *cale,
struct tm *srch_start_tm,
struct tm *next_tm);
/* These are in utils.c for now */
/*
* DB_name should be without filename ext, e.g. MemoDB
* num is the number of records counted returned. */
int pdb_file_count_recs(char *DB_name, int *num);
/* DB_name should be without filename ext, e.g. MemoDB
* uid_in the the unique ID to remove from the pdb file */
int pdb_file_delete_record_by_id(char *DB_name, pi_uid_t uid_in);
/* DB_name should be without filename ext, e.g. MemoDB
* uid_in the the unique ID to modify from the pdb file
* the other parameters are set in the pdb file for this record. */
int pdb_file_modify_record(char *DB_name, void *record_in, int size_in,
int attr_in, int cat_in, pi_uid_t uid_in);
/* DB_name should be without filename ext, e.g. MemoDB
* uid is unique id in
* bufp is a copy of the raw record (unpacked) and should be freed by caller
* sizep is size of bufp returned
* idxp is the index in the file rec was found
* attrp is the attributes
* catp is the category (index) */
int pdb_file_read_record_by_id(char *DB_name,
pi_uid_t uid,
void **bufp, size_t *sizep, int *idxp,
int *attrp, int * catp);
/* DB_name should be without filename ext, e.g. MemoDB
* bufp is the packed app info block
* size_in is the size of bufp */
int pdb_file_write_app_block(char *DB_name, void *bufp, size_t size_in);
/* This copies the database (pdb, or prc) and writes the DBInfo privided
* since there is no other way to set it in a file. */
int pdb_file_write_dbinfo(char *DB_name, struct DBInfo *Pinfo_in);
void append_anni_years(char *desc, int max, struct tm *date,
struct Appointment *a, struct CalendarEvent *cale);
int get_highlighted_today(struct tm *date);
int make_category_menu(GtkWidget **category_menu,
GtkWidget **cat_menu_item,
struct sorted_cats *sort_l,
void (*selection_callback)
(GtkWidget *item, int selection),
int add_an_all_item,
int add_edit_cat_item);
int jp_copy_file(char *src, char *dest);
FILE *jp_open_home_file(const char *filename, const char *mode);
int jp_close_home_file(FILE *pc_in);
/* Routines used for i18n string manipulation */
void multibyte_safe_strncpy(char *dst, char *src, size_t len);
char *multibyte_safe_memccpy(char *dst, const char *src, int c, size_t len);
/* host character set of J-Pilot (j) to Palm character set (p) */
void charset_j2p(char *buf, int max_len, long char_set);
/* Palm character set (p) to host character set of J-Pilot (j) */
void charset_p2j(char *buf, int max_len, int char_set);
char *charset_p2newj(const char *buf, int max_len, int char_set);
/* Versions of character conversion routines for plugins */
void jp_charset_j2p(char *buf, int max_len);
void jp_charset_p2j(char *buf, int max_len);
char* jp_charset_p2newj(const char *buf, int max_len);
size_t jp_strftime(char *s, size_t max, const char *format, const struct tm *tm);
/******************************************************************************/
/* search_gui.c */
void cb_search_gui(GtkWidget *widget, gpointer data);
/* install_gui.c */
int install_gui(GtkWidget *main_window, int w, int h, int x, int y);
int install_append_line(const char *line);
/* import_gui.c */
void import_gui(GtkWidget *main_window, GtkWidget *main_pane,
char *type_desc[], int type_int[],
int (*import_callback)(GtkWidget *parent_window,
const char *file_path, int type));
int import_record_ask(GtkWidget *main_window, GtkWidget *pane,
char *text, struct CategoryAppInfo *cai,
char *old_cat_name,
int priv, int suggested_cat_num, int *new_cat_num);
/* dat.c */
/* Returns a dat type, or 0 */
int dat_check_if_dat_file(FILE *in);
int dat_get_appointments(FILE *in, AppointmentList **alist, struct CategoryAppInfo *ai);
int dat_get_addresses(FILE *in, AddressList **addrlist, struct CategoryAppInfo *ai);
int dat_get_todos(FILE *in, ToDoList **todolist, struct CategoryAppInfo *ai);
int dat_get_memos(FILE *in, MemoList **memolist, struct CategoryAppInfo *ai);
/* jpilot.c */
void cb_app_button(GtkWidget *widget, gpointer data);
void get_compile_options(char *string, int len);
void call_plugin_gui(int number, int unique_id);
void plugin_gui_refresh(int unique_id);
/* datebook_gui.c */
int datebook_gui(GtkWidget *vbox, GtkWidget *hbox);
int datebook_gui_cleanup(void);
int datebook_refresh(int first, int do_init);
void datebook_gui_setdate(int year, int month, int day);
/* address_gui.c */
int address_gui(GtkWidget *vbox, GtkWidget *hbox);
int address_gui_cleanup(void);
int address_refresh(void);
int address_cycle_cat(void);
/* todo_gui.c */
int todo_gui(GtkWidget *vbox, GtkWidget *hbox);
int todo_gui_cleanup(void);
int todo_refresh(void);
int todo_cycle_cat(void);
/* memo_gui.c */
int memo_gui(GtkWidget *vbox, GtkWidget *hbox);
int memo_gui_cleanup(void);
int memo_refresh(void);
int memo_cycle_cat(void);
/* monthview_gui.c */
void monthview_gui(struct tm *date);
/* weekview_gui.c */
void weekview_gui(struct tm *date_in);
/* dialer.c */
int dialog_dial(GtkWindow *main_window, char *string, char *ext);
/* category.c */
/*
* widget is a widget inside the main window used to get main window handle
* db_name should be without filename ext, e.g. MemoDB
* cai is the category app info. This should be unpacked by the user since
* category unpack functions are database specific. */
int edit_cats(GtkWidget *widget, char *db_name, struct CategoryAppInfo *cai);
/* This changes every record with index old_index and changes it to new_index
* returns the number of record's categories changed. */
int pdb_file_change_indexes(char *DB_name, int old_index, int new_index);
int pdb_file_swap_indexes(char *DB_name, int old_cat, int new_cat);
int edit_cats_change_cats_pc3(char *DB_name, int old_cat, int new_cat);
int edit_cats_swap_cats_pc3(char *DB_name, int old_cat, int new_cat);
int edit_cats_change_cats_pdb(char *DB_name, int old_cat, int new_cat);
#endif