]> git.notmuchmail.org Git - notmuch/blob - notmuch-search.c
Use $(MAKE) when invoking make from make.
[notmuch] / notmuch-search.c
1 /* notmuch - Not much of an email program, (just index and search)
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-client.h"
22
23 int
24 notmuch_search_command (void *ctx, int argc, char *argv[])
25 {
26     notmuch_config_t *config;
27     notmuch_database_t *notmuch;
28     notmuch_query_t *query;
29     notmuch_threads_t *threads;
30     notmuch_thread_t *thread;
31     notmuch_tags_t *tags;
32     char *query_str;
33     const char *relative_date;
34     time_t date;
35     int i, first = 0, max_threads = -1;
36     char *opt, *end;
37
38     for (i = 0; i < argc && argv[i][0] == '-'; i++) {
39         if (strcmp (argv[i], "--") == 0) {
40             i++;
41             break;
42         }
43         if (STRNCMP_LITERAL (argv[i], "--first=") == 0) {
44             opt = argv[i] + sizeof ("--first=") - 1;
45             first = strtoul (opt, &end, 10);
46             if (*opt == '\0' || *end != '\0') {
47                 fprintf (stderr, "Invalid value for --first: %s\n", opt);
48                 return 1;
49             }
50         } else if (STRNCMP_LITERAL (argv[i], "--max-threads=") == 0) {
51             opt = argv[i] + sizeof ("--max-threads=") - 1;
52             max_threads = strtoul (opt, &end, 10);
53             if (*opt == '\0' || *end != '\0') {
54                 fprintf (stderr, "Invalid value for --max-threads: %s\n", opt);
55                 return 1;
56             }
57         }
58     }
59
60     argc -= i;
61     argv += i;
62
63     config = notmuch_config_open (ctx, NULL, NULL);
64     if (config == NULL)
65         return 1;
66
67     notmuch = notmuch_database_open (notmuch_config_get_database_path (config));
68     if (notmuch == NULL)
69         return 1;
70
71     query_str = query_string_from_args (ctx, argc, argv);
72     if (query_str == NULL) {
73         fprintf (stderr, "Out of moemory.\n");
74         return 1;
75     }
76
77     query = notmuch_query_create (notmuch, query_str);
78     if (query == NULL) {
79         fprintf (stderr, "Out of memory\n");
80         return 1;
81     }
82
83     for (threads = notmuch_query_search_threads (query, first, max_threads);
84          notmuch_threads_has_more (threads);
85          notmuch_threads_advance (threads))
86     {
87         int first = 1;
88
89         thread = notmuch_threads_get (threads);
90
91         date = notmuch_thread_get_oldest_date (thread);
92         relative_date = notmuch_time_relative_date (ctx, date);
93
94         printf ("thread:%s %12s %s; %s",
95                 notmuch_thread_get_thread_id (thread),
96                 relative_date,
97                 notmuch_thread_get_authors (thread),
98                 notmuch_thread_get_subject (thread));
99
100         printf (" (");
101         for (tags = notmuch_thread_get_tags (thread);
102              notmuch_tags_has_more (tags);
103              notmuch_tags_advance (tags))
104         {
105             if (! first)
106                 printf (" ");
107             printf ("%s", notmuch_tags_get (tags));
108             first = 0;
109         }
110         printf (")\n");
111
112         notmuch_thread_destroy (thread);
113     }
114
115     notmuch_query_destroy (query);
116     notmuch_database_close (notmuch);
117
118     return 0;
119 }