1 /* notmuch - Not much of an email program, (just index and search)
3 * Copyright © 2013 Ben Gamari
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.
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.
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/ .
18 * Author: Ben Gamari <bgamari.foss@gmail.com>
21 #include "notmuch-client.h"
24 status_update_cb (const char *msg, unused (void *closure))
30 notmuch_compact_command (notmuch_config_t *config, int argc, char *argv[])
32 const char *path = notmuch_config_get_database_path (config);
33 const char *backup_path = NULL;
38 notmuch_opt_desc_t options[] = {
39 { .opt_string = &backup_path, .name = "backup" },
40 { .opt_bool = &quiet, .name = "quiet" },
41 { .opt_inherit = notmuch_shared_options },
45 opt_index = parse_arguments (argc, argv, options, 1);
49 if (notmuch_requested_db_uuid) {
50 fprintf (stderr, "Error: --uuid not implemented for compact\n");
54 notmuch_process_shared_options (argv[0]);
57 printf ("Compacting database...\n");
58 ret = notmuch_database_compact (path, backup_path,
59 quiet ? NULL : status_update_cb, NULL);
61 fprintf (stderr, "Compaction failed: %s\n", notmuch_status_to_string (ret));
67 printf ("The old database has been moved to %s.\n", backup_path);