diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2004-09-30 03:39:39 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2004-09-30 03:39:39 +0800 |
commit | 3196e27abd4e278f0c0b02806a48ab99f774722e (patch) | |
tree | 1a4af77acbecd729d4cc3031e2359b4f2d13103e /addressbook | |
parent | 81be4634777d39411437c1e7c516a63365452418 (diff) | |
download | gsoc2013-evolution-3196e27abd4e278f0c0b02806a48ab99f774722e.tar.gz gsoc2013-evolution-3196e27abd4e278f0c0b02806a48ab99f774722e.tar.zst gsoc2013-evolution-3196e27abd4e278f0c0b02806a48ab99f774722e.zip |
Fixes bug #66369.
2004-09-29 Hans Petter Jansson <hpj@ximian.com>
Fixes bug #66369.
* util/eab-book-util.c (eab_contact_list_from_string): Make the
vcard splitter work with any amount of blank lines between vcards.
svn path=/trunk/; revision=27429
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/util/eab-book-util.c | 60 |
2 files changed, 41 insertions, 26 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 09891b18a9..9864d59a38 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,12 @@ 2004-09-29 Hans Petter Jansson <hpj@ximian.com> + Fixes bug #66369. + + * util/eab-book-util.c (eab_contact_list_from_string): Make the + vcard splitter work with any amount of blank lines between vcards. + +2004-09-29 Hans Petter Jansson <hpj@ximian.com> + Fixes bug #65537. * gui/merging/eab-contact-compare.c (query_cb): Protect against NULL diff --git a/addressbook/util/eab-book-util.c b/addressbook/util/eab-book-util.c index c09cb259bb..1fdcd59ca0 100644 --- a/addressbook/util/eab-book-util.c +++ b/addressbook/util/eab-book-util.c @@ -184,9 +184,9 @@ eab_contact_list_from_string (const char *str) { GList *contacts = NULL; GString *gstr = g_string_new (""); + char *str_stripped; char *p = (char*)str; char *q; - char *blank_line; if (!p) return NULL; @@ -206,37 +206,45 @@ eab_contact_list_from_string (const char *str) p++; } - p = g_string_free (gstr, FALSE); - q = p; - do { - char *temp; + q = p = str_stripped = g_string_free (gstr, FALSE); - blank_line = strstr (q, "\n\n"); - if (blank_line) { - temp = g_strndup (q, blank_line - q); - } - else { - temp = g_strdup (q); - } + /* Note: The VCard standard says + * + * vcard = "BEGIN" [ws] ":" [ws] "VCARD" [ws] 1*CRLF + * items *CRLF "END" [ws] ":" [ws] "VCARD" + * + * which means we can have whitespace (e.g. "BEGIN : VCARD"). So we're not being + * fully compliant here, although I'm not sure it matters. The ideal solution + * would be to have a vcard parsing function that returned the end of the vcard + * parsed. Arguably, contact list parsing should all be in libebook's e-vcard.c, + * where we can do proper parsing and validation without code duplication. */ - /* Do a minimal well-formedness test, since - * e_contact_new_from_vcard () always returns a contact */ - if (!strstr (p, "BEGIN:VCARD")) { - g_free (temp); - break; - } + for (p = strstr (p, "BEGIN:VCARD"); p; p = strstr (q, "\nBEGIN:VCARD")) { + gchar *card_str; - contacts = g_list_append (contacts, e_contact_new_from_vcard (temp)); + if (*p == '\n') + p++; - g_free (temp); + for (q = strstr (p, "END:VCARD"); q; q = strstr (q, "END:VCARD")) { + gchar *temp; - if (blank_line) - q = blank_line + 2; - else - q = NULL; - } while (blank_line); + q += 9; + temp = q; + temp += strspn (temp, "\r\n\t "); + + if (*temp == '\0' || !strncmp (temp, "BEGIN:VCARD", 11)) + break; /* Found the outer END:VCARD */ + } + + if (!q) + break; + + card_str = g_strndup (p, q - p); + contacts = g_list_append (contacts, e_contact_new_from_vcard (card_str)); + g_free (card_str); + } - g_free (p); + g_free (str_stripped); return contacts; } |