]> git.notmuchmail.org Git - notmuch/blob - notmuch-compact.c
Merge tag '0.31.4'
[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 https://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 (unused(notmuch_config_t *config), notmuch_database_t *notmuch, int argc, char *argv[])
31 {
32     const char *backup_path = NULL;
33     notmuch_status_t ret;
34     bool quiet = false;
35     int opt_index;
36
37     notmuch_opt_desc_t options[] = {
38         { .opt_string = &backup_path, .name = "backup" },
39         { .opt_bool =  &quiet, .name = "quiet" },
40         { .opt_inherit = notmuch_shared_options },
41         { }
42     };
43
44     opt_index = parse_arguments (argc, argv, options, 1);
45     if (opt_index < 0)
46         return EXIT_FAILURE;
47
48     if (notmuch_requested_db_uuid) {
49         fprintf (stderr, "Error: --uuid not implemented for compact\n");
50         return EXIT_FAILURE;
51     }
52
53     notmuch_process_shared_options (argv[0]);
54
55     if (! quiet)
56         printf ("Compacting database...\n");
57     ret = notmuch_database_compact_db (notmuch, backup_path,
58                                        quiet ? NULL : status_update_cb, NULL);
59     if (ret) {
60         fprintf (stderr, "Compaction failed: %s\n", notmuch_status_to_string (ret));
61         return EXIT_FAILURE;
62     }
63
64     if (! quiet) {
65         if (backup_path)
66             printf ("The old database has been moved to %s.\n", backup_path);
67
68         printf ("Done.\n");
69     }
70
71     return EXIT_SUCCESS;
72 }