]> git.notmuchmail.org Git - notmuch/blob - notmuch-compact.c
lib: use the compaction backup path provided by the caller
[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 static void
24 status_update_cb (const char *msg, unused (void *closure))
25 {
26     printf("%s\n", msg);
27 }
28
29 int
30 notmuch_compact_command (notmuch_config_t *config,
31                          unused (int argc),
32                          unused (char *argv[]))
33 {
34     const char *path = notmuch_config_get_database_path (config);
35     const char *backup_path;
36     notmuch_status_t ret;
37
38     backup_path = talloc_asprintf (config, "%s/xapian.old", path);
39     if (! backup_path)
40         return 1;
41
42     printf ("Compacting database...\n");
43     ret = notmuch_database_compact (path, backup_path, status_update_cb, NULL);
44     if (ret) {
45         fprintf (stderr, "Compaction failed: %s\n", notmuch_status_to_string(ret));
46     } else {
47         printf ("\n");
48         printf ("\n");
49         printf ("The old database has been moved to %s", backup_path);
50         printf ("\n");
51         printf ("To delete run,\n");
52         printf ("\n");
53         printf ("    rm -R %s\n", backup_path);
54         printf ("\n");
55     }
56
57     return 0;
58 }