/usr/include/gammu/gammu-memory.h is in libgammu-dev 1.33.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /**
* \file gammu-memory.h
* \author Michal Čihař
*
* Memory data and functions.
*/
#ifndef __gammu_memory_h
#define __gammu_memory_h
/**
* \defgroup Memory Memory
* Memory entries manipulations.
*/
#include <gammu-datetime.h>
#include <gammu-limits.h>
#include <gammu-bitmap.h>
#include <gammu-debug.h>
/**
* Enum defines ID for various phone and SIM memories.
* Phone modules can translate them to values specific for concrete models.
* Two letter codes (excluding VM and SL) are from GSM 07.07.
*
* \ingroup Memory
*/
typedef enum {
/**
* Internal memory of the mobile equipment
*/
MEM_ME = 1,
/**
* SIM card memory
*/
MEM_SM,
/**
* Own numbers
*/
MEM_ON,
/**
* Dialled calls
*/
MEM_DC,
/**
* Received calls
*/
MEM_RC,
/**
* Missed calls
*/
MEM_MC,
/**
* Combined ME and SIM phonebook
*/
MEM_MT,
/**
* Fixed dial
*/
MEM_FD,
/**
* Voice mailbox
*/
MEM_VM,
/**
* Sent SMS logs
*/
MEM_SL,
/**
* Quick dialing choices.
*/
MEM_QD
} GSM_MemoryType;
/**
* Returns string representation of a memory type.
*
* \param x Memory type to convert
*
* \return Static string.
*
* \ingroup Memory
*/
#define GSM_MemoryTypeToString(x) \
((x) == MEM_ME ? "ME" : \
((x) == MEM_SM ? "SM" : \
((x) == MEM_ON ? "ON" : \
((x) == MEM_DC ? "DC" : \
((x) == MEM_RC ? "RC" : \
((x) == MEM_MC ? "MC" : \
((x) == MEM_MT ? "MT" : \
((x) == MEM_FD ? "FD" : \
((x) == MEM_VM ? "VM" : \
((x) == MEM_QD ? "QD" : \
((x) == MEM_SL ? "SL" : "XX")))))))))))
/**
* Converts memory type from string.
*
* \param s String with memory type.
*
* \return Parsed memory type or 0 on failure.
*/
GSM_MemoryType GSM_StringToMemoryType(const char *s);
/**
* Structure contains info about number of used/free entries in phonebook
* memory.
*
* \ingroup Memory
*/
typedef struct {
/**
* Number of used entries
*/
int MemoryUsed;
/**
* Memory type
*/
GSM_MemoryType MemoryType;
/**
* Number of free entries
*/
int MemoryFree;
} GSM_MemoryStatus;
/**
* Type of specific phonebook entry. In parenthesis is specified in which
* member of @ref GSM_SubMemoryEntry value is stored.
*
* \ingroup Memory
*/
typedef enum {
/**
* General number. (Text)
*/
PBK_Number_General = 1,
/**
* Mobile number. (Text)
*/
PBK_Number_Mobile,
/**
* Fax number. (Text)
*/
PBK_Number_Fax,
/**
* Pager number. (Text)
*/
PBK_Number_Pager,
/**
* Other number. (Text)
*/
PBK_Number_Other,
/**
* Note. (Text)
*/
PBK_Text_Note,
/**
* Complete postal address. (Text)
*/
PBK_Text_Postal,
/**
* Email. (Text)
*/
PBK_Text_Email,
/*
* Second email. (Text)
*/
PBK_Text_Email2,
/**
* URL (Text)
*/
PBK_Text_URL,
/**
* Date and time of last call. (Date)
*/
PBK_Date,
/**
* Caller group. (Number)
*/
PBK_Caller_Group,
/**
* Name (Text)
*/
PBK_Text_Name,
/**
* Last name. (Text)
*/
PBK_Text_LastName,
/**
* First name. (Text)
*/
PBK_Text_FirstName,
/**
* Company. (Text)
*/
PBK_Text_Company,
/**
* Job title. (Text)
*/
PBK_Text_JobTitle,
/**
* Category. (Number, if -1 then text)
*/
PBK_Category,
/**
* Whether entry is private. (Number)
*/
PBK_Private,
/**
* Street address. (Text)
*/
PBK_Text_StreetAddress,
/**
* City. (Text)
*/
PBK_Text_City,
/**
* State. (Text)
*/
PBK_Text_State,
/**
* Zip code. (Text)
*/
PBK_Text_Zip,
/**
* Country. (Text)
*/
PBK_Text_Country,
/**
* Custom information 1. (Text)
*/
PBK_Text_Custom1,
/**
* Custom information 2. (Text)
*/
PBK_Text_Custom2,
/**
* Custom information 3. (Text)
*/
PBK_Text_Custom3,
/**
* Custom information 4. (Text)
*/
PBK_Text_Custom4,
/**
* Ringtone ID. (Number)
*/
PBK_RingtoneID,
/**
* Picture ID. (Number)
*/
PBK_PictureID,
/**
* User ID. (Text)
*/
PBK_Text_UserID,
/**
* Length of call (Number)
*/
PBK_CallLength,
/**
* LUID - Unique Identifier used for synchronisation (Text)
*/
PBK_Text_LUID,
/**
* Date of last modification (Date)
*/
PBK_LastModified,
/**
* Nick name (Text)
*/
PBK_Text_NickName,
/**
* Formal name (Text)
*/
PBK_Text_FormalName,
/**
* Picture name (on phone filesystem). (Text)
*/
PBK_Text_PictureName,
/**
* Push-to-talk ID (Text)
*/
PBK_PushToTalkID,
/**
* Favorite messaging number. (Text)
*/
PBK_Number_Messaging,
/**
* Photo (Picture).
*/
PBK_Photo,
/**
* Second name. (Text)
*/
PBK_Text_SecondName,
/**
* VOIP address (Text).
*/
PBK_Text_VOIP,
/**
* SIP address (Text).
*/
PBK_Text_SIP,
/**
* DTMF (Text).
*/
PBK_Text_DTMF,
/**
* Video number. (Text)
*/
PBK_Number_Video,
/**
* See What I See address. (Text)
*/
PBK_Text_SWIS,
/**
* Wireless Village user ID. (Text)
*/
PBK_Text_WVID,
/**
* Name prefix (Text)
*/
PBK_Text_NamePrefix,
/**
* Name suffix (Text)
*/
PBK_Text_NameSuffix,
} GSM_EntryType;
/**
* Location of memory contact.
*
* \ingroup Memory
*/
typedef enum {
/**
* No/Unknown location.
*/
PBK_Location_Unknown = 0,
/**
* Home
*/
PBK_Location_Home,
/**
* Work
*/
PBK_Location_Work,
} GSM_EntryLocation;
/**
* One value of phonebook memory entry.
*
* \ingroup Memory
*/
typedef struct {
/**
* Type of entry.
*/
GSM_EntryType EntryType;
/**
* Location for the entry.
*/
GSM_EntryLocation Location;
/**
* Text of entry (if applicable, see @ref GSM_EntryType).
*/
GSM_DateTime Date;
/**
* Number of entry (if applicable, see @ref GSM_EntryType).
*/
int Number;
/**
* Voice dialling tag.
*/
int VoiceTag;
int SMSList[20];
int CallLength;
/**
* During adding SubEntry Gammu can return here info, if it was done OK
*/
GSM_Error AddError;
/**
* Text of entry (if applicable, see @ref GSM_EntryType).
*/
unsigned char Text[(GSM_PHONEBOOK_TEXT_LENGTH + 1) * 2];
/**
* Picture data.
*/
GSM_BinaryPicture Picture;
} GSM_SubMemoryEntry;
/**
* Structure for saving phonebook entries.
*
* \ingroup Memory
*/
typedef struct {
/**
* Used memory for phonebook entry
*/
GSM_MemoryType MemoryType;
/**
* Used location for phonebook entry
*/
int Location;
/**
* Number of SubEntries in Entries table.
*/
int EntriesNum;
/**
* Values of SubEntries.
*/
GSM_SubMemoryEntry Entries[GSM_PHONEBOOK_ENTRIES];
} GSM_MemoryEntry;
/**
* Structure for saving speed dials.
*
* \ingroup Memory
*/
typedef struct {
/**
* Number of speed dial: 2,3..,8,9
*/
int Location;
/**
* ID of phone number used in phonebook entry
*/
int MemoryNumberID;
/**
* Memory, where is saved used phonebook entry
*/
GSM_MemoryType MemoryType;
/**
* Location in memory, where is saved used phonebook entry
*/
int MemoryLocation;
} GSM_SpeedDial;
/**
* Gets memory (phonebooks or calls) status (eg. number of used and
* free entries).
*
* \param s State machine pointer.
* \param status Storage for status information, MemoryType has to be
* set.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_GetMemoryStatus(GSM_StateMachine * s, GSM_MemoryStatus * status);
/**
* Reads entry from memory (phonebooks or calls). Which entry should
* be read is defined in entry.
*
* \param s State machine pointer.
* \param entry Storage for retrieved entry, MemoryType and Location has
* to be set.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_GetMemory(GSM_StateMachine * s, GSM_MemoryEntry * entry);
/**
* Reads entry from memory (phonebooks or calls). Which entry should
* be read is defined in entry. This can be easily used for reading all entries.
*
* \param s State machine pointer.
* \param entry Storage for retrieved entry. MemoryType has to be set
* for first call (with start set to TRUE), for subsequent calls
* Location has to stay intact from previous reading.
* \param start Whether we should start from beginning.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_GetNextMemory(GSM_StateMachine * s, GSM_MemoryEntry * entry,
gboolean start);
/**
* Sets memory (phonebooks or calls) entry.
*
* \param s State machine pointer.
* \param entry Entry to set, Location and MemoryType has to be set.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_SetMemory(GSM_StateMachine * s, GSM_MemoryEntry * entry);
/**
* Adds memory (phonebooks or calls) entry.
*
* \param s State machine pointer.
* \param entry Entry to add, Location is ignored, MemoryType has to be
* set.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_AddMemory(GSM_StateMachine * s, GSM_MemoryEntry * entry);
/**
* Deletes memory (phonebooks or calls) entry.
*
* \param s State machine pointer.
* \param entry Entry to delete, Location and MemoryType has to be set.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_DeleteMemory(GSM_StateMachine * s, GSM_MemoryEntry * entry);
/**
* Deletes all memory (phonebooks or calls) entries of specified type.
*
* \param s State machine pointer.
* \param MemoryType Where to delete all entries.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_DeleteAllMemory(GSM_StateMachine * s, GSM_MemoryType MemoryType);
/**
* Gets speed dial.
*
* \param s State machine pointer.
* \param Speed Storage for speed dial, Location has to be set.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_GetSpeedDial(GSM_StateMachine * s, GSM_SpeedDial * Speed);
/**
* Sets speed dial.
*
* \param s State machine pointer.
* \param Speed Sspeed dial to set.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_SetSpeedDial(GSM_StateMachine * s, GSM_SpeedDial * Speed);
/**
* Returns name of entry. It might be possibly concatenated from first
* and last names.
*
* \param entry Entry to process.
*
* \return Static unicode string containing name.
*
* \ingroup Memory
*/
unsigned char *GSM_PhonebookGetEntryName(const GSM_MemoryEntry * entry);
/**
* Finds default name, number and group for entry.
*
* \param entry Entry to process.
* \param Name Output index of name.
* \param Number Output index of number.
* \param Group Output index of group.
*
* \ingroup Memory
*/
void GSM_PhonebookFindDefaultNameNumberGroup(const GSM_MemoryEntry * entry,
int *Name, int *Number,
int *Group);
/**
* Types of vCard.
*
* \ingroup Memory
*/
typedef enum {
/**
* vCard 1.0 hacked for Nokia.
*/
Nokia_VCard10 = 1,
/**
* vCard 2.1 hacked for Nokia.
*/
Nokia_VCard21,
/**
* vCard 1.0 hacked for Sony-Ericsson (should be standard
* vCard).
*/
SonyEricsson_VCard10,
/**
* vCard 2.1 hacked for Sony-Ericsson (should be standard
* vCard).
*/
SonyEricsson_VCard21,
/**
* vCard 2.1 hacked for Sony-Ericsson (should be standard
* vCard) from phone (no parsing of location and memory type).
*/
SonyEricsson_VCard21_Phone,
} GSM_VCardVersion;
/**
* Encodes memory entry to vCard.
*
* \param di Pointer to debugging description.
* \param[out] Buffer Buffer to store vCard text.
* \param[in] buff_len Size of output buffer.
* \param[in,out] Pos Position in output buffer.
* \param[in,out] pbk Phonebook data, AddError will be set on non
* converted entries.
* \param[in] header Whether to include vCard header in output.
* \param[in] Version What vCard version to create.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_EncodeVCARD(GSM_Debug_Info * di, char *Buffer,
const size_t buff_len, size_t * Pos,
GSM_MemoryEntry * pbk, const gboolean header,
const GSM_VCardVersion Version);
/**
* Decodes memory entry from vCard.
*
* \param di Pointer to debugging description.
* \param[in] Buffer Buffer to readCard text.
* \param[in,out] Pos Position in output buffer.
* \param[out] Pbk Phonebook data read from vCard.
* \param[in] Version What vCard version to parse.
*
* \return Error code.
*
* \ingroup Memory
*/
GSM_Error GSM_DecodeVCARD(GSM_Debug_Info * di, char *Buffer, size_t * Pos,
GSM_MemoryEntry * Pbk,
const GSM_VCardVersion Version);
/**
* Frees any dynamically allocated memory inside memory
* entry structure.
*
* \param[in] Entry Pointer to memory entry to process.
*/
void GSM_FreeMemoryEntry(GSM_MemoryEntry * Entry);
#endif
/* Editor configuration
* vim: noexpandtab sw=8 ts=8 sts=8 tw=72:
*/
|