]> git.notmuchmail.org Git - notmuch/blob - lib/thread.cc
Optimize thread search using matched docid sets.
[notmuch] / lib / thread.cc
1 /* thread.cc - Results of thread-based searches from a notmuch database
2  *
3  * Copyright © 2009 Carl Worth
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see http://www.gnu.org/licenses/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 #include "notmuch-private.h"
22 #include "database-private.h"
23
24 #include <gmime/gmime.h>
25 #include <glib.h> /* GHashTable */
26
27 struct _notmuch_thread {
28     notmuch_database_t *notmuch;
29     char *thread_id;
30     char *subject;
31     GHashTable *authors_hash;
32     GPtrArray *authors_array;
33     GHashTable *matched_authors_hash;
34     GPtrArray *matched_authors_array;
35     char *authors;
36     GHashTable *tags;
37
38     notmuch_message_list_t *message_list;
39     GHashTable *message_hash;
40     int total_messages;
41     int matched_messages;
42     time_t oldest;
43     time_t newest;
44 };
45
46 static int
47 _notmuch_thread_destructor (notmuch_thread_t *thread)
48 {
49     g_hash_table_unref (thread->authors_hash);
50     g_hash_table_unref (thread->matched_authors_hash);
51     g_hash_table_unref (thread->tags);
52     g_hash_table_unref (thread->message_hash);
53
54     if (thread->authors_array) {
55         g_ptr_array_free (thread->authors_array, TRUE);
56         thread->authors_array = NULL;
57     }
58
59     if (thread->matched_authors_array) {
60         g_ptr_array_free (thread->matched_authors_array, TRUE);
61         thread->matched_authors_array = NULL;
62     }
63
64     return 0;
65 }
66
67 /* Add each author of the thread to the thread's authors_hash and to
68  * the thread's authors_array. */
69 static void
70 _thread_add_author (notmuch_thread_t *thread,
71                     const char *author)
72 {
73     char *author_copy;
74
75     if (author == NULL)
76         return;
77
78     if (g_hash_table_lookup_extended (thread->authors_hash,
79                                       author, NULL, NULL))
80         return;
81
82     author_copy = talloc_strdup (thread, author);
83
84     g_hash_table_insert (thread->authors_hash, author_copy, NULL);
85
86     g_ptr_array_add (thread->authors_array, author_copy);
87 }
88
89 /* Add each matched author of the thread to the thread's
90  * matched_authors_hash and to the thread's matched_authors_array. */
91 static void
92 _thread_add_matched_author (notmuch_thread_t *thread,
93                             const char *author)
94 {
95     char *author_copy;
96
97     if (author == NULL)
98         return;
99
100     if (g_hash_table_lookup_extended (thread->matched_authors_hash,
101                                       author, NULL, NULL))
102         return;
103
104     author_copy = talloc_strdup (thread, author);
105
106     g_hash_table_insert (thread->matched_authors_hash, author_copy, NULL);
107
108     g_ptr_array_add (thread->matched_authors_array, author_copy);
109 }
110
111 /* Construct an authors string from matched_authors_array and
112  * authors_array. The string contains matched authors first, then
113  * non-matched authors (with the two groups separated by '|'). Within
114  * each group, authors are listed in date order. */
115 static void
116 _resolve_thread_authors_string (notmuch_thread_t *thread)
117 {
118     unsigned int i;
119     char *author;
120     int first_non_matched_author = 1;
121
122     /* First, list all matched authors in date order. */
123     for (i = 0; i < thread->matched_authors_array->len; i++) {
124         author = (char *) g_ptr_array_index (thread->matched_authors_array, i);
125         if (thread->authors)
126             thread->authors = talloc_asprintf (thread, "%s, %s",
127                                                thread->authors,
128                                                author);
129         else
130             thread->authors = author;
131     }
132
133     /* Next, append any non-matched authors that haven't already appeared. */
134     for (i = 0; i < thread->authors_array->len; i++) {
135         author = (char *) g_ptr_array_index (thread->authors_array, i);
136         if (g_hash_table_lookup_extended (thread->matched_authors_hash,
137                                           author, NULL, NULL))
138             continue;
139         if (first_non_matched_author) {
140             thread->authors = talloc_asprintf (thread, "%s| %s",
141                                                thread->authors,
142                                                author);
143         } else {
144             thread->authors = talloc_asprintf (thread, "%s, %s",
145                                                thread->authors,
146                                                author);
147         }
148
149         first_non_matched_author = 0;
150     }
151
152     g_ptr_array_free (thread->authors_array, TRUE);
153     thread->authors_array = NULL;
154     g_ptr_array_free (thread->matched_authors_array, TRUE);
155     thread->matched_authors_array = NULL;
156 }
157
158 /* clean up the ugly "Lastname, Firstname" format that some mail systems
159  * (most notably, Exchange) are creating to be "Firstname Lastname"
160  * To make sure that we don't change other potential situations where a
161  * comma is in the name, we check that we match one of these patterns
162  * "Last, First" <first.last@company.com>
163  * "Last, First MI" <first.mi.last@company.com>
164  */
165 static char *
166 _thread_cleanup_author (notmuch_thread_t *thread,
167                         const char *author, const char *from)
168 {
169     char *clean_author,*test_author;
170     const char *comma;
171     char *blank;
172     int fname,lname;
173
174     if (author == NULL)
175         return NULL;
176     clean_author = talloc_strdup(thread, author);
177     if (clean_author == NULL)
178         return NULL;
179     /* check if there's a comma in the name and that there's a
180      * component of the name behind it (so the name doesn't end with
181      * the comma - in which case the string that strchr finds is just
182      * one character long ",\0").
183      * Otherwise just return the copy of the original author name that
184      * we just made*/
185     comma = strchr(author,',');
186     if (comma && strlen(comma) > 1) {
187         /* let's assemble what we think is the correct name */
188         lname = comma - author;
189         fname = strlen(author) - lname - 2;
190         strncpy(clean_author, comma + 2, fname);
191         *(clean_author+fname) = ' ';
192         strncpy(clean_author + fname + 1, author, lname);
193         *(clean_author+fname+1+lname) = '\0';
194         /* make a temporary copy and see if it matches the email */
195         test_author = talloc_strdup(thread,clean_author);
196
197         blank=strchr(test_author,' ');
198         while (blank != NULL) {
199             *blank = '.';
200             blank=strchr(test_author,' ');
201         }
202         if (strcasestr(from, test_author) == NULL)
203             /* we didn't identify this as part of the email address
204             * so let's punt and return the original author */
205             strcpy (clean_author, author);
206     }
207     return clean_author;
208 }
209
210 /* Add 'message' as a message that belongs to 'thread'.
211  *
212  * The 'thread' will talloc_steal the 'message' and hold onto a
213  * reference to it.
214  */
215 static void
216 _thread_add_message (notmuch_thread_t *thread,
217                      notmuch_message_t *message)
218 {
219     notmuch_tags_t *tags;
220     const char *tag;
221     InternetAddressList *list = NULL;
222     InternetAddress *address;
223     const char *from, *author;
224     char *clean_author;
225
226     _notmuch_message_list_add_message (thread->message_list,
227                                        talloc_steal (thread, message));
228     thread->total_messages++;
229
230     g_hash_table_insert (thread->message_hash,
231                          xstrdup (notmuch_message_get_message_id (message)),
232                          message);
233
234     from = notmuch_message_get_header (message, "from");
235     if (from)
236         list = internet_address_list_parse_string (from);
237
238     if (list) {
239         address = internet_address_list_get_address (list, 0);
240         if (address) {
241             author = internet_address_get_name (address);
242             if (author == NULL) {
243                 InternetAddressMailbox *mailbox;
244                 mailbox = INTERNET_ADDRESS_MAILBOX (address);
245                 author = internet_address_mailbox_get_addr (mailbox);
246             }
247             clean_author = _thread_cleanup_author (thread, author, from);
248             _thread_add_author (thread, clean_author);
249             notmuch_message_set_author (message, clean_author);
250         }
251         g_object_unref (G_OBJECT (list));
252     }
253
254     if (! thread->subject) {
255         const char *subject;
256         subject = notmuch_message_get_header (message, "subject");
257         thread->subject = talloc_strdup (thread, subject ? subject : "");
258     }
259
260     for (tags = notmuch_message_get_tags (message);
261          notmuch_tags_valid (tags);
262          notmuch_tags_move_to_next (tags))
263     {
264         tag = notmuch_tags_get (tags);
265         g_hash_table_insert (thread->tags, xstrdup (tag), NULL);
266     }
267 }
268
269 static void
270 _thread_set_subject_from_message (notmuch_thread_t *thread,
271                                   notmuch_message_t *message)
272 {
273     const char *subject;
274     const char *cleaned_subject;
275
276     subject = notmuch_message_get_header (message, "subject");
277     if (! subject)
278         return;
279
280     if ((strncasecmp (subject, "Re: ", 4) == 0) ||
281         (strncasecmp (subject, "Aw: ", 4) == 0) ||
282         (strncasecmp (subject, "Vs: ", 4) == 0) ||
283         (strncasecmp (subject, "Sv: ", 4) == 0)) {
284
285         cleaned_subject = talloc_strndup (thread,
286                                           subject + 4,
287                                           strlen(subject) - 4);
288     } else {
289         cleaned_subject = talloc_strdup (thread, subject);
290     }
291
292     if (thread->subject)
293         talloc_free (thread->subject);
294
295     thread->subject = talloc_strdup (thread, cleaned_subject);
296 }
297
298 /* Add a message to this thread which is known to match the original
299  * search specification. The 'sort' parameter controls whether the
300  * oldest or newest matching subject is applied to the thread as a
301  * whole. */
302 static void
303 _thread_add_matched_message (notmuch_thread_t *thread,
304                              notmuch_message_t *message,
305                              notmuch_sort_t sort)
306 {
307     time_t date;
308     notmuch_message_t *hashed_message;
309
310     date = notmuch_message_get_date (message);
311
312     if (date < thread->oldest || ! thread->matched_messages) {
313         thread->oldest = date;
314         if (sort == NOTMUCH_SORT_OLDEST_FIRST)
315             _thread_set_subject_from_message (thread, message);
316     }
317
318     if (date > thread->newest || ! thread->matched_messages) {
319         thread->newest = date;
320         if (sort != NOTMUCH_SORT_OLDEST_FIRST)
321             _thread_set_subject_from_message (thread, message);
322     }
323
324     thread->matched_messages++;
325
326     if (g_hash_table_lookup_extended (thread->message_hash,
327                             notmuch_message_get_message_id (message), NULL,
328                             (void **) &hashed_message)) {
329         notmuch_message_set_flag (hashed_message,
330                                   NOTMUCH_MESSAGE_FLAG_MATCH, 1);
331     }
332
333     _thread_add_matched_author (thread, notmuch_message_get_author (hashed_message));
334 }
335
336 static void
337 _resolve_thread_relationships (unused (notmuch_thread_t *thread))
338 {
339     notmuch_message_node_t **prev, *node;
340     notmuch_message_t *message, *parent;
341     const char *in_reply_to;
342
343     prev = &thread->message_list->head;
344     while ((node = *prev)) {
345         message = node->message;
346         in_reply_to = _notmuch_message_get_in_reply_to (message);
347         if (in_reply_to && strlen (in_reply_to) &&
348             g_hash_table_lookup_extended (thread->message_hash,
349                                           in_reply_to, NULL,
350                                           (void **) &parent))
351         {
352             *prev = node->next;
353             if (thread->message_list->tail == &node->next)
354                 thread->message_list->tail = prev;
355             node->next = NULL;
356             _notmuch_message_add_reply (parent, node);
357         } else {
358             prev = &((*prev)->next);
359         }
360     }
361
362     /* XXX: After scanning through the entire list looking for parents
363      * via "In-Reply-To", we should do a second pass that looks at the
364      * list of messages IDs in the "References" header instead. (And
365      * for this the parent would be the "deepest" message of all the
366      * messages found in the "References" list.)
367      *
368      * Doing this will allow messages and sub-threads to be positioned
369      * correctly in the thread even when an intermediate message is
370      * missing from the thread.
371      */
372 }
373
374 /* Create a new notmuch_thread_t object by finding the thread
375  * containing the message with the given doc ID, treating any messages
376  * contained in match_set as "matched".  Remove all messages in the
377  * thread from match_set.
378  *
379  * Creating the thread will perform a database search to get all
380  * messages belonging to the thread and will get the first subject
381  * line, the total count of messages, and all authors in the thread.
382  * Each message in the thread is checked against match_set to allow
383  * for a separate count of matched messages, and to allow a viewer to
384  * display these messages differently.
385  *
386  * Here, 'ctx' is talloc context for the resulting thread object.
387  *
388  * This function returns NULL in the case of any error.
389  */
390 notmuch_thread_t *
391 _notmuch_thread_create (void *ctx,
392                         notmuch_database_t *notmuch,
393                         unsigned int seed_doc_id,
394                         notmuch_doc_id_set_t *match_set,
395                         notmuch_sort_t sort)
396 {
397     notmuch_thread_t *thread;
398     notmuch_message_t *seed_message;
399     const char *thread_id;
400     const char *thread_id_query_string;
401     notmuch_query_t *thread_id_query;
402
403     notmuch_messages_t *messages;
404     notmuch_message_t *message;
405
406     seed_message = _notmuch_message_create (ctx, notmuch, seed_doc_id, NULL);
407     if (! seed_message)
408         INTERNAL_ERROR ("Thread seed message %u does not exist", seed_doc_id);
409
410     thread_id = notmuch_message_get_thread_id (seed_message);
411     thread_id_query_string = talloc_asprintf (ctx, "thread:%s", thread_id);
412     if (unlikely (thread_id_query_string == NULL))
413         return NULL;
414
415     thread_id_query = notmuch_query_create (notmuch, thread_id_query_string);
416     if (unlikely (thread_id_query == NULL))
417         return NULL;
418
419     thread = talloc (ctx, notmuch_thread_t);
420     if (unlikely (thread == NULL))
421         return NULL;
422
423     talloc_set_destructor (thread, _notmuch_thread_destructor);
424
425     thread->notmuch = notmuch;
426     thread->thread_id = talloc_strdup (thread, thread_id);
427     thread->subject = NULL;
428     thread->authors_hash = g_hash_table_new_full (g_str_hash, g_str_equal,
429                                                   NULL, NULL);
430     thread->authors_array = g_ptr_array_new ();
431     thread->matched_authors_hash = g_hash_table_new_full (g_str_hash,
432                                                           g_str_equal,
433                                                           NULL, NULL);
434     thread->matched_authors_array = g_ptr_array_new ();
435     thread->authors = NULL;
436     thread->tags = g_hash_table_new_full (g_str_hash, g_str_equal,
437                                           free, NULL);
438
439     thread->message_list = _notmuch_message_list_create (thread);
440     if (unlikely (thread->message_list == NULL))
441         return NULL;
442
443     thread->message_hash = g_hash_table_new_full (g_str_hash, g_str_equal,
444                                                   free, NULL);
445
446     thread->total_messages = 0;
447     thread->matched_messages = 0;
448     thread->oldest = 0;
449     thread->newest = 0;
450
451     /* We use oldest-first order unconditionally here to obtain the
452      * proper author ordering for the thread. The 'sort' parameter
453      * passed to this function is used only to indicate whether the
454      * oldest or newest subject is desired. */
455     notmuch_query_set_sort (thread_id_query, NOTMUCH_SORT_OLDEST_FIRST);
456
457     for (messages = notmuch_query_search_messages (thread_id_query);
458          notmuch_messages_valid (messages);
459          notmuch_messages_move_to_next (messages))
460     {
461         unsigned int doc_id;
462
463         message = notmuch_messages_get (messages);
464         doc_id = _notmuch_message_get_doc_id (message);
465         if (doc_id == seed_doc_id)
466             message = seed_message;
467
468         _thread_add_message (thread, message);
469
470         if ( _notmuch_doc_id_set_contains (match_set, doc_id)) {
471             _notmuch_doc_id_set_remove (match_set, doc_id);
472             _thread_add_matched_message (thread, message, sort);
473         }
474
475         _notmuch_message_close (message);
476     }
477
478     notmuch_query_destroy (thread_id_query);
479
480     _resolve_thread_authors_string (thread);
481
482     _resolve_thread_relationships (thread);
483
484     return thread;
485 }
486
487 notmuch_messages_t *
488 notmuch_thread_get_toplevel_messages (notmuch_thread_t *thread)
489 {
490     return _notmuch_messages_create (thread->message_list);
491 }
492
493 const char *
494 notmuch_thread_get_thread_id (notmuch_thread_t *thread)
495 {
496     return thread->thread_id;
497 }
498
499 int
500 notmuch_thread_get_total_messages (notmuch_thread_t *thread)
501 {
502     return thread->total_messages;
503 }
504
505 int
506 notmuch_thread_get_matched_messages (notmuch_thread_t *thread)
507 {
508     return thread->matched_messages;
509 }
510
511 const char *
512 notmuch_thread_get_authors (notmuch_thread_t *thread)
513 {
514     return thread->authors;
515 }
516
517 const char *
518 notmuch_thread_get_subject (notmuch_thread_t *thread)
519 {
520     return thread->subject;
521 }
522
523 time_t
524 notmuch_thread_get_oldest_date (notmuch_thread_t *thread)
525 {
526     return thread->oldest;
527 }
528
529 time_t
530 notmuch_thread_get_newest_date (notmuch_thread_t *thread)
531 {
532     return thread->newest;
533 }
534
535 notmuch_tags_t *
536 notmuch_thread_get_tags (notmuch_thread_t *thread)
537 {
538     notmuch_tags_t *tags;
539     GList *keys, *l;
540
541     tags = _notmuch_tags_create (thread);
542     if (unlikely (tags == NULL))
543         return NULL;
544
545     keys = g_hash_table_get_keys (thread->tags);
546
547     for (l = keys; l; l = l->next)
548         _notmuch_tags_add_tag (tags, (char *) l->data);
549
550     g_list_free (keys);
551
552     _notmuch_tags_prepare_iterator (tags);
553
554     return tags;
555 }
556
557 void
558 notmuch_thread_destroy (notmuch_thread_t *thread)
559 {
560     talloc_free (thread);
561 }