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 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
|
/** MySpaceIM protocol messages
*
* \author Jeff Connelly
*
* Copyright (C) 2007, Jeff Connelly <jeff2@soc.pidgin.im>
*
* 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, or
* (at your option) any later version.
*
* 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 Street, Fifth Floor, Boston, MA 02111-1301 USA
*/
#include "myspace.h"
#include "message.h"
static void msim_msg_debug_string_element(gpointer data, gpointer user_data);
/**
* Escape codes and associated replacement text, used for protocol message
* escaping and unescaping.
*/
static struct MSIM_ESCAPE_REPLACEMENT {
gchar *code;
gchar text;
} msim_escape_replacements[] = {
{ "/1", '/' },
{ "/2", '\\' },
/* { "/3", "|" }, */ /* Not used here -- only for within arrays */
{ NULL, 0 }
};
/**
* Escape a protocol message.
*
* @return The escaped message. Caller must g_free().
*/
gchar *
msim_escape(const gchar *msg)
{
GString *gs;
guint i, j;
guint msg_len;
gs = g_string_new("");
msg_len = strlen(msg);
for (i = 0; i < msg_len; ++i) {
struct MSIM_ESCAPE_REPLACEMENT *replacement;
gchar *replace;
replace = NULL;
/* Check for characters that need to be escaped, and escape them. */
for (j = 0; (replacement = &msim_escape_replacements[j]) &&
replacement->code != NULL; ++j) {
if (msg[i] == replacement->text) {
replace = replacement->code;
break;
}
}
if (replace) {
g_string_append(gs, replace);
} else {
g_string_append_c(gs, msg[i]);
}
}
#ifdef MSIM_DEBUG_ESCAPE
purple_debug_info("msim", "msim_escape: msg=%s, ret=%s\n", msg, gs->str);
#endif
return g_string_free(gs, FALSE);
}
/**
* Unescape a protocol message.
*
* @return The unescaped message, caller must g_free().
*/
gchar *
msim_unescape(const gchar *msg)
{
GString *gs;
guint i, j;
guint msg_len;
gs = g_string_new("");
msg_len = strlen(msg);
for (i = 0; i < msg_len; ++i) {
struct MSIM_ESCAPE_REPLACEMENT *replacement;
gchar replace;
replace = msg[i];
for (j = 0; (replacement = &msim_escape_replacements[j]) &&
replacement->code != NULL; ++j) {
if (msg[i] == replacement->code[0] &&
i + 1 < msg_len &&
msg[i + 1] == replacement->code[1]) {
replace = replacement->text;
++i;
break;
}
}
g_string_append_c(gs, replace);
}
#ifdef MSIM_DEBUG_ESCAPE
purple_debug_info("msim", "msim_unescape: msg=%s, ret=%s\n", msg, gs->str);
#endif
return g_string_free(gs, FALSE);
}
/**
* Create a new message from va_list and its first argument.
*
* @param first_key The first argument (a key), or NULL to take all arguments
* from argp.
* @param argp A va_list of variadic arguments, already started with va_start().
* @return New MsimMessage *, must be freed with msim_msg_free().
*
* For internal use - users probably want msim_msg_new() or msim_send().
*/
static MsimMessage *
msim_msg_new_v(gchar *first_key, va_list argp)
{
gchar *key, *value;
MsimMessageType type;
MsimMessage *msg;
gboolean first;
GString *gs;
GList *gl;
MsimMessage *dict;
/* Begin with an empty message. */
msg = NULL;
/* First parameter can be given explicitly. */
first = first_key != NULL;
/* Read key, type, value triplets until NULL. */
do {
if (first) {
key = first_key;
first = FALSE;
} else {
key = va_arg(argp, gchar *);
if (!key) {
break;
}
}
type = va_arg(argp, int);
/* Interpret variadic arguments. */
switch (type) {
case MSIM_TYPE_INTEGER:
case MSIM_TYPE_BOOLEAN:
msg = msim_msg_append(msg, key, type, GUINT_TO_POINTER(va_arg(argp, int)));
break;
case MSIM_TYPE_STRING:
value = va_arg(argp, char *);
g_return_val_if_fail(value != NULL, FALSE);
msg = msim_msg_append(msg, key, type, value);
break;
case MSIM_TYPE_BINARY:
gs = va_arg(argp, GString *);
g_return_val_if_fail(gs != NULL, FALSE);
/* msim_msg_free() will free this GString the caller created. */
msg = msim_msg_append(msg, key, type, gs);
break;
case MSIM_TYPE_LIST:
gl = va_arg(argp, GList *);
g_return_val_if_fail(gl != NULL, FALSE);
msg = msim_msg_append(msg, key, type, gl);
break;
case MSIM_TYPE_DICTIONARY:
dict = va_arg(argp, MsimMessage *);
g_return_val_if_fail(dict != NULL, FALSE);
msg = msim_msg_append(msg, key, type, dict);
break;
default:
purple_debug_info("msim", "msim_send: unknown type %d\n", type);
break;
}
} while(key);
return msg;
}
/**
* Create a new MsimMessage.
*
* @param first_key The first key in the sequence, or NULL for an empty message.
* @param ... A sequence of gchar* key/type/value triplets, terminated with NULL.
*
* See msim_msg_append() documentation for details on types.
*/
MsimMessage *
msim_msg_new(gchar *first_key, ...)
{
MsimMessage *ret = NULL;
va_list argp;
if (first_key) {
va_start(argp, first_key);
ret = msim_msg_new_v(first_key, argp);
va_end(argp);
}
return ret;
}
/**
* Pack a string using the given GFunc and seperator.
* Used by msim_msg_dump() and msim_msg_pack().
*/
static gchar *
msim_msg_pack_using(MsimMessage *msg,
GFunc gf,
const gchar *sep,
const gchar *begin, const gchar *end)
{
int num_items;
gchar **strings;
gchar **strings_tmp;
gchar *joined;
gchar *final;
int i;
g_return_val_if_fail(msg != NULL, NULL);
num_items = g_list_length(msg);
/* Add one for NULL terminator for g_strjoinv(). */
strings = (gchar **)g_new0(gchar *, num_items + 1);
strings_tmp = strings;
g_list_foreach(msg, gf, &strings_tmp);
joined = g_strjoinv(sep, strings);
final = g_strconcat(begin, joined, end, NULL);
g_free(joined);
/* Clean up. */
for (i = 0; i < num_items; ++i) {
g_free(strings[i]);
}
g_free(strings);
return final;
}
/**
* Return a human-readable string of the message.
*
* @return A new gchar *, must be g_free()'d.
*/
static gchar *
msim_msg_dump_to_str(MsimMessage *msg)
{
gchar *debug_str;
if (!msg) {
debug_str = g_strdup("<MsimMessage: empty>");
} else {
debug_str = msim_msg_pack_using(msg, msim_msg_debug_string_element,
"\n", "<MsimMessage: \n", "\n/MsimMessage>");
}
return debug_str;
}
/**
* Store a human-readable string describing the element.
*
* @param data Pointer to an MsimMessageElement.
* @param user_data
*/
static void
msim_msg_debug_string_element(gpointer data, gpointer user_data)
{
MsimMessageElement *elem;
gchar *string;
GString *gs;
gchar *binary;
gchar ***items; /* wow, a pointer to a pointer to a pointer */
gchar *s;
GList *gl;
guint i;
elem = (MsimMessageElement *)data;
items = user_data;
switch (elem->type) {
case MSIM_TYPE_INTEGER:
string = g_strdup_printf("%s(integer): %d", elem->name,
GPOINTER_TO_UINT(elem->data));
break;
case MSIM_TYPE_RAW:
string = g_strdup_printf("%s(raw): %s", elem->name,
elem->data ? (gchar *)elem->data : "(NULL)");
break;
case MSIM_TYPE_STRING:
string = g_strdup_printf("%s(string): %s", elem->name,
elem->data ? (gchar *)elem->data : "(NULL)");
break;
case MSIM_TYPE_BINARY:
gs = (GString *)elem->data;
binary = purple_base64_encode((guchar*)gs->str, gs->len);
string = g_strdup_printf("%s(binary, %d bytes): %s", elem->name, (int)gs->len, binary);
g_free(binary);
break;
case MSIM_TYPE_BOOLEAN:
string = g_strdup_printf("%s(boolean): %s", elem->name,
elem->data ? "TRUE" : "FALSE");
break;
case MSIM_TYPE_DICTIONARY:
if (!elem->data) {
s = g_strdup("(NULL)");
} else {
s = msim_msg_dump_to_str((MsimMessage *)elem->data);
}
if (!s) {
s = g_strdup("(NULL, couldn't msim_msg_dump_to_str)");
}
string = g_strdup_printf("%s(dict): %s", elem->name, s);
g_free(s);
break;
case MSIM_TYPE_LIST:
gs = g_string_new("");
g_string_append_printf(gs, "%s(list): \n", elem->name);
i = 0;
for (gl = (GList *)elem->data; gl != NULL; gl = g_list_next(gl)) {
g_string_append_printf(gs, " %d. %s\n", i, (gchar *)(gl->data));
++i;
}
string = g_string_free(gs, FALSE);
break;
default:
string = g_strdup_printf("%s(unknown type %d",
elem->name ? elem->name : "(NULL)", elem->type);
break;
}
**items = string;
++(*items);
}
/**
* Search for and return the node in msg, matching name, or NULL.
*
* @param msg Message to search within.
* @param name Field name to search for.
*
* @return The GList * node for the MsimMessageElement with the given name, or NULL if not found or name is NULL.
*
* For internal use - users probably want to use msim_msg_get() to
* access the MsimMessageElement *, instead of the GList * container.
*
*/
static GList *
msim_msg_get_node(const MsimMessage *msg, const gchar *name)
{
GList *node;
if (!name || !msg) {
return NULL;
}
/* Linear search for the given name. O(n) but n is small. */
for (node = (GList*)msg; node != NULL; node = g_list_next(node)) {
MsimMessageElement *elem;
elem = (MsimMessageElement *)node->data;
g_return_val_if_fail(elem != NULL, NULL);
g_return_val_if_fail(elem->name != NULL, NULL);
if (strcmp(elem->name, name) == 0) {
return node;
}
}
return NULL;
}
/**
* Create a new MsimMessageElement * - must be g_free()'d.
*
* For internal use; users probably want msim_msg_append() or msim_msg_insert_before().
*
* @param dynamic_name Whether 'name' should be freed when the message is destroyed.
*/
static MsimMessageElement *
msim_msg_element_new(const gchar *name, MsimMessageType type, gpointer data, gboolean dynamic_name)
{
MsimMessageElement *elem;
elem = g_new0(MsimMessageElement, 1);
elem->name = name;
elem->dynamic_name = dynamic_name;
elem->type = type;
elem->data = data;
return elem;
}
/**
* Append a new element to a message.
*
* @param name Textual name of element (static string, neither copied nor freed).
* @param type An MSIM_TYPE_* code.
* @param data Pointer to data, see below.
*
* @return The new message - must be assigned to as with GList*. For example:
*
* msg = msim_msg_append(msg, ...)
*
* The data parameter depends on the type given:
*
* * MSIM_TYPE_INTEGER: Use GUINT_TO_POINTER(x).
*
* * MSIM_TYPE_BINARY: Same as integer, non-zero is TRUE and zero is FALSE.
*
* * MSIM_TYPE_STRING: gchar *. The data WILL BE FREED - use g_strdup() if needed.
*
* * MSIM_TYPE_RAW: gchar *. The data WILL BE FREED - use g_strdup() if needed.
*
* * MSIM_TYPE_BINARY: g_string_new_len(data, length). The data AND GString will be freed.
*
* * MSIM_TYPE_DICTIONARY: An MsimMessage *. Freed when message is destroyed.
*
* * MSIM_TYPE_LIST: GList * of gchar *. Again, everything will be freed.
*
* */
MsimMessage *
msim_msg_append(MsimMessage *msg, const gchar *name,
MsimMessageType type, gpointer data)
{
return g_list_append(msg, msim_msg_element_new(name, type, data, FALSE));
}
/**
* Append a new element, but with a dynamically-allocated name.
* Exactly the same as msim_msg_append(), except 'name' will be freed when
* the message is destroyed. Normally, it isn't, because a static string is given.
*/
static MsimMessage *
msim_msg_append_dynamic_name(MsimMessage *msg, gchar *name,
MsimMessageType type, gpointer data)
{
return g_list_append(msg, msim_msg_element_new(name, type, data, TRUE));
}
/**
* Insert a new element into a message, before the given element name.
*
* @param name_before Name of the element to insert the new element before. If
* could not be found or NULL, new element will be inserted at end.
*
* See msim_msg_append() for usage of other parameters, and an important note about return value.
*/
MsimMessage *
msim_msg_insert_before(MsimMessage *msg, const gchar *name_before,
const gchar *name, MsimMessageType type, gpointer data)
{
MsimMessageElement *new_elem;
GList *node_before;
new_elem = msim_msg_element_new(name, type, data, FALSE);
node_before = msim_msg_get_node(msg, name_before);
return g_list_insert_before(msg, node_before, new_elem);
}
/**
* Perform a deep copy on a GList * of gchar * strings. Free with msim_msg_list_free().
*/
static GList *
msim_msg_list_copy(const GList *old)
{
GList *new_list;
new_list = NULL;
/* Deep copy (g_list_copy is shallow). Copy each string. */
for (; old != NULL; old = g_list_next(old)) {
new_list = g_list_append(new_list, g_strdup(old->data));
}
return new_list;
}
/**
* Clone an individual element.
*
* @param data MsimMessageElement * to clone.
* @param user_data Pointer to MsimMessage * to add cloned element to.
*/
static void
msim_msg_clone_element(gpointer data, gpointer user_data)
{
MsimMessageElement *elem;
MsimMessage **new;
gpointer new_data;
GString *gs;
MsimMessage *dict;
elem = (MsimMessageElement *)data;
new = (MsimMessage **)user_data;
switch (elem->type) {
case MSIM_TYPE_BOOLEAN:
case MSIM_TYPE_INTEGER:
new_data = elem->data;
break;
case MSIM_TYPE_RAW:
case MSIM_TYPE_STRING:
new_data = g_strdup((gchar *)elem->data);
break;
case MSIM_TYPE_LIST:
new_data = (gpointer)msim_msg_list_copy((GList *)(elem->data));
break;
case MSIM_TYPE_BINARY:
gs = (GString *)elem->data;
new_data = g_string_new_len(gs->str, gs->len);
break;
case MSIM_TYPE_DICTIONARY:
dict = (MsimMessage *)elem->data;
new_data = msim_msg_clone(dict);
break;
default:
purple_debug_info("msim", "msim_msg_clone_element: unknown type %d\n", elem->type);
g_return_if_reached();
}
/* Append cloned data. Note that the 'name' field is a static string, so it
* never needs to be copied nor freed. */
if (elem->dynamic_name)
*new = msim_msg_append_dynamic_name(*new, g_strdup(elem->name), elem->type, new_data);
else
*new = msim_msg_append(*new, elem->name, elem->type, new_data);
}
/**
* Clone an existing MsimMessage.
*
* @return Cloned message; caller should free with msim_msg_free().
*/
MsimMessage *
msim_msg_clone(MsimMessage *old)
{
MsimMessage *new;
if (old == NULL) {
return NULL;
}
new = msim_msg_new(FALSE);
g_list_foreach(old, msim_msg_clone_element, &new);
return new;
}
/**
* Free the data of a message element.
*
* @param elem The MsimMessageElement *
*
* Note this only frees the element data; you may also want to free the
* element itself with g_free() (see msim_msg_free_element()).
*/
void
msim_msg_free_element_data(MsimMessageElement *elem)
{
switch (elem->type) {
case MSIM_TYPE_BOOLEAN:
case MSIM_TYPE_INTEGER:
/* Integer value stored in gpointer - no need to free(). */
break;
case MSIM_TYPE_RAW:
case MSIM_TYPE_STRING:
/* Always free strings - caller should have g_strdup()'d if
* string was static or temporary and not to be freed. */
g_free(elem->data);
break;
case MSIM_TYPE_BINARY:
/* Free the GString itself and the binary data. */
g_string_free((GString *)elem->data, TRUE);
break;
case MSIM_TYPE_DICTIONARY:
msim_msg_free((MsimMessage *)elem->data);
break;
case MSIM_TYPE_LIST:
g_list_free((GList *)elem->data);
break;
default:
purple_debug_info("msim", "msim_msg_free_element_data: "
"not freeing unknown type %d\n", elem->type);
break;
}
}
/**
* Free a GList * of MsimMessageElement *'s.
*/
void
msim_msg_list_free(GList *l)
{
for (; l != NULL; l = g_list_next(l)) {
MsimMessageElement *elem;
elem = (MsimMessageElement *)l->data;
/* Note that name is almost never dynamically allocated elsewhere;
* it is usually a static string, but not in lists. So cast it. */
g_free((gchar *)elem->name);
g_free(elem->data);
g_free(elem);
}
g_list_free(l);
}
/**
* Free an individual message element.
*
* @param data MsimMessageElement * to free.
* @param user_data Not used; required to match g_list_foreach() callback prototype.
*
* Frees both the element data and the element itself.
* Also frees the name if dynamic_name is TRUE.
*/
static void
msim_msg_free_element(gpointer data, gpointer user_data)
{
MsimMessageElement *elem;
elem = (MsimMessageElement *)data;
msim_msg_free_element_data(elem);
if (elem->dynamic_name)
/* Need to cast to remove const-ness, because
* elem->name is almost always a constant, static
* string, but not in this case. */
g_free((gchar *)elem->name);
g_free(elem);
}
/**
* Free a complete message.
*/
void
msim_msg_free(MsimMessage *msg)
{
if (!msg) {
/* already free as can be */
return;
}
g_list_foreach(msg, msim_msg_free_element, NULL);
g_list_free(msg);
}
/**
* Pack an element into its protocol representation.
*
* @param data Pointer to an MsimMessageElement.
* @param user_data Pointer to a gchar ** array of string items.
*
* Called by msim_msg_pack(). Will pack the MsimMessageElement into
* a part of the protocol string and append it to the array. Caller
* is responsible for creating array to correct dimensions, and
* freeing each string element of the array added by this function.
*/
static void
msim_msg_pack_element(gpointer data, gpointer user_data)
{
MsimMessageElement *elem;
gchar *string, *data_string;
gchar ***items;
elem = (MsimMessageElement *)data;
items = (gchar ***)user_data;
/* Exclude elements beginning with '_' from packed protocol messages. */
if (elem->name[0] == '_') {
return;
}
data_string = msim_msg_pack_element_data(elem);
switch (elem->type) {
/* These types are represented by key name/value pairs (converted above). */
case MSIM_TYPE_INTEGER:
case MSIM_TYPE_RAW:
case MSIM_TYPE_STRING:
case MSIM_TYPE_BINARY:
case MSIM_TYPE_DICTIONARY:
case MSIM_TYPE_LIST:
string = g_strconcat(elem->name, "\\", data_string, NULL);
break;
/* Boolean is represented by absence or presence of name. */
case MSIM_TYPE_BOOLEAN:
if (GPOINTER_TO_UINT(elem->data)) {
/* True - leave in, with blank value. */
string = g_strdup_printf("%s\\", elem->name);
} else {
/* False - leave out. */
string = g_strdup("");
}
break;
default:
g_free(data_string);
g_return_if_reached();
break;
}
g_free(data_string);
**items = string;
++(*items);
}
/**
* Pack an element into its protcol representation inside a dictionary.
*
* See msim_msg_pack_element().
*/
static void
msim_msg_pack_element_dict(gpointer data, gpointer user_data)
{
MsimMessageElement *elem;
gchar *string, *data_string, ***items;
elem = (MsimMessageElement *)data;
items = (gchar ***)user_data;
/* Exclude elements beginning with '_' from packed protocol messages. */
if (elem->name[0] == '_') {
return;
}
data_string = msim_msg_pack_element_data(elem);
g_return_if_fail(data_string != NULL);
switch (elem->type) {
/* These types are represented by key name/value pairs (converted above). */
case MSIM_TYPE_INTEGER:
case MSIM_TYPE_RAW:
case MSIM_TYPE_STRING:
case MSIM_TYPE_BINARY:
case MSIM_TYPE_DICTIONARY:
case MSIM_TYPE_LIST:
case MSIM_TYPE_BOOLEAN: /* Boolean is On or Off */
string = g_strconcat(elem->name, "=", data_string, NULL);
break;
default:
g_free(data_string);
g_return_if_fail(FALSE);
break;
}
g_free(data_string);
**items = string;
++(*items);
}
/**
* Return a packed string of a message suitable for sending over the wire.
*
* @return A string. Caller must g_free().
*/
gchar *
msim_msg_pack(MsimMessage *msg)
{
g_return_val_if_fail(msg != NULL, NULL);
return msim_msg_pack_using(msg, msim_msg_pack_element, "\\", "\\", "\\final\\");
}
/**
* Return a packed string of a dictionary, suitable for embedding in MSIM_TYPE_DICTIONARY.
*
* @return A string; caller must g_free().
*/
static gchar *
msim_msg_pack_dict(MsimMessage *msg)
{
g_return_val_if_fail(msg != NULL, NULL);
return msim_msg_pack_using(msg, msim_msg_pack_element_dict, "\034", "", "");
}
/**
* Send an existing MsimMessage.
*/
gboolean
msim_msg_send(MsimSession *session, MsimMessage *msg)
{
gchar *raw;
gboolean success;
raw = msim_msg_pack(msg);
g_return_val_if_fail(raw != NULL, FALSE);
success = msim_send_raw(session, raw);
g_free(raw);
return success;
}
/**
* Return a message element data as a new string for a raw protocol message,
* converting from other types (integer, etc.) if necessary.
*
* @return const gchar * The data as a string, or NULL. Caller must g_free().
*
* Returns a string suitable for inclusion in a raw protocol message, not necessarily
* optimal for human consumption. For example, strings are escaped. Use
* msim_msg_get_string() if you want a string, which in some cases is same as this.
*/
gchar *
msim_msg_pack_element_data(MsimMessageElement *elem)
{
GString *gs;
GList *gl;
g_return_val_if_fail(elem != NULL, NULL);
switch (elem->type) {
case MSIM_TYPE_INTEGER:
return g_strdup_printf("%d", GPOINTER_TO_UINT(elem->data));
case MSIM_TYPE_RAW:
/* Not un-escaped - this is a raw element, already escaped if necessary. */
return (gchar *)g_strdup((gchar *)elem->data);
case MSIM_TYPE_STRING:
/* Strings get escaped. msim_escape() creates a new string. */
g_return_val_if_fail(elem->data != NULL, NULL);
return elem->data ? msim_escape((gchar *)elem->data) :
g_strdup("(NULL)");
case MSIM_TYPE_BINARY:
gs = (GString *)elem->data;
/* Do not escape! */
return purple_base64_encode((guchar *)gs->str, gs->len);
case MSIM_TYPE_BOOLEAN:
/* Not used by messages in the wire protocol * -- see msim_msg_pack_element.
* Only used by dictionaries, see msim_msg_pack_element_dict. */
return elem->data ? g_strdup("On") : g_strdup("Off");
case MSIM_TYPE_DICTIONARY:
return msim_msg_pack_dict((MsimMessage *)elem->data);
case MSIM_TYPE_LIST:
/* Pack using a|b|c|d|... */
gs = g_string_new("");
for (gl = (GList *)elem->data; gl != NULL; gl = g_list_next(gl)) {
g_string_append_printf(gs, "%s", (gchar*)(gl->data));
/* All but last element is separated by a bar. */
if (g_list_next(gl))
g_string_append(gs, "|");
}
return g_string_free(gs, FALSE);
default:
purple_debug_info("msim", "field %s, unknown type %d\n",
elem->name ? elem->name : "(NULL)",
elem->type);
return NULL;
}
}
/**
* Send a message to the server, whose contents is specified using
* variable arguments.
*
* @param session
* @param ... A sequence of gchar* key/type/value triplets, terminated with NULL.
*
* This function exists for coding convenience: it allows a message to be created
* and sent in one line of code. Internally it calls msim_msg_send().
*
* IMPORTANT: See msim_msg_append() documentation for details on element types.
*
*/
gboolean
msim_send(MsimSession *session, ...)
{
gboolean success;
MsimMessage *msg;
va_list argp;
va_start(argp, session);
msg = msim_msg_new_v(NULL, argp);
va_end(argp);
/* Actually send the message. */
success = msim_msg_send(session, msg);
/* Cleanup. */
msim_msg_free(msg);
return success;
}
/**
* Print a human-readable string of the message to Purple's debug log.
*
* @param fmt_string A static string, in which '%s' will be replaced.
*/
void
msim_msg_dump(const gchar *fmt_string, MsimMessage *msg)
{
gchar *debug_str;
g_return_if_fail(fmt_string != NULL);
debug_str = msim_msg_dump_to_str(msg);
g_return_if_fail(debug_str != NULL);
purple_debug_info("msim", fmt_string, debug_str);
g_free(debug_str);
}
/**
* Parse a raw protocol message string into a MsimMessage *.
*
* @param raw The raw message string to parse, will be g_free()'d.
*
* @return MsimMessage *. Caller should msim_msg_free() when done.
*/
MsimMessage *
msim_parse(const gchar *raw)
{
MsimMessage *msg;
gchar *token;
gchar **tokens;
gchar *key;
gchar *value;
int i;
g_return_val_if_fail(raw != NULL, NULL);
purple_debug_info("msim", "msim_parse: got <%s>\n", raw);
key = NULL;
/* All messages begin with a \. */
if (raw[0] != '\\' || raw[1] == 0) {
purple_debug_info("msim", "msim_parse: incomplete/bad string, "
"missing initial backslash: <%s>\n", raw);
/* XXX: Should we try to recover, and read to first backslash? */
return NULL;
}
msg = msim_msg_new(FALSE);
for (tokens = g_strsplit(raw + 1, "\\", 0), i = 0;
(token = tokens[i]);
i++) {
#ifdef MSIM_DEBUG_PARSE
purple_debug_info("msim", "tok=<%s>, i%2=%d\n", token, i % 2);
#endif
if (i % 2) {
/* Odd-numbered ordinal is a value. */
value = token;
/* Incoming protocol messages get tagged as MSIM_TYPE_RAW, which
* represents an untyped piece of data. msim_msg_get_* will
* convert to appropriate types for caller, and handle unescaping if needed. */
msg = msim_msg_append_dynamic_name(msg, g_strdup(key), MSIM_TYPE_RAW, g_strdup(value));
#ifdef MSIM_DEBUG_PARSE
purple_debug_info("msim", "insert string: |%s|=|%s|\n", key, value);
#endif
} else {
/* Even numbered indexes are key names. */
key = token;
}
}
g_strfreev(tokens);
return msg;
}
/**
* Return the first MsimMessageElement * with given name in the MsimMessage *.
*
* @param name Name to search for.
*
* @return MsimMessageElement * matching name, or NULL.
*
* Note: useful fields of MsimMessageElement are 'data' and 'type', which
* you can access directly. But it is often more convenient to use
* another msim_msg_get_* that converts the data to what type you want.
*/
MsimMessageElement *
msim_msg_get(const MsimMessage *msg, const gchar *name)
{
GList *node;
node = msim_msg_get_node(msg, name);
if (node) {
return (MsimMessageElement *)node->data;
} else {
return NULL;
}
}
gchar *
msim_msg_get_string_from_element(MsimMessageElement *elem)
{
g_return_val_if_fail(elem != NULL, NULL);
switch (elem->type) {
case MSIM_TYPE_INTEGER:
return g_strdup_printf("%d", GPOINTER_TO_UINT(elem->data));
case MSIM_TYPE_RAW:
/* Raw element from incoming message - if its a string, it'll
* be escaped. */
return msim_unescape((gchar *)elem->data);
case MSIM_TYPE_STRING:
/* Already unescaped. */
return g_strdup((gchar *)elem->data);
default:
purple_debug_info("msim", "msim_msg_get_string_element: type %d unknown, name %s\n",
elem->type, elem->name ? elem->name : "(NULL)");
return NULL;
}
}
/**
* Return the data of an element of a given name, as a string.
*
* @param name Name of element.
*
* @return gchar * The data as a string, or NULL if not found.
* Caller must g_free().
*
* Note that msim_msg_pack_element_data() is similar, but returns a string
* for inclusion into a raw protocol string (escaped and everything).
* This function unescapes the string for you, if needed.
*/
gchar *
msim_msg_get_string(const MsimMessage *msg, const gchar *name)
{
MsimMessageElement *elem;
elem = msim_msg_get(msg, name);
if (!elem) {
return NULL;
}
return msim_msg_get_string_from_element(elem);
}
/**
* Parse a |-separated string into a new GList. Free with msim_msg_list_free().
*/
static GList *
msim_msg_list_parse(const gchar *raw)
{
gchar **array;
GList *list;
guint i;
array = g_strsplit(raw, "|", 0);
list = NULL;
/* TODO: escape/unescape /3 <-> | within list elements */
for (i = 0; array[i] != NULL; ++i) {
MsimMessageElement *elem;
/* Freed in msim_msg_list_free() */
elem = g_new0(MsimMessageElement, 1);
/* Give the element a name for debugging purposes.
* Not supposed to be looked up by this name; instead,
* lookup the elements by indexing the array. */
elem->name = g_strdup_printf("(list item #%d)", i);
elem->type = MSIM_TYPE_RAW;
elem->data = g_strdup(array[i]);
list = g_list_append(list, elem);
}
g_strfreev(array);
return list;
}
static GList *
msim_msg_get_list_from_element(MsimMessageElement *elem)
{
g_return_val_if_fail(elem != NULL, NULL);
switch (elem->type) {
case MSIM_TYPE_LIST:
return msim_msg_list_copy((GList *)elem->data);
case MSIM_TYPE_RAW:
return msim_msg_list_parse((gchar *)elem->data);
default:
purple_debug_info("msim_msg_get_list", "type %d unknown, name %s\n",
elem->type, elem->name ? elem->name : "(NULL)");
return NULL;
}
}
/**
* Return an element as a new list. Caller frees with msim_msg_list_free().
*/
GList *
msim_msg_get_list(const MsimMessage *msg, const gchar *name)
{
MsimMessageElement *elem;
elem = msim_msg_get(msg, name);
if (!elem) {
return NULL;
}
return msim_msg_get_list_from_element(elem);
}
/**
* Parse a \x1c-separated "dictionary" of key=value pairs into a hash table.
*
* @param raw The text of the dictionary to parse. Often the
* value for the 'body' field.
*
* @return A new MsimMessage *. Must msim_msg_free() when done.
*/
static MsimMessage *
msim_msg_dictionary_parse(const gchar *raw)
{
MsimMessage *dict;
gchar *item;
gchar **items;
gchar **elements;
guint i;
g_return_val_if_fail(raw != NULL, NULL);
dict = msim_msg_new(NULL);
for (items = g_strsplit(raw, "\x1c", 0), i = 0;
(item = items[i]);
i++) {
gchar *key, *value;
elements = g_strsplit(item, "=", 2);
key = elements[0];
if (!key) {
purple_debug_info("msim", "msim_msg_dictionary_parse(%s): null key\n",
raw);
g_strfreev(elements);
break;
}
value = elements[1];
if (!value) {
purple_debug_info("msim", "msim_msg_dictionary_prase(%s): null value\n",
raw);
g_strfreev(elements);
break;
}
#ifdef MSIM_DEBUG_PARSE
purple_debug_info("msim_msg_dictionary_parse","-- %s: %s\n", key ? key : "(NULL)",
value ? value : "(NULL)");
#endif
/* Append with _dynamic_name since g_strdup(key) is dynamic, and
* needs to be freed when the message is destroyed. It isn't static as usual. */
dict = msim_msg_append_dynamic_name(dict, g_strdup(key), MSIM_TYPE_RAW, g_strdup(value));
g_strfreev(elements);
}
g_strfreev(items);
return dict;
}
static MsimMessage *
msim_msg_get_dictionary_from_element(MsimMessageElement *elem)
{
g_return_val_if_fail(elem != NULL, NULL);
switch (elem->type) {
case MSIM_TYPE_DICTIONARY:
return msim_msg_clone((MsimMessage *)elem->data);
case MSIM_TYPE_RAW:
return msim_msg_dictionary_parse(elem->data);
default:
purple_debug_info("msim_msg_get_dictionary", "type %d unknown, name %s\n",
elem->type, elem->name ? elem->name : "(NULL)");
return NULL;
}
}
/**
* Return an element as a new dictionary. Caller frees with msim_msg_free().
*/
MsimMessage *
msim_msg_get_dictionary(const MsimMessage *msg, const gchar *name)
{
MsimMessageElement *elem;
elem = msim_msg_get(msg, name);
if (!elem) {
return NULL;
}
return msim_msg_get_dictionary_from_element(elem);
}
guint
msim_msg_get_integer_from_element(MsimMessageElement *elem)
{
g_return_val_if_fail(elem != NULL, 0);
switch (elem->type) {
case MSIM_TYPE_INTEGER:
return GPOINTER_TO_UINT(elem->data);
case MSIM_TYPE_RAW:
case MSIM_TYPE_STRING:
/* TODO: find out if we need larger integers */
return (guint)atoi((gchar *)elem->data);
default:
return 0;
}
}
/**
* Return the data of an element of a given name, as an unsigned integer.
*
* @param name Name of element.
*
* @return guint Numeric representation of data, or 0 if could not be converted / not found.
*
* Useful to obtain an element's data if you know it should be an integer,
* even if it is not stored as an MSIM_TYPE_INTEGER. MSIM_TYPE_STRING will
* be converted handled correctly, for example.
*/
guint
msim_msg_get_integer(const MsimMessage *msg, const gchar *name)
{
MsimMessageElement *elem;
elem = msim_msg_get(msg, name);
if (!elem) {
return 0;
}
return msim_msg_get_integer_from_element(elem);
}
static gboolean
msim_msg_get_binary_from_element(MsimMessageElement *elem, gchar **binary_data, gsize *binary_length)
{
GString *gs;
g_return_val_if_fail(elem != NULL, FALSE);
switch (elem->type) {
case MSIM_TYPE_RAW:
/* Incoming messages are tagged with MSIM_TYPE_RAW, and
* converted appropriately. They can still be "strings", just they won't
* be tagged as MSIM_TYPE_STRING (as MSIM_TYPE_STRING is intended to be used
* by msimprpl code for things like instant messages - stuff that should be
* escaped if needed). DWIM.
*/
/* Previously, incoming messages were stored as MSIM_TYPE_STRING.
* This was fine for integers and strings, since they can easily be
* converted in msim_get_*, as desirable. However, it does not work
* well for binary strings. Consider:
*
* If incoming base64'd elements were tagged as MSIM_TYPE_STRING.
* msim_msg_get_binary() sees MSIM_TYPE_STRING, base64 decodes, returns.
* everything is fine.
* But then, msim_send() is called on the incoming message, which has
* a base64'd MSIM_TYPE_STRING that really is encoded binary. The values
* will be escaped since strings are escaped, and / becomes /2; no good.
*
*/
*binary_data = (gchar *)purple_base64_decode((const gchar *)elem->data, binary_length);
return ((*binary_data) != NULL);
case MSIM_TYPE_BINARY:
gs = (GString *)elem->data;
/* Duplicate data, so caller can g_free() it. */
*binary_data = g_memdup(gs->str, gs->len);
*binary_length = gs->len;
return TRUE;
/* Rejected because if it isn't already a GString, have to g_new0 it and
* then caller has to ALSO free the GString!
*
* return (GString *)elem->data; */
default:
purple_debug_info("msim", "msim_msg_get_binary: unhandled type %d for key %s\n",
elem->type, elem->name ? elem->name : "(NULL)");
return FALSE;
}
}
/**
* Return the data of an element of a given name, as a binary GString.
*
* @param binary_data A pointer to a new pointer, which will be filled in with the binary data. CALLER MUST g_free().
*
* @param binary_length A pointer to an integer, which will be set to the binary data length.
*
* @return TRUE if successful, FALSE if not.
*/
gboolean
msim_msg_get_binary(const MsimMessage *msg, const gchar *name,
gchar **binary_data, gsize *binary_length)
{
MsimMessageElement *elem;
elem = msim_msg_get(msg, name);
if (!elem) {
return FALSE;
}
return msim_msg_get_binary_from_element(elem, binary_data, binary_length);
}
|