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
|
/*
* python-gammu - Phone communication libary
* Copyright © 2003 - 2008 Michal Čihař
*
* 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.
*
* 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.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* vim: expandtab sw=4 ts=4 sts=4:
*/
/* Calendar related conversions */
#include "pyg-config.h"
#include "convertors.h"
#include "misc.h"
char *CalendarTypeToString(GSM_CalendarNoteType p) {
char *err = "Err";
char *s = err;
switch (p) {
case GSM_CAL_REMINDER: s = strdup("REMINDER"); break;
case GSM_CAL_CALL: s = strdup("CALL"); break;
case GSM_CAL_MEETING: s = strdup("MEETING"); break;
case GSM_CAL_BIRTHDAY: s = strdup("BIRTHDAY"); break;
case GSM_CAL_MEMO: s = strdup("MEMO"); break;
case GSM_CAL_TRAVEL: s = strdup("TRAVEL"); break;
case GSM_CAL_VACATION: s = strdup("VACATION"); break;
case GSM_CAL_T_ATHL: s = strdup("T_ATHL"); break;
case GSM_CAL_T_BALL: s = strdup("T_BALL"); break;
case GSM_CAL_T_CYCL: s = strdup("T_CYCL"); break;
case GSM_CAL_T_BUDO: s = strdup("T_BUDO"); break;
case GSM_CAL_T_DANC: s = strdup("T_DANC"); break;
case GSM_CAL_T_EXTR: s = strdup("T_EXTR"); break;
case GSM_CAL_T_FOOT: s = strdup("T_FOOT"); break;
case GSM_CAL_T_GOLF: s = strdup("T_GOLF"); break;
case GSM_CAL_T_GYM: s = strdup("T_GYM"); break;
case GSM_CAL_T_HORS: s = strdup("T_HORS"); break;
case GSM_CAL_T_HOCK: s = strdup("T_HOCK"); break;
case GSM_CAL_T_RACE: s = strdup("T_RACE"); break;
case GSM_CAL_T_RUGB: s = strdup("T_RUGB"); break;
case GSM_CAL_T_SAIL: s = strdup("T_SAIL"); break;
case GSM_CAL_T_STRE: s = strdup("T_STRE"); break;
case GSM_CAL_T_SWIM: s = strdup("T_SWIM"); break;
case GSM_CAL_T_TENN: s = strdup("T_TENN"); break;
case GSM_CAL_T_TRAV: s = strdup("T_TRAV"); break;
case GSM_CAL_T_WINT: s = strdup("T_WINT"); break;
case GSM_CAL_ALARM: s = strdup("ALARM"); break;
case GSM_CAL_DAILY_ALARM: s = strdup("DAILY_ALARM"); break;
}
if (s == err) {
PyErr_Format(PyExc_ValueError, "Bad value for CalendarType from Gammu: '%d'", p);
return NULL;
}
if (s == NULL) {
PyErr_SetString(PyExc_MemoryError, "Not enough memory to allocate string");
return NULL;
}
return s;
}
GSM_CalendarNoteType StringToCalendarType(const char *s) {
if (strcmp("REMINDER", s) == 0) return GSM_CAL_REMINDER;
else if (strcmp("CALL", s) == 0) return GSM_CAL_CALL;
else if (strcmp("MEETING", s) == 0) return GSM_CAL_MEETING;
else if (strcmp("BIRTHDAY", s) == 0) return GSM_CAL_BIRTHDAY;
else if (strcmp("MEMO", s) == 0) return GSM_CAL_MEMO;
else if (strcmp("TRAVEL", s) == 0) return GSM_CAL_TRAVEL;
else if (strcmp("VACATION", s) == 0) return GSM_CAL_VACATION;
else if (strcmp("T_ATHL", s) == 0) return GSM_CAL_T_ATHL;
else if (strcmp("T_BALL", s) == 0) return GSM_CAL_T_BALL;
else if (strcmp("T_CYCL", s) == 0) return GSM_CAL_T_CYCL;
else if (strcmp("T_BUDO", s) == 0) return GSM_CAL_T_BUDO;
else if (strcmp("T_DANC", s) == 0) return GSM_CAL_T_DANC;
else if (strcmp("T_EXTR", s) == 0) return GSM_CAL_T_EXTR;
else if (strcmp("T_FOOT", s) == 0) return GSM_CAL_T_FOOT;
else if (strcmp("T_GOLF", s) == 0) return GSM_CAL_T_GOLF;
else if (strcmp("T_GYM", s) == 0) return GSM_CAL_T_GYM;
else if (strcmp("T_HORS", s) == 0) return GSM_CAL_T_HORS;
else if (strcmp("T_HOCK", s) == 0) return GSM_CAL_T_HOCK;
else if (strcmp("T_RACE", s) == 0) return GSM_CAL_T_RACE;
else if (strcmp("T_RUGB", s) == 0) return GSM_CAL_T_RUGB;
else if (strcmp("T_SAIL", s) == 0) return GSM_CAL_T_SAIL;
else if (strcmp("T_STRE", s) == 0) return GSM_CAL_T_STRE;
else if (strcmp("T_SWIM", s) == 0) return GSM_CAL_T_SWIM;
else if (strcmp("T_TENN", s) == 0) return GSM_CAL_T_TENN;
else if (strcmp("T_TRAV", s) == 0) return GSM_CAL_T_TRAV;
else if (strcmp("T_WINT", s) == 0) return GSM_CAL_T_WINT;
else if (strcmp("ALARM", s) == 0) return GSM_CAL_ALARM;
else if (strcmp("DAILY_ALARM", s) == 0) return GSM_CAL_DAILY_ALARM;
PyErr_Format(PyExc_MemoryError, "Bad value for Calendar Type '%s'", s);
return 0;
}
PyObject *CalendarToPython(const GSM_CalendarEntry *entry) {
PyObject *v;
PyObject *f;
PyObject *r;
PyObject *d;
int i;
Py_UNICODE *s;
char *t;
GSM_DateTime dt;
int ignore;
v = PyList_New(0);
if (v == NULL) return NULL;
for (i=0; i < entry->EntriesNum; i++) {
f = Py_None;
ignore = 0;
switch (entry->Entries[i].EntryType) {
case CAL_START_DATETIME:
/* Fixup date */
dt = entry->Entries[i].Date;
if (dt.Hour == 255) {
dt.Hour = 0;
}
if (dt.Minute == 255) {
dt.Minute = 0;
}
if (dt.Second == 255) {
dt.Second = 0;
}
d = BuildPythonDateTime(&dt);
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O,s:i}", "Type", "START_DATETIME", "Value", d, "AddError", (int)entry->Entries[i].AddError);
Py_DECREF(d);
break;
case CAL_END_DATETIME:
/* Fixup date */
dt = entry->Entries[i].Date;
if (dt.Year == 0) {
/* Ignore, there can be none end date. */
ignore = 1;
break;
}
if (dt.Hour == 255) {
dt.Hour = 23;
}
if (dt.Minute == 255) {
dt.Minute = 59;
}
if (dt.Second == 255) {
dt.Second = 59;
}
d = BuildPythonDateTime(&dt);
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O,s:i}", "Type", "END_DATETIME", "Value", d, "AddError", (int)entry->Entries[i].AddError);
Py_DECREF(d);
break;
case CAL_TONE_ALARM_DATETIME:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O,s:i}", "Type", "TONE_ALARM_DATETIME", "Value", d, "AddError", (int)entry->Entries[i].AddError);
Py_DECREF(d);
break;
case CAL_SILENT_ALARM_DATETIME:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O,s:i}", "Type", "SILENT_ALARM_DATETIME", "Value", d, "AddError", (int)entry->Entries[i].AddError);
Py_DECREF(d);
break;
case CAL_LAST_MODIFIED:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O,s:i}", "Type", "LAST_MODIFIED", "Value", d, "AddError", (int)entry->Entries[i].AddError);
Py_DECREF(d);
break;
case CAL_REPEAT_STARTDATE:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O,s:i}", "Type", "REPEAT_STARTDATE", "Value", d, "AddError", (int)entry->Entries[i].AddError);
Py_DECREF(d);
break;
case CAL_REPEAT_STOPDATE:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O,s:i}", "Type", "REPEAT_STOPDATE", "Value", d, "AddError", (int)entry->Entries[i].AddError);
Py_DECREF(d);
break;
case CAL_TEXT:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u,s:i}", "Type", "TEXT", "Value", s, "AddError", (int)entry->Entries[i].AddError);
free(s);
break;
case CAL_DESCRIPTION:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u,s:i}", "Type", "DESCRIPTION", "Value", s, "AddError", (int)entry->Entries[i].AddError);
free(s);
break;
case CAL_LUID:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u,s:i}", "Type", "LUID", "Value", s, "AddError", (int)entry->Entries[i].AddError);
free(s);
break;
case CAL_LOCATION:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u,s:i}", "Type", "LOCATION", "Value", s, "AddError", (int)entry->Entries[i].AddError);
free(s);
break;
case CAL_PHONE:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u,s:i}", "Type", "PHONE", "Value", s, "AddError", (int)entry->Entries[i].AddError);
free(s);
break;
case CAL_PRIVATE:
f = Py_BuildValue("{s:s,s:i,s:i}", "Type", "PRIVATE", "Value", entry->Entries[i].Number, "AddError", (int)entry->Entries[i].AddError);
break;
case CAL_CONTACTID:
f = Py_BuildValue("{s:s,s:i,s:i}", "Type", "CONTACTID", "Value", entry->Entries[i].Number, "AddError", (int)entry->Entries[i].AddError);
break;
case CAL_REPEAT_DAYOFWEEK:
f = Py_BuildValue("{s:s,s:i,s:i}", "Type", "REPEAT_DAYOFWEEK", "Value", entry->Entries[i].Number, "AddError", (int)entry->Entries[i].AddError);
break;
case CAL_REPEAT_DAY:
f = Py_BuildValue("{s:s,s:i,s:i}", "Type", "REPEAT_DAY", "Value", entry->Entries[i].Number, "AddError", (int)entry->Entries[i].AddError);
break;
case CAL_REPEAT_WEEKOFMONTH:
f = Py_BuildValue("{s:s,s:i,s:i}", "Type", "REPEAT_WEEKOFMONTH", "Value", entry->Entries[i].Number, "AddError", (int)entry->Entries[i].AddError);
break;
case CAL_REPEAT_MONTH:
f = Py_BuildValue("{s:s,s:i,s:i}", "Type", "REPEAT_MONTH", "Value", entry->Entries[i].Number, "AddError", (int)entry->Entries[i].AddError);
break;
case CAL_REPEAT_FREQUENCY:
f = Py_BuildValue("{s:s,s:i,s:i}", "Type", "REPEAT_FREQUENCY", "Value", entry->Entries[i].Number, "AddError", (int)entry->Entries[i].AddError);
break;
case CAL_REPEAT_COUNT:
f = Py_BuildValue("{s:s,s:i,s:i}", "Type", "REPEAT_COUNT", "Value", entry->Entries[i].Number, "AddError", (int)entry->Entries[i].AddError);
break;
case CAL_REPEAT_DAYOFYEAR:
f = Py_BuildValue("{s:s,s:i,s:i}", "Type", "REPEAT_DAYOFYEAR", "Value", entry->Entries[i].Number, "AddError", (int)entry->Entries[i].AddError);
break;
}
if (ignore) {
continue;
}
if (f == Py_None) {
Py_DECREF(v);
PyErr_Format(PyExc_ValueError, "Bad Calendar item type from gammu: %d", entry->Entries[i].EntryType);
return NULL;
}
if (f == NULL) {
Py_DECREF(v);
return NULL;
}
if (PyList_Append(v, f) != 0) {
Py_DECREF(f);
Py_DECREF(v);
return NULL;
}
Py_DECREF(f);
}
t = CalendarTypeToString(entry->Type);
if (t == NULL) {
Py_DECREF(v);
return NULL;
}
r = Py_BuildValue("{s:i,s:s,s:O}",
"Location", entry->Location,
"Type", t,
"Entries", v
);
free(t);
Py_DECREF(v);
return r;
}
int CalendarFromPython(PyObject *dict, GSM_CalendarEntry *entry, int needs_location) {
PyObject *o;
PyObject *item;
int len;
int i;
char *t;
char *type;
char valuetype;
if (!PyDict_Check(dict)) {
PyErr_Format(PyExc_ValueError, "Calendar entry is not a dictionary");
return 0;
}
memset(entry, 0, sizeof(entry));
if (needs_location) {
entry->Location = GetIntFromDict(dict, "Location");
if (entry->Location == INT_INVALID) return 0;
}
t = GetCharFromDict(dict, "Type");
if (t == NULL) return 0;
entry->Type = StringToCalendarType(t);
if (entry->Type == 0) return 0;
o = PyDict_GetItemString(dict, "Entries");
if (o == NULL) {
PyErr_Format(PyExc_ValueError, "Can not get string value for key Values");
return 0;
}
if (!PyList_Check(o)) {
PyErr_Format(PyExc_ValueError, "Key Values doesn't contain list");
return 0;
}
len = PyList_Size(o);
if (len > GSM_CALENDAR_ENTRIES) {
pyg_warning("Using just %i entries from list!", GSM_CALENDAR_ENTRIES);
len = GSM_CALENDAR_ENTRIES;
}
entry->EntriesNum = len;
for (i = 0; i < len ; i++) {
item = PyList_GetItem(o, i);
if (item == NULL) return 0;
if (!PyDict_Check(item)) {
PyErr_Format(PyExc_ValueError, "Element %i in Values is not dictionary", i);
return 0;
}
type = GetCharFromDict(item, "Type");
if (type == NULL) return 0;
if (strcmp("START_DATETIME", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = CAL_START_DATETIME;
} else if (strcmp("END_DATETIME", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = CAL_END_DATETIME;
} else if (strcmp("TONE_ALARM_DATETIME", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = CAL_TONE_ALARM_DATETIME;
} else if (strcmp("SILENT_ALARM_DATETIME", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = CAL_SILENT_ALARM_DATETIME;
} else if (strcmp("LAST_MODIFIED", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = CAL_LAST_MODIFIED;
} else if (strcmp("REPEAT_STARTDATE", type) == 0) {
valuetype = 'D';
entry->Entries[i].EntryType = CAL_REPEAT_STARTDATE;
} else if (strcmp("REPEAT_STOPDATE", type) == 0) {
valuetype = 'D';
entry->Entries[i].EntryType = CAL_REPEAT_STOPDATE;
} else if (strcmp("TEXT", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = CAL_TEXT;
} else if (strcmp("DESCRIPTION", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = CAL_DESCRIPTION;
} else if (strcmp("LUID", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = CAL_LUID;
} else if (strcmp("LOCATION", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = CAL_LOCATION;
} else if (strcmp("PHONE", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = CAL_PHONE;
} else if (strcmp("PRIVATE", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = CAL_PRIVATE;
} else if (strcmp("CONTACTID", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = CAL_CONTACTID;
} else if (strcmp("REPEAT_DAYOFWEEK", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = CAL_REPEAT_DAYOFWEEK;
} else if (strcmp("REPEAT_DAY", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = CAL_REPEAT_DAY;
} else if (strcmp("REPEAT_WEEKOFMONTH", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = CAL_REPEAT_WEEKOFMONTH;
} else if (strcmp("REPEAT_MONTH", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = CAL_REPEAT_MONTH;
} else if (strcmp("REPEAT_FREQUENCY", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = CAL_REPEAT_FREQUENCY;
} else if (strcmp("REPEAT_COUNT", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = CAL_REPEAT_COUNT;
} else if (strcmp("REPEAT_DAYOFYEAR", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = CAL_REPEAT_DAYOFYEAR;
} else {
PyErr_Format(PyExc_ValueError, "Element %i in Values has bad type: %s", i, type);
return 0;
}
switch (valuetype) {
case 'n':
entry->Entries[i].Number = GetIntFromDict(item, "Value");
if (entry->Entries[i].Number == INT_INVALID) return 0;
break;
case 't':
if (!CopyStringFromDict(item, "Value", GSM_PHONEBOOK_TEXT_LENGTH, entry->Entries[i].Text))
return 0;
break;
case 'D':
entry->Entries[i].Date = GetDateFromDict(item, "Value");
if (entry->Entries[i].Date.Year == -1) return 0;
break;
case 'd':
entry->Entries[i].Date = GetDateTimeFromDict(item, "Value");
if (entry->Entries[i].Date.Year == -1) return 0;
break;
}
/* Get AddError flag */
entry->Entries[i].AddError = GetIntFromDict(item, "AddError");
if (entry->Entries[i].AddError == INT_INVALID) {
entry->Entries[i].AddError = ERR_NONE;
PyErr_Clear();
}
} /* end for */
return 1;
}
|