]> git.notmuchmail.org Git - notmuch/blob - notmuch.c
f13fd27a1510b41365eea5b3bf1d803f83f2c5cf
[notmuch] / notmuch.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2009 Carl Worth
4  * Copyright © 2009 Keith Packard
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see http://www.gnu.org/licenses/ .
18  *
19  * Authors: Carl Worth <cworth@cworth.org>
20  *          Keith Packard <keithp@keithp.com>
21  */
22
23 #include "notmuch-client.h"
24
25 typedef int (*command_function_t) (void *ctx, int argc, char *argv[]);
26
27 typedef struct command {
28     const char *name;
29     command_function_t function;
30     const char *arguments;
31     const char *summary;
32 } command_t;
33
34 static int
35 notmuch_help_command (void *ctx, int argc, char *argv[]);
36
37 static command_t commands[] = {
38     { "setup", notmuch_setup_command,
39       NULL,
40       "Interactively setup notmuch for first use." },
41     { "new", notmuch_new_command,
42       "[options...]",
43       "Find and import new messages to the notmuch database." },
44     { "search", notmuch_search_command,
45       "[options...] <search-terms> [...]",
46       "Search for messages matching the given search terms." },
47     { "show", notmuch_show_command,
48       "<search-terms> [...]",
49       "Show all messages matching the search terms." },
50     { "count", notmuch_count_command,
51       "[options...] <search-terms> [...]",
52       "Count messages matching the search terms." },
53     { "reply", notmuch_reply_command,
54       "[options...] <search-terms> [...]",
55       "Construct a reply template for a set of messages." },
56     { "tag", notmuch_tag_command,
57       "+<tag>|-<tag> [...] [--] <search-terms> [...]" ,
58       "Add/remove tags for all messages matching the search terms." },
59     { "dump", notmuch_dump_command,
60       "[<filename>] [--] [<search-terms>]",
61       "Create a plain-text dump of the tags for each message." },
62     { "restore", notmuch_restore_command,
63       "[--accumulate] [<filename>]",
64       "Restore the tags from the given dump file (see 'dump')." },
65     { "config", notmuch_config_command,
66       "[get|set] <section>.<item> [value ...]",
67       "Get or set settings in the notmuch configuration file." },
68     { "help", notmuch_help_command,
69       "[<command>]",
70       "This message, or more detailed help for the named command." }
71 };
72
73 int notmuch_format_version;
74
75 static void
76 usage (FILE *out)
77 {
78     command_t *command;
79     unsigned int i;
80
81     fprintf (out,
82              "Usage: notmuch --help\n"
83              "       notmuch --version\n"
84              "       notmuch <command> [args...]\n");
85     fprintf (out, "\n");
86     fprintf (out, "The available commands are as follows:\n");
87     fprintf (out, "\n");
88
89     for (i = 0; i < ARRAY_SIZE (commands); i++) {
90         command = &commands[i];
91
92         fprintf (out, "  %-11s  %s\n",
93                  command->name, command->summary);
94     }
95
96     fprintf (out, "\n");
97     fprintf (out,
98     "Use \"notmuch help <command>\" for more details on each command\n"
99     "and \"notmuch help search-terms\" for the common search-terms syntax.\n\n");
100 }
101
102 void
103 notmuch_exit_if_unsupported_format (void)
104 {
105     if (notmuch_format_version > NOTMUCH_FORMAT_CUR) {
106         fprintf (stderr, "\
107 A caller requested output format version %d, but the installed notmuch\n\
108 CLI only supports up to format version %d.  You may need to upgrade your\n\
109 notmuch CLI.\n",
110                  notmuch_format_version, NOTMUCH_FORMAT_CUR);
111         exit (NOTMUCH_EXIT_FORMAT_TOO_NEW);
112     } else if (notmuch_format_version < NOTMUCH_FORMAT_MIN) {
113         fprintf (stderr, "\
114 A caller requested output format version %d, which is no longer supported\n\
115 by the notmuch CLI (it requires at least version %d).  You may need to\n\
116 upgrade your notmuch front-end.\n",
117                  notmuch_format_version, NOTMUCH_FORMAT_MIN);
118         exit (NOTMUCH_EXIT_FORMAT_TOO_OLD);
119     } else if (notmuch_format_version != NOTMUCH_FORMAT_CUR) {
120         /* Warn about old version requests so compatibility issues are
121          * less likely when we drop support for a deprecated format
122          * versions. */
123         fprintf (stderr, "\
124 A caller requested deprecated output format version %d, which may not\n\
125 be supported in the future.\n", notmuch_format_version);
126     }
127 }
128
129 static void
130 exec_man (const char *page)
131 {
132     if (execlp ("man", "man", page, (char *) NULL)) {
133         perror ("exec man");
134         exit (1);
135     }
136 }
137
138 static int
139 notmuch_help_command (void *ctx, int argc, char *argv[])
140 {
141     command_t *command;
142     unsigned int i;
143
144     argc--; argv++; /* Ignore "help" */
145
146     if (argc == 0) {
147         printf ("The notmuch mail system.\n\n");
148         usage (stdout);
149         return 0;
150     }
151
152     if (strcmp (argv[0], "help") == 0) {
153         printf ("The notmuch help system.\n\n"
154                 "\tNotmuch uses the man command to display help. In case\n"
155                 "\tof difficulties check that MANPATH includes the pages\n"
156                 "\tinstalled by notmuch.\n\n"
157                 "\tTry \"notmuch help\" for a list of topics.\n");
158         return 0;
159     }
160
161     for (i = 0; i < ARRAY_SIZE (commands); i++) {
162         command = &commands[i];
163
164         if (strcmp (argv[0], command->name) == 0) {
165             char *page = talloc_asprintf (ctx, "notmuch-%s", command->name);
166             exec_man (page);
167         }
168     }
169
170     if (strcmp (argv[0], "search-terms") == 0) {
171         exec_man ("notmuch-search-terms");
172     } else if (strcmp (argv[0], "hooks") == 0) {
173         exec_man ("notmuch-hooks");
174     }
175
176     fprintf (stderr,
177              "\nSorry, %s is not a known command. There's not much I can do to help.\n\n",
178              argv[0]);
179     return 1;
180 }
181
182 /* Handle the case of "notmuch" being invoked with no command
183  * argument. For now we just call notmuch_setup_command, but we plan
184  * to be more clever about this in the future.
185  */
186 static int
187 notmuch (void *ctx)
188 {
189     notmuch_config_t *config;
190     notmuch_bool_t is_new;
191     char *db_path;
192     struct stat st;
193
194     config = notmuch_config_open (ctx, NULL, &is_new);
195
196     /* If the user has never configured notmuch, then run
197      * notmuch_setup_command which will give a nice welcome message,
198      * and interactively guide the user through the configuration. */
199     if (is_new) {
200         notmuch_config_close (config);
201         return notmuch_setup_command (ctx, 0, NULL);
202     }
203
204     /* Notmuch is already configured, but is there a database? */
205     db_path = talloc_asprintf (ctx, "%s/%s",
206                                notmuch_config_get_database_path (config),
207                                ".notmuch");
208     if (stat (db_path, &st)) {
209         notmuch_config_close (config);
210         if (errno != ENOENT) {
211             fprintf (stderr, "Error looking for notmuch database at %s: %s\n",
212                      db_path, strerror (errno));
213             return 1;
214         }
215         printf ("Notmuch is configured, but there's not yet a database at\n\n\t%s\n\n",
216                 db_path);
217         printf ("You probably want to run \"notmuch new\" now to create that database.\n\n"
218                 "Note that the first run of \"notmuch new\" can take a very long time\n"
219                 "and that the resulting database will use roughly the same amount of\n"
220                 "storage space as the email being indexed.\n\n");
221         return 0;
222     }
223
224     printf ("Notmuch is configured and appears to have a database. Excellent!\n\n"
225             "At this point you can start exploring the functionality of notmuch by\n"
226             "using commands such as:\n\n"
227             "\tnotmuch search tag:inbox\n\n"
228             "\tnotmuch search to:\"%s\"\n\n"
229             "\tnotmuch search from:\"%s\"\n\n"
230             "\tnotmuch search subject:\"my favorite things\"\n\n"
231             "See \"notmuch help search\" for more details.\n\n"
232             "You can also use \"notmuch show\" with any of the thread IDs resulting\n"
233             "from a search. Finally, you may want to explore using a more sophisticated\n"
234             "interface to notmuch such as the emacs interface implemented in notmuch.el\n"
235             "or any other interface described at http://notmuchmail.org\n\n"
236             "And don't forget to run \"notmuch new\" whenever new mail arrives.\n\n"
237             "Have fun, and may your inbox never have much mail.\n\n",
238             notmuch_config_get_user_name (config),
239             notmuch_config_get_user_primary_email (config));
240
241     notmuch_config_close (config);
242
243     return 0;
244 }
245
246 int
247 main (int argc, char *argv[])
248 {
249     void *local;
250     command_t *command;
251     unsigned int i;
252
253     talloc_enable_null_tracking ();
254
255     local = talloc_new (NULL);
256
257     g_mime_init (0);
258     g_type_init ();
259
260     /* Globally default to the current output format version. */
261     notmuch_format_version = NOTMUCH_FORMAT_CUR;
262
263     if (argc == 1)
264         return notmuch (local);
265
266     if (strcmp (argv[1], "--help") == 0)
267         return notmuch_help_command (NULL, argc - 1, &argv[1]);
268
269     if (strcmp (argv[1], "--version") == 0) {
270         printf ("notmuch " STRINGIFY(NOTMUCH_VERSION) "\n");
271         return 0;
272     }
273
274     for (i = 0; i < ARRAY_SIZE (commands); i++) {
275         command = &commands[i];
276
277         if (strcmp (argv[1], command->name) == 0) {
278             int ret;
279             char *talloc_report;
280
281             ret = (command->function)(local, argc - 1, &argv[1]);
282
283             /* in the future support for this environment variable may
284              * be supplemented or replaced by command line arguments
285              * --leak-report and/or --leak-report-full */
286
287             talloc_report = getenv ("NOTMUCH_TALLOC_REPORT");
288
289             /* this relies on the previous call to
290              * talloc_enable_null_tracking */
291
292             if (talloc_report && strcmp (talloc_report, "") != 0) {
293                 FILE *report = fopen (talloc_report, "w");
294                 talloc_report_full (NULL, report);
295             }
296
297             return ret;
298         }
299     }
300
301     fprintf (stderr, "Error: Unknown command '%s' (see \"notmuch help\")\n",
302              argv[1]);
303
304     talloc_free (local);
305
306     return 1;
307 }