]> git.notmuchmail.org Git - notmuch/blob - notmuch-compact.c
lib: construct compactor within try block to catch any exceptions
[notmuch] / notmuch-compact.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2013 Ben Gamari
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: Ben Gamari <bgamari.foss@gmail.com>
19  */
20
21 #include "notmuch-client.h"
22
23 void status_update_cb (const char *msg);
24
25 void
26 status_update_cb (const char *msg)
27 {
28     printf("%s\n", msg);
29 }
30
31 int
32 notmuch_compact_command (notmuch_config_t *config,
33                          unused (int argc),
34                          unused (char *argv[]))
35 {
36     const char *path = notmuch_config_get_database_path (config);
37     const char *backup_path = path;
38     notmuch_status_t ret;
39
40     printf ("Compacting database...\n");
41     ret = notmuch_database_compact (path, backup_path, status_update_cb);
42     if (ret) {
43         fprintf (stderr, "Compaction failed: %s\n", notmuch_status_to_string(ret));
44     } else {
45         printf ("\n");
46         printf ("\n");
47         printf ("The old database has been moved to %s/xapian.old", backup_path);
48         printf ("\n");
49         printf ("To delete run,\n");
50         printf ("\n");
51         printf ("    rm -R %s/xapian.old\n", backup_path);
52         printf ("\n");
53     }
54
55     return 0;
56 }