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
|
/* -*-mode:c; c-style:k&r; c-basic-offset:4; -*- */
/* Balsa E-Mail Client
*
* Copyright (C) 1997-2002 Stuart Parmenter and others,
* See the file AUTHORS for a list.
*
* 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, 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., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#include "config.h"
#include <string.h>
#include <ctype.h>
#include "libbalsa.h"
#include "misc.h"
#include "html.h"
#include "i18n.h"
/* FIXME: The content of this file could go to message.c */
static GString *process_mime_multipart(LibBalsaMessage * message,
LibBalsaMessageBody * body,
gchar * reply_prefix_str,
gint llen, gboolean ignore_html,
gboolean flow,
LibBalsaCharsetFunc charset_cb,
gpointer charset_cb_data);
/* process_mime_part:
returns string representation of given message part.
NOTE: may return NULL(!).
*/
GString *
process_mime_part(LibBalsaMessage * message, LibBalsaMessageBody * body,
gchar * reply_prefix_str, gint llen, gboolean ignore_html,
gboolean flow, LibBalsaCharsetFunc charset_cb,
gpointer charset_cb_data)
{
gchar *res = NULL;
size_t allocated;
GString *reply = NULL;
gchar *mime_type;
LibBalsaHTMLType html_type;
switch (libbalsa_message_body_type(body)) {
case LIBBALSA_MESSAGE_BODY_TYPE_OTHER:
case LIBBALSA_MESSAGE_BODY_TYPE_AUDIO:
case LIBBALSA_MESSAGE_BODY_TYPE_APPLICATION:
case LIBBALSA_MESSAGE_BODY_TYPE_IMAGE:
case LIBBALSA_MESSAGE_BODY_TYPE_MODEL:
case LIBBALSA_MESSAGE_BODY_TYPE_MESSAGE:
case LIBBALSA_MESSAGE_BODY_TYPE_VIDEO:
break;
case LIBBALSA_MESSAGE_BODY_TYPE_MULTIPART:
reply = process_mime_multipart(message, body, reply_prefix_str,
llen, ignore_html, flow,
charset_cb, charset_cb_data);
break;
case LIBBALSA_MESSAGE_BODY_TYPE_TEXT:
/* don't return text/html stuff... */
mime_type = libbalsa_message_body_get_mime_type(body);
html_type = libbalsa_html_type(mime_type);
g_free(mime_type);
if (ignore_html && html_type)
break;
allocated = libbalsa_message_body_get_content(body, &res, NULL);
if (!res)
return NULL;
#ifdef HAVE_GTKHTML
if (html_type) {
allocated = libbalsa_html_filter(html_type, &res, allocated);
libbalsa_html_to_string(&res, allocated);
}
#endif /* HAVE_GTKHTML */
if (charset_cb)
charset_cb(libbalsa_message_body_charset(body),
charset_cb_data);
if (llen > 0) {
if (flow && libbalsa_message_body_is_flowed(body)) {
/* we're making a `format=flowed' message, and the
* message we're quoting was flowed
*
* we'll assume it's going to the screen */
gboolean delsp = libbalsa_message_body_is_delsp(body);
reply =
libbalsa_process_text_rfc2646(res, G_MAXINT, FALSE,
TRUE,
reply_prefix_str != NULL,
delsp);
g_free(res);
break;
}
if (reply_prefix_str)
llen -= strlen(reply_prefix_str);
libbalsa_wrap_string(res, llen);
}
if (reply_prefix_str || flow) {
gchar *str, *ptr;
/* prepend the prefix to all the lines */
reply = g_string_new("");
str = res;
do {
ptr = strchr(str, '\n');
if (ptr)
*ptr = '\0';
if (reply_prefix_str)
reply = g_string_append(reply, reply_prefix_str);
if (flow) {
gchar *p;
/* we're making a `format=flowed' message, but the
* message we're quoting was `format=fixed', so we
* must make sure all lines are `fixed'--that is,
* trim any trailing ' ' characters */
for (p = str; *p; ++p);
while (*--p == ' ');
*++p = '\0';
}
reply = g_string_append(reply, str);
reply = g_string_append_c(reply, '\n');
str = ptr;
} while (str++);
} else
reply = g_string_new(res);
g_free(res);
break;
}
return reply;
}
static GString *
process_mime_multipart(LibBalsaMessage * message,
LibBalsaMessageBody * body,
gchar * reply_prefix_str, gint llen,
gboolean ignore_html, gboolean flow,
LibBalsaCharsetFunc charset_cb,
gpointer charset_cb_data)
{
LibBalsaMessageBody *part;
GString *res = NULL, *s;
for (part = body->parts; part; part = part->next) {
s = process_mime_part(message, part, reply_prefix_str, llen,
ignore_html, flow, charset_cb,
charset_cb_data);
if (!s)
continue;
if (res) {
if (res->str[res->len - 1] != '\n')
g_string_append_c(res, '\n');
g_string_append_c(res, '\n');
g_string_append(res, s->str);
g_string_free(s, TRUE);
} else
res = s;
}
return res;
}
GString *
content2reply(LibBalsaMessage * message, gchar * reply_prefix_str,
gint llen, gboolean ignore_html, gboolean flow,
LibBalsaCharsetFunc charset_cb, gpointer charset_cb_data)
{
LibBalsaMessageBody *body;
GString *reply = NULL, *res;
libbalsa_message_body_ref(message, FALSE, FALSE);
body = message->body_list;
for (body = message->body_list; body; body = body->next) {
res = process_mime_part(message, body, reply_prefix_str, llen,
ignore_html, flow, charset_cb,
charset_cb_data);
if (!res)
continue;
if (reply) {
reply = g_string_append(reply, res->str);
g_string_free(res, TRUE);
} else
reply = res;
}
libbalsa_message_body_unref(message);
return reply;
}
/*
* implement RFC2646 `text=flowed'
* first version by Emmanuel <e allaud wanadoo fr>
* this version by Peter <PeterBloomfield mindspring com>
*
* Note : the buffer pointed by par is not modified, the returned string
* is newly allocated (so we can directly wrap from message body)
*
* Note about quoted material:
* >>>text with no space separating the `>>>' and the `text...' is ugly,
* so we'll space-stuff all quoted lines both for the screen and for the
* wire (except the usenet signature separator `-- ', which wouldn't be
* recognized if stuffed!). That means we must destuff *quoted* lines
* coming off the screen, but we'll assume that leading spaces on
* *unquoted* lines were put there intentionally by the user.
* The stuffing space isn't logically part of the text of the paragraph,
* so this doesn't change the content.
* */
/* Updated 2003 to implement DelSp=Yes as in
* http://www.ietf.org/internet-drafts/draft-gellens-format-bis-01.txt
*/
/* Now documented in RFC 3676:
* http://www.ietf.org/rfc/rfc3676.txt
* or
* http://www.faqs.org/rfcs/rfc3676.html
*/
#define MAX_WIDTH 997 /* enshrined somewhere */
#define QUOTE_CHAR '>'
/*
* we'll use one routine to parse text into paragraphs
*
* if the text is coming off the wire, use the RFC specs
* if it's coming off the screen, don't destuff unquoted lines
* */
typedef struct {
gint quote_depth;
gchar *str;
} rfc2646text;
static GList *
unwrap_rfc2646(gchar * str, gboolean from_screen, gboolean delsp)
{
GList *list = NULL;
while (*str) {
/* make a line of output */
rfc2646text *text = g_new(rfc2646text, 1);
GString *string = g_string_new(NULL);
gboolean flowed;
text->quote_depth = -1;
for (flowed = TRUE; flowed && *str; ) {
/* process a line of input */
gboolean sig_sep;
gchar *p;
gint len;
for (p = str; *p == QUOTE_CHAR; p++)
/* nothing */;
len = p - str;
sig_sep = (strncmp(p, "-- \n", 4) == 0);
if (text->quote_depth < 0)
text->quote_depth = len;
else if (len != text->quote_depth || sig_sep)
/* broken! a flowed line was followed by either a line
* with different quote depth, or a sig separator
*
* we'll break before updating str, so we pick up this
* line again on the next pass through this loop */
break;
if (*p == ' ' && (!from_screen || len > 0))
/* space stuffed */
p++;
/* move str to the start of the next line, if any */
for (str = p; *str && *str != '\n'; str++)
/* nothing */;
len = str - p;
if (*str)
str++;
if(len>0 && p[len-1] == '\r')
len--; /* take care of '\r\n' line endings */
flowed = (len > 0 && p[len - 1] == ' ' && !sig_sep);
if (flowed && delsp)
/* Don't include the last space. */
--len;
g_string_append_len(string, p, len);
}
text->str = g_string_free(string, FALSE);
if (flowed) {
/* Broken: remove trailing spaces. */
gchar *p = text->str;
while (*p)
p++;
while (--p >= text->str && *p == ' ')
/* nothing */ ;
*++p = '\0';
}
list = g_list_append(list, text);
}
return list;
}
/*
* we'll use one routine to wrap the paragraphs
*
* if the text is going to the wire, use the RFC specs
* if it's going to the screen, don't space-stuff unquoted lines
* */
static void
dowrap_rfc2646(GList * list, gint width, gboolean to_screen,
gboolean quote, GString * result)
{
const gint max_width = to_screen ? G_MAXINT : MAX_WIDTH - 4;
/* outer loop over paragraphs */
while (list) {
rfc2646text *text = list->data;
gchar *str;
gint qd;
str = text->str;
qd = text->quote_depth;
if (quote)
qd++;
/* one output line per middle loop */
do { /* ... while (*str); */
gboolean first_word = TRUE;
gchar *start = str;
gchar *line_break = start;
gint len = qd;
gint i;
/* start of line: emit quote string */
for (i = 0; i < qd; i++)
g_string_append_c(result, QUOTE_CHAR);
/* space-stuffing:
* - for the wire, stuffing is required for lines beginning
* with ` ', `>', or `From '
* - for the screen and for the wire, we'll use optional
* stuffing of quoted lines to provide a visual separation
* of quoting string and text
* - ...but we mustn't stuff `-- ' */
if (((!to_screen
&& (*str == ' ' || *str == QUOTE_CHAR
|| !strncmp(str, "From ", 5))) || len > 0)
&& strcmp(str, "-- ")) {
g_string_append_c(result, ' ');
++len;
}
/*
* wrapping strategy:
* break line into words, each with its trailing whitespace;
* emit words while they don't break the width;
*
* first word (with its trailing whitespace) is allowed to
* break the width
*
* one word per inner loop
* */
while (*str) {
while (*str && !isspace((int)*str)
&& (str - start) < max_width) {
len++;
str = g_utf8_next_char(str);
}
while ((str - start) < max_width && isspace((int)*str)) {
if (*str == '\t')
len += 8 - len % 8;
else
len++;
str = g_utf8_next_char(str);;
}
/*
* to avoid some unnecessary space-stuffing,
* we won't wrap at '>', ' ', or "From "
* (we already passed any spaces, so just check for '>'
* and "From ")
* */
if ((str - start) < max_width && *str
&& (*str == QUOTE_CHAR
|| !strncmp(str, "From ", 5)))
continue;
if (!*str || len > width || (str - start) >= max_width) {
/* allow an overlong first word, otherwise back up
* str */
if (len > width && !first_word)
str = line_break;
g_string_append_len(result, start, str - start);
break;
}
first_word = FALSE;
line_break = str;
} /* end of loop over words */
/*
* make sure that a line ending in whitespace ends in an
* actual ' '
* */
if (str > start && isspace((int)str[-1]) && str[-1] != ' ')
g_string_append_c(result, ' ');
if (*str) { /* line separator */
if (to_screen || str == start)
g_string_append_c(result, '\n');
else /* DelSP = Yes */
g_string_append(result, " \n");
}
} while (*str); /* end of loop over output lines */
g_free(text->str);
g_free(text);
list = g_list_next(list);
if (list) /* paragraph separator */
g_string_append_c(result, '\n');
} /* end of paragraph */
}
/* GString *libbalsa_process_text_rfc2646:
re-wrap given flowed string to required width.
Parameters:
gchar * par: string to be wrapped
gint width: maximum length of wrapped line
gboolean from_screen: is par from the text input area of
a sendmsg-window?
gboolean to_screen: is the wrapped text going to be
displayed in the text area of a sendmsg-window
or of a received message window?
gboolean quote: should the wrapped lines be prefixed
with the RFC 2646 quote character '>'?
gboolean delsp: was the message formatted with DelSp=Yes?
*/
GString *
libbalsa_process_text_rfc2646(gchar * par, gint width,
gboolean from_screen,
gboolean to_screen, gboolean quote,
gboolean delsp)
{
gint len = strlen(par);
GString *result = g_string_sized_new(len);
GList *list;
list = unwrap_rfc2646(par, from_screen, delsp);
dowrap_rfc2646(list, width, to_screen, quote, result);
g_list_free(list);
return result;
}
/* libbalsa_wrap_rfc2646:
wraps given string using soft breaks according to rfc2646
convenience function, uses libbalsa_process_text_rfc2646 to do all
the work, but returns a gchar * and g_free's the string passed in
*/
gchar *
libbalsa_wrap_rfc2646(gchar * par, gint width, gboolean from_screen,
gboolean to_screen, gboolean delsp)
{
GString *result;
result = libbalsa_process_text_rfc2646(par, width, from_screen,
to_screen, FALSE, delsp);
g_free(par);
return g_string_free(result, FALSE);
}
/*
* libbalsa_wrap_view(GtkTextView * view, gint length)
*
* Wrap the text in a GtkTextView to the given line length.
*/
/* Forward references: */
static GtkTextTag *get_quote_tag(GtkTextIter * iter);
static gint get_quote_depth(GtkTextIter * iter, gchar ** quote_string);
static gchar *get_line(GtkTextBuffer * buffer, GtkTextIter * iter);
static gboolean is_in_url(GtkTextIter * iter, gint offset,
GtkTextTag * url_tag);
void
libbalsa_wrap_view(GtkTextView * view, gint length)
{
GtkTextBuffer *buffer = gtk_text_view_get_buffer(view);
GtkTextTagTable *table = gtk_text_buffer_get_tag_table(buffer);
GtkTextTag *url_tag = gtk_text_tag_table_lookup(table, "url");
GtkTextTag *soft_tag = gtk_text_tag_table_lookup(table, "soft");
GtkTextIter iter;
PangoContext *context = gtk_widget_get_pango_context(GTK_WIDGET(view));
PangoLanguage *language = pango_context_get_language(context);
PangoLogAttr *log_attrs = NULL;
gtk_text_buffer_get_start_iter(buffer, &iter);
/* Loop over original lines. */
while (!gtk_text_iter_is_end(&iter)) {
GtkTextTag *quote_tag;
gchar *quote_string;
gint quote_len;
quote_tag = get_quote_tag(&iter);
quote_len = get_quote_depth(&iter, "e_string);
if (quote_string) {
if (quote_string[quote_len])
quote_len++;
else {
gchar *tmp = g_strconcat(quote_string, " ", NULL);
g_free(quote_string);
quote_string = tmp;
}
}
/* Loop over breaks within the original line. */
while (!gtk_text_iter_ends_line(&iter)) {
gchar *line;
gint num_chars;
gint attrs_len;
gint offset;
gint len;
gint brk_offset = 0;
gunichar c = 0;
gboolean in_space = FALSE;
line = get_line(buffer, &iter);
num_chars = g_utf8_strlen(line, -1);
attrs_len = num_chars + 1;
log_attrs = g_renew(PangoLogAttr, log_attrs, attrs_len);
pango_get_log_attrs(line, -1, -1, language, log_attrs, attrs_len);
g_free(line);
for (len = offset = quote_len;
len < length && offset < num_chars; offset++) {
gtk_text_iter_set_line_offset(&iter, offset);
c = gtk_text_iter_get_char(&iter);
if (c == '\t')
len = ((len + 8) / 8) * 8;
else if (g_unichar_isprint(c))
len++;
if (log_attrs[offset].is_line_break
&& !is_in_url(&iter, offset, url_tag))
brk_offset = offset;
}
if (len < length)
break;
in_space = g_unichar_isspace(c);
if (brk_offset > quote_len && !in_space)
/* Break at the last break we saw. */
gtk_text_iter_set_line_offset(&iter, brk_offset);
else {
GtkTextIter start = iter;
/* Break at the next line break. */
if (offset <= quote_len)
offset = quote_len + 1;
while (offset < num_chars
&& (is_in_url(&iter, offset, url_tag)
|| !log_attrs[offset].is_line_break))
offset++;
if (offset >= num_chars)
/* No next line break. */
break;
/* Trim extra trailing whitespace */
gtk_text_iter_forward_char(&start);
gtk_text_buffer_delete(buffer, &start, &iter);
}
gtk_text_buffer_insert_with_tags(buffer, &iter, "\n", 1,
soft_tag, NULL);
if (quote_string)
gtk_text_buffer_insert_with_tags(buffer, &iter,
quote_string, -1,
quote_tag, NULL);
}
g_free(quote_string);
gtk_text_iter_forward_line(&iter);
}
g_free(log_attrs);
}
/* Find the quote tag, if any, at iter; doesn't move iter; returns tag
* or NULL. */
static GtkTextTag *
get_quote_tag(GtkTextIter * iter)
{
GtkTextTag *quote_tag = NULL;
GSList *list;
GSList *tag_list = gtk_text_iter_get_tags(iter);
for (list = tag_list; list; list = list->next) {
GtkTextTag *tag = list->data;
gchar *name;
g_object_get(G_OBJECT(tag), "name", &name, NULL);
if (name) {
if (!strncmp(name, "quote-", 6))
quote_tag = tag_list->data;
g_free(name);
}
}
g_slist_free(tag_list);
return quote_tag;
}
/* Move the iter over a string of consecutive '>' characters, and an
* optional ' ' character; returns the number of '>'s, and, if
* quote_string is not NULL, stores an allocated copy of the string
* (including the trailing ' ') at quote_string (or NULL, if there were
* no '>'s). */
static gint
get_quote_depth(GtkTextIter * iter, gchar ** quote_string)
{
gint quote_depth = 0;
GtkTextIter start = *iter;
while (gtk_text_iter_get_char(iter) == QUOTE_CHAR) {
quote_depth++;
gtk_text_iter_forward_char(iter);
}
if (quote_depth > 0 && gtk_text_iter_get_char(iter) == ' ')
gtk_text_iter_forward_char(iter);
if (quote_string) {
if (quote_depth > 0)
*quote_string = gtk_text_iter_get_text(&start, iter);
else
*quote_string = NULL;
}
return quote_depth;
}
/* Move the iter to the start of the line it's on; returns an allocated
* copy of the line (utf-8, including invisible characters and image
* markers). */
static gchar *
get_line(GtkTextBuffer * buffer, GtkTextIter * iter)
{
GtkTextIter end;
gtk_text_iter_set_line_offset(iter, 0);
end = *iter;
if (!gtk_text_iter_ends_line(&end))
gtk_text_iter_forward_to_line_end(&end);
return gtk_text_buffer_get_slice(buffer, iter, &end, TRUE);
}
/* Move the iter to position offset in the current line, and test
* whether it's in an URL. */
static gboolean
is_in_url(GtkTextIter * iter, gint offset, GtkTextTag * url_tag)
{
gtk_text_iter_set_line_offset(iter, offset);
return url_tag ? (gtk_text_iter_has_tag(iter, url_tag)
&& !gtk_text_iter_begins_tag(iter, url_tag)) : FALSE;
}
/* Remove soft newlines and associated quote strings from num_paras
* paragraphs in the buffer, starting at the line before iter; if
* num_paras < 0, process the whole buffer. */
/* Forward references: */
static gboolean prescanner(const gchar * p);
static void mark_urls(GtkTextBuffer * buffer, GtkTextIter * iter,
GtkTextTag * tag, const gchar * p);
static regex_t *get_url_reg(void);
void
libbalsa_unwrap_buffer(GtkTextBuffer * buffer, GtkTextIter * iter,
gint num_paras)
{
GtkTextTagTable *table = gtk_text_buffer_get_tag_table(buffer);
GtkTextTag *soft_tag = gtk_text_tag_table_lookup(table, "soft");
GtkTextTag *url_tag = gtk_text_tag_table_lookup(table, "url");
/* Check whether the previous line flowed into this one. */
gtk_text_iter_set_line_offset(iter, 0);
if (gtk_text_iter_ends_tag(iter, soft_tag))
gtk_text_iter_backward_line(iter);
for (; num_paras; num_paras--) {
gint quote_depth;
gint qd;
GtkTextIter start;
gchar *line;
gtk_text_iter_set_line_offset(iter, 0);
quote_depth = get_quote_depth(iter, NULL);
for (;;) {
gchar *quote_string;
gboolean stuffed;
/* Move to the end of the line, if not there already. */
if (!gtk_text_iter_ends_line(iter)
&& !gtk_text_iter_forward_to_line_end(iter))
return;
/* Save this iter as the start of a possible deletion. */
start = *iter;
/* Move to the start of the next line. */
if (!gtk_text_iter_forward_line(iter))
return;
qd = get_quote_depth(iter, "e_string);
stuffed = quote_string && quote_string[qd];
g_free(quote_string);
if (gtk_text_iter_has_tag(&start, soft_tag)) {
if (qd != quote_depth) {
/* Broken: use quote-depth-wins. */
GtkTextIter end = start;
gtk_text_iter_forward_to_tag_toggle(&end, soft_tag);
gtk_text_buffer_remove_tag(buffer, soft_tag,
&start, &end);
break;
}
} else
/* Hard newline. */
break;
if (qd > 0 && !stuffed) {
/* User deleted the space following the '>' chars; we'll
* delete the space at the end of the previous line, if
* there was one. */
gtk_text_iter_backward_char(&start);
if (gtk_text_iter_get_char(&start) != ' ')
gtk_text_iter_forward_char(&start);
}
gtk_text_buffer_delete(buffer, &start, iter);
}
if (num_paras < 0) {
/* This is a wrap_body call, not a continuous wrap, so we'll
* remove spaces before a hard newline. */
GtkTextIter tmp_iter;
/* Make sure it's not a usenet sig separator: */
tmp_iter = start;
if (!(gtk_text_iter_backward_char(&tmp_iter)
&& gtk_text_iter_get_char(&tmp_iter) == ' '
&& gtk_text_iter_backward_char(&tmp_iter)
&& gtk_text_iter_get_char(&tmp_iter) == '-'
&& gtk_text_iter_backward_char(&tmp_iter)
&& gtk_text_iter_get_char(&tmp_iter) == '-'
&& gtk_text_iter_get_line_offset(&tmp_iter) == qd)) {
*iter = start;
while (gtk_text_iter_get_line_offset(&start) >
(qd ? qd + 1 : 0)) {
gtk_text_iter_backward_char(&start);
if (gtk_text_iter_get_char(&start) != ' ') {
gtk_text_iter_forward_char(&start);
break;
}
}
gtk_text_buffer_delete(buffer, &start, iter);
}
if (!gtk_text_iter_forward_line(iter))
return;
}
line = get_line(buffer, &start);
if (prescanner(line))
mark_urls(buffer, &start, url_tag, line);
g_free(line);
}
}
/* Mark URLs in one line of the buffer */
static void
mark_urls(GtkTextBuffer * buffer, GtkTextIter * iter, GtkTextTag * tag,
const gchar * line)
{
const gchar *p = line;
regex_t *url_reg = get_url_reg();
regmatch_t url_match;
GtkTextIter start = *iter;
GtkTextIter end = *iter;
while (!regexec(url_reg, p, 1, &url_match, 0)) {
glong offset = g_utf8_pointer_to_offset(line, p + url_match.rm_so);
gtk_text_iter_set_line_offset(&start, offset);
offset = g_utf8_pointer_to_offset(line, p + url_match.rm_eo);
gtk_text_iter_set_line_offset(&end, offset);
gtk_text_buffer_apply_tag(buffer, tag, &start, &end);
p += url_match.rm_eo;
if (!prescanner(p))
break;
}
}
/* Prepare the buffer for sending with DelSp=Yes. */
void
libbalsa_prepare_delsp(GtkTextBuffer * buffer)
{
GtkTextTagTable *table = gtk_text_buffer_get_tag_table(buffer);
GtkTextTag *soft_tag = gtk_text_tag_table_lookup(table, "soft");
GtkTextIter iter;
gtk_text_buffer_get_start_iter(buffer, &iter);
while (gtk_text_iter_forward_to_line_end(&iter))
if (gtk_text_iter_has_tag(&iter, soft_tag))
gtk_text_buffer_insert(buffer, &iter, " ", 1);
}
/*
* End of wrap/unwrap view.
*/
/* libbalsa_insert_with_url:
* do a gtk_text_buffer_insert, but mark URL's with balsa_app.url_color
*
* prescanner:
* used to find candidates for lines containing URL's.
* Empirially, this approach is faster (by factor of 8) than scanning
* entire message with regexec. YMMV.
* s - is the line to scan.
* returns TRUE if the line may contain an URL.
*/
static gboolean
prescanner(const gchar * s)
{
gint left = strlen(s) - 6;
if (left <= 0)
return FALSE;
while (left--) {
switch (tolower(*s++)) {
case 'f': /* ftp:/, ftps: */
if (tolower(*s) == 't' &&
tolower(*(s + 1)) == 'p' &&
(*(s + 2) == ':' || tolower(*(s + 2)) == 's') &&
(*(s + 3) == ':' || *(s + 3) == '/'))
return TRUE;
break;
case 'h': /* http:, https */
if (tolower(*s) == 't' &&
tolower(*(s + 1)) == 't' &&
tolower(*(s + 2)) == 'p' &&
(*(s + 3) == ':' || tolower(*(s + 3)) == 's'))
return TRUE;
break;
case 'm': /* mailt */
if (tolower(*s) == 'a' &&
tolower(*(s + 1)) == 'i' &&
tolower(*(s + 2)) == 'l' && tolower(*(s + 3)) == 't')
return TRUE;
break;
case 'n': /* news:, nntp: */
if ((tolower(*s) == 'e' || tolower(*s) == 'n') &&
(tolower(*(s + 1)) == 'w' || tolower(*(s + 1)) == 't') &&
(tolower(*(s + 2)) == 's' || tolower(*(s + 2)) == 'p') &&
*(s + 3) == ':')
return TRUE;
break;
}
}
return FALSE;
}
static regex_t *
get_url_reg(void)
{
static regex_t *url_reg = NULL;
if (!url_reg) {
/* one-time compilation of a constant url_str expression */
static const char url_str[] =
"(((https?|ftps?|nntp)://)|(mailto:|news:))"
"(%[0-9A-F]{2}|[-_.!~*';/?:@&=+$,#[:alnum:]])+";
url_reg = g_new(regex_t, 1);
if (regcomp(url_reg, url_str, REG_EXTENDED | REG_ICASE) != 0)
g_warning("libbalsa_insert_with_url: "
"url regex compilation failed.");
}
return url_reg;
}
static regex_t *
get_ml_url_reg(void)
{
static regex_t *url_reg = NULL;
if (!url_reg) {
/* one-time compilation of a constant url_str expression */
static const char url_str[] =
"(%[0-9A-F]{2}|[-_.!~*';/?:@&=+$,#[:alnum:]]|[ \t]*[\r\n]+[ \t]*)+>";
url_reg = g_new(regex_t, 1);
if (regcomp(url_reg, url_str, REG_EXTENDED | REG_ICASE) != 0)
g_warning("libbalsa_insert_with_url: "
"multiline url regex compilation failed.");
}
return url_reg;
}
static regex_t *
get_ml_flowed_url_reg(void)
{
static regex_t *url_reg = NULL;
if (!url_reg) {
/* one-time compilation of a constant url_str expression */
static const char url_str[] =
"(%[0-9A-F]{2}|[-_.!~*';/?:@&=+$,#[:alnum:]]|[ \t]+)+>";
url_reg = g_new(regex_t, 1);
if (regcomp(url_reg, url_str, REG_EXTENDED | REG_ICASE) != 0)
g_warning("libbalsa_insert_with_url: "
"multiline url regex compilation failed.");
}
return url_reg;
}
gboolean
libbalsa_insert_with_url(GtkTextBuffer * buffer,
const char *chars,
const char *all_chars,
GtkTextTag * tag,
LibBalsaUrlInsertInfo *url_info)
{
gchar *p, *buf;
const gchar *all_p;
GtkTextIter iter;
buf = p = g_strdup(chars);
all_p = all_chars;
gtk_text_buffer_get_iter_at_mark(buffer, &iter,
gtk_text_buffer_get_insert(buffer));
/* if there shouldn't be a callback for URL's we don't need to detect
them... */
if (url_info) {
GtkTextTagTable *table = gtk_text_buffer_get_tag_table(buffer);
GtkTextTag *url_tag = gtk_text_tag_table_lookup(table, "url");
if (url_info->ml_url) {
gchar *url_end = strchr(p, '>');
if (url_end) {
url_info->ml_url_buffer =
g_string_append_len(url_info->ml_url_buffer, p, url_end - p);
gtk_text_buffer_insert_with_tags(buffer, &iter,
url_info->ml_url_buffer->str, -1,
url_tag, tag, NULL);
if (url_info->callback)
url_info->callback(buffer, &iter, url_info->ml_url, url_info->callback_data);
g_string_free(url_info->ml_url_buffer, TRUE);
g_free(url_info->ml_url);
url_info->ml_url_buffer = NULL;
url_info->ml_url = NULL;
p = url_end;
} else {
url_info->ml_url_buffer =
g_string_append(url_info->ml_url_buffer, p);
url_info->ml_url_buffer =
g_string_append_c(url_info->ml_url_buffer, '\n');
return TRUE;
}
}
if (prescanner(p)) {
gint offset = 0;
regex_t *url_reg = get_url_reg();
regmatch_t url_match;
gint match = regexec(url_reg, p, 1, &url_match, 0);
while (!match) {
gchar *buf;
gchar *spc;
if (url_match.rm_so) {
/* check if we hit a multi-line URL... (see RFC 1738) */
if (all_p && (p[url_match.rm_so - 1] == '<' ||
(url_match.rm_so > 4 &&
!g_ascii_strncasecmp(p + url_match.rm_so - 5, "<URL:", 5)))) {
/* if the input is flowed, we will see a space at
* url_match.rm_eo - in this case the complete remainder
* of the ml uri should be in the passed buffer... */
if (url_info && url_info->buffer_is_flowed &&
*(p + url_match.rm_eo) == ' ') {
regex_t *ml_flowed_url_reg = get_ml_flowed_url_reg();
regmatch_t ml_url_match;
if (!regexec(ml_flowed_url_reg,
all_chars + offset + url_match.rm_eo, 1,
&ml_url_match, 0) && ml_url_match.rm_so == 0)
url_match.rm_eo += ml_url_match.rm_eo - 1;
} else if (!strchr(p + url_match.rm_eo, '>')) {
regex_t *ml_url_reg = get_ml_url_reg();
regmatch_t ml_url_match;
if (!regexec(ml_url_reg,
all_chars + offset + url_match.rm_eo, 1,
&ml_url_match, 0) && ml_url_match.rm_so == 0) {
GString *ml_url = g_string_new("");
const gchar *ml_p = all_chars + offset + url_match.rm_so;
gint ml_cnt =
url_match.rm_eo - url_match.rm_so + ml_url_match.rm_eo - 1;
for (; ml_cnt; (ml_p++, ml_cnt--))
if (*ml_p > ' ')
ml_url = g_string_append_c(ml_url, *ml_p);
url_info->ml_url = ml_url->str;
g_string_free(ml_url, FALSE);
}
}
}
buf = g_strndup(p, url_match.rm_so);
gtk_text_buffer_insert_with_tags(buffer, &iter,
buf, -1, tag, NULL);
g_free(buf);
}
if (url_info->ml_url) {
url_info->ml_url_buffer = g_string_new(p + url_match.rm_so);
url_info->ml_url_buffer =
g_string_append_c(url_info->ml_url_buffer, '\n');
return TRUE;
}
/* add the url - it /may/ contain spaces if the text is flowed */
buf = g_strndup(p + url_match.rm_so,
url_match.rm_eo - url_match.rm_so);
if ((spc = strchr(buf, ' '))) {
GString *uri_real = g_string_new("");
gchar * p = buf;
while (spc) {
*spc = '\n';
g_string_append_len(uri_real, p, spc - p);
p = spc + 1;
spc = strchr(p, ' ');
}
g_string_append(uri_real, p);
gtk_text_buffer_insert_with_tags(buffer, &iter, buf, -1,
url_tag, tag, NULL);
if (url_info->callback)
url_info->callback(buffer, &iter, uri_real->str, url_info->callback_data);
g_string_free(uri_real, TRUE);
} else {
gtk_text_buffer_insert_with_tags(buffer, &iter, buf, -1,
url_tag, tag, NULL);
/* remember the URL and its position within the text */
if (url_info->callback)
url_info->callback(buffer, &iter, buf, url_info->callback_data);
}
g_free(buf);
p += url_match.rm_eo;
offset += url_match.rm_eo;
if (prescanner(p))
match = regexec(url_reg, p, 1, &url_match, 0);
else
match = -1;
}
}
}
if (*p)
gtk_text_buffer_insert_with_tags(buffer, &iter, p, -1, tag, NULL);
g_free(buf);
return FALSE;
}
void
libbalsa_unwrap_selection(GtkTextBuffer * buffer, regex_t * rex)
{
GtkTextIter start, end;
gchar *line;
guint quote_depth;
guint index;
GtkTextMark *selection_end;
gtk_text_buffer_get_selection_bounds(buffer, &start, &end);
gtk_text_iter_order(&start, &end);
selection_end = gtk_text_buffer_create_mark(buffer, NULL, &end, FALSE);
/* Find quote depth and index of first non-quoted character. */
line = get_line(buffer, &start);
if (libbalsa_match_regex(line, rex, "e_depth, &index)) {
/* Replace quote string with standard form. */
end = start;
gtk_text_iter_set_line_index(&end, index);
gtk_text_buffer_delete(buffer, &start, &end);
do
gtk_text_buffer_insert(buffer, &start, ">", 1);
while (--quote_depth);
gtk_text_buffer_insert(buffer, &start, " ", 1);
}
g_free(line);
/* Unwrap remaining lines. */
while (gtk_text_iter_ends_line(&start)
|| gtk_text_iter_forward_to_line_end(&start)) {
gtk_text_buffer_get_iter_at_mark(buffer, &end, selection_end);
if (gtk_text_iter_compare(&start, &end) >= 0)
break;
end = start;
if (!gtk_text_iter_forward_line(&end))
break;
line = get_line(buffer, &end);
libbalsa_match_regex(line, rex, NULL, &index);
g_free(line);
gtk_text_iter_set_line_index(&end, index);
gtk_text_buffer_delete(buffer, &start, &end);
/* Insert a space, if the line didn't end with one. */
if (!gtk_text_iter_starts_line(&start)) {
gtk_text_iter_backward_char(&start);
if (gtk_text_iter_get_char(&start) != ' ') {
start = end;
gtk_text_buffer_insert(buffer, &start, " ", 1);
}
}
}
}
gboolean
libbalsa_match_regex(const gchar * line, regex_t * rex, guint * count,
guint * index)
{
regmatch_t rm;
gint c;
const gchar *p;
c = 0;
for (p = line; regexec(rex, p, 1, &rm, 0) == 0; p += rm.rm_eo)
c++;
if (count)
*count = c;
if (index)
*index = p - line;
return c > 0;
}
|