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
|
/*
* 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:
*/
/* ToDo related conversions */
#include "pyg-config.h"
#include "convertors.h"
#include "misc.h"
char *TodoPriorityToString(GSM_ToDo_Priority p) {
char *err = "Err";
char *s = err;
switch (p) {
case GSM_Priority_High: s = strdup("High"); break;
case GSM_Priority_Medium: s = strdup("Medium"); break;
case GSM_Priority_Low: s = strdup("Low"); break;
case GSM_Priority_None: s = strdup("None"); break;
}
if (s == err) {
PyErr_Format(PyExc_ValueError, "Bad value for TodoPriority from Gammu: '%d'", p);
return NULL;
}
if (s == NULL) {
PyErr_SetString(PyExc_MemoryError, "Not enough memory to allocate string");
return NULL;
}
return s;
}
GSM_ToDo_Priority StringToTodoPriority(const char *s) {
if (strcmp("High", s) == 0) return GSM_Priority_High;
else if (strcmp("Medium", s) == 0) return GSM_Priority_Medium;
else if (strcmp("Low", s) == 0) return GSM_Priority_Low;
else if (strcmp("None", s) == 0) return GSM_Priority_None;
PyErr_Format(PyExc_MemoryError, "Bad value for Todo Priority '%s'", s);
return -1;
}
PyObject *TodoToPython(const GSM_ToDoEntry *entry) {
PyObject *v;
PyObject *f;
PyObject *r;
PyObject *d;
int i;
Py_UNICODE *s;
char *p;
char *t;
v = PyList_New(0);
if (v == NULL) return NULL;
for (i=0; i < entry->EntriesNum; i++) {
f = Py_None;
switch (entry->Entries[i].EntryType) {
case TODO_END_DATETIME:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O}", "Type", "END_DATETIME", "Value", d);
Py_DECREF(d);
break;
case TODO_START_DATETIME:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O}", "Type", "START_DATETIME", "Value", d);
Py_DECREF(d);
break;
case TODO_ALARM_DATETIME:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O}", "Type", "ALARM_DATETIME", "Value", d);
Py_DECREF(d);
break;
case TODO_SILENT_ALARM_DATETIME:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O}", "Type", "SILENT_ALARM_DATETIME", "Value", d);
Py_DECREF(d);
break;
case TODO_LAST_MODIFIED:
d = BuildPythonDateTime(&(entry->Entries[i].Date));
if (d == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:O}", "Type", "LAST_MODIFIED", "Value", d);
Py_DECREF(d);
break;
case TODO_TEXT:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u}", "Type", "TEXT", "Value", s);
free(s);
break;
case TODO_LOCATION:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u}", "Type", "LOCATION", "Value", s);
free(s);
break;
case TODO_DESCRIPTION:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u}", "Type", "DESCRIPTION", "Value", s);
free(s);
break;
case TODO_LUID:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u}", "Type", "LUID", "Value", s);
free(s);
break;
case TODO_COMPLETED:
f = Py_BuildValue("{s:s,s:i}", "Type", "COMPLETED", "Value", entry->Entries[i].Number);
break;
case TODO_PRIVATE:
f = Py_BuildValue("{s:s,s:i}", "Type", "PRIVATE", "Value", entry->Entries[i].Number);
break;
case TODO_CATEGORY:
f = Py_BuildValue("{s:s,s:i}", "Type", "CATEGORY", "Value", entry->Entries[i].Number);
break;
case TODO_CONTACTID:
f = Py_BuildValue("{s:s,s:i}", "Type", "CONTACTID", "Value", entry->Entries[i].Number);
break;
case TODO_PHONE:
s = strGammuToPython(entry->Entries[i].Text);
if (s == NULL) {
Py_DECREF(v);
return NULL;
}
f = Py_BuildValue("{s:s,s:u}", "Type", "PHONE", "Value", s);
free(s);
break;
}
if (f == Py_None) {
Py_DECREF(v);
PyErr_Format(PyExc_ValueError, "Bad ToDo 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);
}
p = TodoPriorityToString(entry->Priority);
if (p == NULL) {
Py_DECREF(v);
return NULL;
}
t = CalendarTypeToString(entry->Type);
if (t == NULL) {
free(p);
Py_DECREF(v);
return NULL;
}
r = Py_BuildValue("{s:i,s:s,s:s,s:O}",
"Location", entry->Location,
"Type", t,
"Priority", p,
"Entries", v
);
free(p);
free(t);
Py_DECREF(v);
return r;
}
int TodoFromPython(PyObject *dict, GSM_ToDoEntry *entry, int needs_location) {
PyObject *o;
PyObject *item;
int len;
int i;
char *p;
char *t;
char *type;
char valuetype;
if (!PyDict_Check(dict)) {
PyErr_Format(PyExc_ValueError, "Todo 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;
p = GetCharFromDict(dict, "Priority");
if (p == NULL) return 0;
entry->Priority = StringToTodoPriority(p);
if (entry->Priority == -1) 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_TODO_ENTRIES) {
pyg_warning("Using just %i entries from list!", GSM_TODO_ENTRIES);
len = GSM_TODO_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("END_DATETIME", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = TODO_END_DATETIME;
} else if (strcmp("START_DATETIME", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = TODO_START_DATETIME;
} else if (strcmp("COMPLETED", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = TODO_COMPLETED;
} else if (strcmp("ALARM_DATETIME", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = TODO_ALARM_DATETIME;
} else if (strcmp("SILENT_ALARM_DATETIME", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = TODO_SILENT_ALARM_DATETIME;
} else if (strcmp("LAST_MODIFIED", type) == 0) {
valuetype = 'd';
entry->Entries[i].EntryType = TODO_LAST_MODIFIED;
} else if (strcmp("LUID", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = TODO_LUID;
} else if (strcmp("LOCATION", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = TODO_LOCATION;
} else if (strcmp("DESCRIPTION", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = TODO_DESCRIPTION;
} else if (strcmp("TEXT", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = TODO_TEXT;
} else if (strcmp("PRIVATE", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = TODO_PRIVATE;
} else if (strcmp("CATEGORY", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = TODO_CATEGORY;
} else if (strcmp("CONTACTID", type) == 0) {
valuetype = 'n';
entry->Entries[i].EntryType = TODO_CONTACTID;
} else if (strcmp("PHONE", type) == 0) {
valuetype = 't';
entry->Entries[i].EntryType = TODO_PHONE;
} 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 = GetDateTimeFromDict(item, "Value");
if (entry->Entries[i].Date.Year == -1) return 0;
break;
}
} /* end for */
return 1;
}
|