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
|
/* address.c
* A module of J-Pilot http://jpilot.org
*
* Copyright (C) 1999-2001 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
*/
#include "config.h"
#include "i18n.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <pi-source.h>
#include <pi-socket.h>
#include <pi-address.h>
#include <pi-dlp.h>
#include "address.h"
#include "utils.h"
#include "log.h"
#include "prefs.h"
#include "libplugin.h"
#include "password.h"
#define ADDRESS_EOF 7
static int glob_sort_by_company;
int sort_override=0;
#ifdef JPILOT_DEBUG
int print_address_list(AddressList **al)
{
AddressList *temp_al, *prev_al, *next;
for (prev_al=NULL, temp_al=*al; temp_al;
prev_al=temp_al, temp_al=temp_al->next) {
jpilot_logf(LOG_FILE | LOG_STDOUT, "entry[0]=[%s]\n", temp_al->ma.a.entry[0]);
}
}
#endif
int address_compare(const void *v1, const void *v2)
{
char *str1, *str2;
int sort1, sort2, sort3;
AddressList **al1, **al2;
struct Address *a1, *a2;
int i;
al1=(AddressList **)v1;
al2=(AddressList **)v2;
a1=&((*al1)->ma.a);
a2=&((*al2)->ma.a);
if (glob_sort_by_company) {
sort1=2; /*company */
sort2=0; /*last name */
sort3=1; /*first name */
} else {
sort1=0; /*last name */
sort2=1; /*first name */
sort3=2; /*company */
}
/*sort_by_company: */
/*0 last, first or */
/*1 company, last */
str1=str2=NULL;
if (a1->entry[sort1] || a1->entry[sort2]) {
if (a1->entry[sort1] && a1->entry[sort2]) {
if ((str1 = (char *)malloc(strlen(a1->entry[sort1])+strlen(a1->entry[sort2])+1)) == NULL) {
return 0;
}
strcpy(str1, a1->entry[sort1]);
strcat(str1, a1->entry[sort2]);
}
if (a1->entry[sort1] && (!a1->entry[sort2])) {
if ((str1 = (char *)malloc(strlen(a1->entry[sort1])+1)) == NULL) {
return 0;
}
strcpy(str1, a1->entry[sort1]);
}
if ((!a1->entry[sort1]) && a1->entry[sort2]) {
if ((str1 = (char *)malloc(strlen(a1->entry[sort2])+1)) == NULL) {
return 0;
}
strcpy(str1, a1->entry[sort2]);
}
} else if (a1->entry[sort3]) {
if ((str1 = (char *)malloc(strlen(a1->entry[sort3])+1)) == NULL) {
return 0;
}
strcpy(str1, a1->entry[sort3]);
} else {
return -1;
}
if (a2->entry[sort1] || a2->entry[sort2]) {
if (a2->entry[sort1] && a2->entry[sort2]) {
if ((str2 = (char *)malloc(strlen(a2->entry[sort1])+strlen(a2->entry[sort2])+1)) == NULL) {
return 0;
}
strcpy(str2, a2->entry[sort1]);
strcat(str2, a2->entry[sort2]);
}
if (a2->entry[sort1] && (!a2->entry[sort2])) {
if ((str2 = (char *)malloc(strlen(a2->entry[sort1])+1)) == NULL) {
return 0;
}
strcpy(str2, a2->entry[sort1]);
}
if ((!a2->entry[sort1]) && a2->entry[sort2]) {
if ((str2 = (char *)malloc(strlen(a2->entry[sort2])+1)) == NULL) {
return 0;
}
strcpy(str2, a2->entry[sort2]);
}
} else if (a2->entry[sort3]) {
if ((str2 = (char *)malloc(strlen(a2->entry[sort3])+1)) == NULL) {
return 0;
}
strcpy(str2, a2->entry[sort3]);
} else {
free(str1);
return 1;
}
/* lower case the strings for a better compare */
for (i=strlen(str1)-1; i >= 0; i--) {
str1[i] = tolower(str1[i]);
}
for (i=strlen(str2)-1; i >= 0; i--) {
str2[i] = tolower(str2[i]);
}
i = strcoll(str2, str1);
if (str1) {
free(str1);
}
if (str2) {
free(str2);
}
return i;
}
/*
* sort_order: 0=descending, 1=ascending
*/
int address_sort(AddressList **al, int sort_order)
{
AddressList *temp_al;
AddressList **sort_al;
struct AddressAppInfo ai;
int count, i;
/* Count the entries in the list */
for (count=0, temp_al=*al; temp_al; temp_al=temp_al->next, count++) {
;
}
if (count<2) {
/* We don't have to sort less than 2 items */
return 0;
}
get_address_app_info(&ai);
glob_sort_by_company = ai.sortByCompany;
if (sort_override) {
glob_sort_by_company = !(ai.sortByCompany & 1);
}
/* Allocate an array to be qsorted */
sort_al = calloc(count, sizeof(AddressList *));
if (!sort_al) {
jpilot_logf(LOG_WARN, "address_sort(): Out of Memory\n");
return 0;
}
/* Set our array to be a list of pointers to the nodes in the linked list */
for (i=0, temp_al=*al; temp_al; temp_al=temp_al->next, i++) {
sort_al[i] = temp_al;
}
/* qsort them */
qsort(sort_al, count, sizeof(AddressList *), address_compare);
/* Put the linked list in the order of the array */
if (sort_order==SORT_ASCENDING) {
for (i=count-1; i>0; i--) {
sort_al[i]->next=sort_al[i-1];
}
sort_al[0]->next = NULL;
*al = sort_al[count-1];
} else {
/* Descending order */
sort_al[count-1]->next = NULL;
for (i=count-1; i; i--) {
sort_al[i-1]->next=sort_al[i];
}
*al = sort_al[0];
}
free(sort_al);
return 0;
}
int pc_address_write(struct Address *a, PCRecType rt, unsigned char attrib,
unsigned int *unique_id)
{
char record[65536];
int rec_len,i;
buf_rec br;
long char_set;
get_pref(PREF_CHAR_SET, &char_set, NULL);
if (char_set != CHAR_SET_ENGLISH) {
for (i = 0; i < 19; i++) {
if (a->entry[i]) charset_j2p(a->entry[i], strlen(a->entry[i])+1, char_set);
}
}
rec_len = pack_Address(a, record, 65535);
if (!rec_len) {
PRINT_FILE_LINE;
jpilot_logf(LOG_WARN, "pack_Address %s\n", _("error"));
return -1;
}
br.rt=rt;
br.attrib = attrib;
br.buf = record;
br.size = rec_len;
jp_pc_write("AddressDB", &br);
*unique_id = br.unique_id;
return 0;
}
void free_AddressList(AddressList **al)
{
AddressList *temp_al, *temp_al_next;
for (temp_al = *al; temp_al; temp_al=temp_al_next) {
free_Address(&(temp_al->ma.a));
temp_al_next = temp_al->next;
free(temp_al);
}
*al = NULL;
}
int get_address_app_info(struct AddressAppInfo *ai)
{
int num;
unsigned int rec_size;
unsigned char *buf;
long char_set;
bzero(ai, sizeof(*ai));
jp_get_app_info("AddressDB", &buf, &rec_size);
num = unpack_AddressAppInfo(ai, buf, rec_size);
if (buf) {
free(buf);
}
if (num <= 0) {
jpilot_logf(LOG_WARN, _("Error reading"), "AddressDB.pdb");
return -1;
}
get_pref(PREF_CHAR_SET, &char_set, NULL);
if (char_set != CHAR_SET_ENGLISH) {
/* Convert to character set */
int i;
for (i = 0; i < 16; i++)
if (ai->category.name[i][0] != '\0') {
charset_p2j(ai->category.name[i], 16, char_set);
}
for (i = 0; i < 19 + 3; i++)
if (ai->labels[i][0] != '\0') {
charset_p2j(ai->labels[i],16, char_set);
}
for (i = 0; i < 8; i++)
if (ai->phoneLabels[i][0] != '\0') {
charset_p2j(ai->phoneLabels[i],16, char_set);
}
}
return 0;
}
int get_addresses(AddressList **address_list, int sort_order)
{
return get_addresses2(address_list, sort_order, 1, 1, 1, CATEGORY_ALL);
}
/*
* sort_order: 0=descending, 1=ascending
* modified, deleted and private, 0 for no, 1 for yes, 2 for use prefs
*/
int get_addresses2(AddressList **address_list, int sort_order,
int modified, int deleted, int privates, int category)
{
GList *records;
GList *temp_list;
int recs_returned, i, num;
struct Address a;
AddressList *temp_a_list;
long keep_modified, keep_deleted;
int keep_priv;
long char_set;
buf_rec *br;
jpilot_logf(LOG_DEBUG, "get_addresses2()\n");
if (modified==2) {
get_pref(PREF_SHOW_MODIFIED, &keep_modified, NULL);
} else {
keep_modified = modified;
}
if (deleted==2) {
get_pref(PREF_SHOW_DELETED, &keep_deleted, NULL);
} else {
keep_deleted = deleted;
}
if (privates==2) {
keep_priv = show_privates(GET_PRIVATES, NULL);
} else {
keep_priv = privates;
}
*address_list=NULL;
recs_returned = 0;
num = jp_read_DB_files("AddressDB", &records);
/* Go to first entry in the list */
for (temp_list = records; temp_list; temp_list = temp_list->prev) {
records = temp_list;
}
for (i=0, temp_list = records; temp_list; temp_list = temp_list->next, i++) {
if (temp_list->data) {
br=temp_list->data;
} else {
continue;
}
if (!br->buf) {
continue;
}
if ( ((br->rt==DELETED_PALM_REC) && (!keep_deleted)) ||
((br->rt==MODIFIED_PALM_REC) && (!keep_modified)) ) {
continue;
}
if ((keep_priv != SHOW_PRIVATES) &&
(br->attrib & dlpRecAttrSecret)) {
continue;
}
num = unpack_Address(&a, br->buf, br->size);
if (num <= 0) {
continue;
}
if ( ((br->attrib & 0x0F) != category) && category != CATEGORY_ALL) {
continue;
}
get_pref(PREF_CHAR_SET, &char_set, NULL);
if (char_set != CHAR_SET_ENGLISH) {
for (i = 0; i < 19; i++) {
if ((a.entry[i] != NULL) && (a.entry[i][0] != '\0')) {
charset_p2j(a.entry[i], strlen(a.entry[i])+1, char_set);
}
}
}
temp_a_list = malloc(sizeof(AddressList));
if (!temp_a_list) {
jpilot_logf(LOG_WARN, "get_addresses2(): Out of memory\n");
break;
}
memcpy(&(temp_a_list->ma.a), &a, sizeof(struct Address));
temp_a_list->app_type = ADDRESS;
temp_a_list->ma.rt = br->rt;
temp_a_list->ma.attrib = br->attrib;
temp_a_list->ma.unique_id = br->unique_id;
temp_a_list->next = *address_list;
*address_list = temp_a_list;
recs_returned++;
}
jp_free_DB_records(&records);
#ifdef JPILOT_DEBUG
print_address_list(address_list);
#endif
address_sort(address_list, sort_order);
jpilot_logf(LOG_DEBUG, "Leaving get_addresses2()\n");
return recs_returned;
}
|