mu/src/mu-config.c

346 lines
9.5 KiB
C
Raw Normal View History

/*
** Copyright (C) 2008-2010 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** This program is free software; you can redistribute it and/or modify it
** under the terms of the GNU General Public License as published by the
** Free Software Foundation; either version 3, or (at your option) any
** later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software Foundation,
** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif /*HAVE_CONFIG_H*/
#include <glib.h>
2010-12-07 22:17:05 +01:00
#include <string.h> /* memset */
#include "mu-util.h"
#include "mu-config.h"
2011-01-02 13:59:03 +01:00
static void
set_group_mu_defaults (MuConfigOptions *opts)
{
2010-12-07 22:17:05 +01:00
gchar *exp;
2010-12-07 22:17:05 +01:00
if (!opts->muhome)
opts->muhome = mu_util_guess_mu_homedir();
2010-12-07 22:17:05 +01:00
exp = mu_util_dir_expand(opts->muhome);
if (exp) {
g_free(opts->muhome);
opts->muhome = exp;
}
}
2011-01-02 13:59:03 +01:00
static GOptionGroup*
config_options_group_mu (MuConfigOptions *opts)
2010-12-07 22:17:05 +01:00
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"debug", 'd', 0, G_OPTION_ARG_NONE, &opts->debug,
"print debug output to standard error", NULL},
{"quiet", 'q', 0, G_OPTION_ARG_NONE, &opts->quiet,
"don't give any progress information", NULL},
{"version", 'v', 0, G_OPTION_ARG_NONE, &opts->version,
"display version and copyright information", NULL},
{"muhome", 0, 0, G_OPTION_ARG_FILENAME, &opts->muhome,
"specify an alternative mu directory", NULL},
{"log-stderr", 0, 0, G_OPTION_ARG_NONE, &opts->log_stderr,
"log to standard error", NULL},
{G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_STRING_ARRAY,
&opts->params, "parameters", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("mu", "general mu options", "", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
2011-01-02 13:59:03 +01:00
static void
set_group_index_defaults (MuConfigOptions * opts)
{
2010-12-07 22:17:05 +01:00
gchar *exp;
2010-12-07 22:17:05 +01:00
if (!opts->maildir)
opts->maildir = mu_util_guess_maildir();
2010-12-07 22:17:05 +01:00
exp = mu_util_dir_expand(opts->maildir);
if (exp) {
g_free(opts->maildir);
opts->maildir = exp;
}
opts->xbatchsize = 0;
}
2011-01-02 13:59:03 +01:00
static GOptionGroup*
config_options_group_index (MuConfigOptions * opts)
{
2010-12-07 22:17:05 +01:00
GOptionGroup *og;
GOptionEntry entries[] = {
{"maildir", 'm', 0, G_OPTION_ARG_FILENAME, &opts->maildir,
"top of the maildir", NULL},
{"reindex", 0, 0, G_OPTION_ARG_NONE, &opts->reindex,
"index even already indexed messages", NULL},
{"rebuild", 0, 0, G_OPTION_ARG_NONE, &opts->rebuild,
"rebuild the database from scratch", NULL},
{"autoupgrade", 0, 0, G_OPTION_ARG_NONE, &opts->autoupgrade,
"automatically upgrade the database with new mu versions",
NULL},
{"nocleanup", 0, 0, G_OPTION_ARG_NONE, &opts->nocleanup,
"don't clean up the database after indexing", NULL},
{"xbatchsize", 0, 0, G_OPTION_ARG_INT, &opts->xbatchsize,
"set a custom batchsize for committing to xapian or 0 for default", NULL},
2010-12-07 22:17:05 +01:00
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("index",
"options for the 'index' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
2011-01-02 13:59:03 +01:00
static void
set_group_find_defaults (MuConfigOptions *opts)
{
2010-12-07 22:17:05 +01:00
/* note, when no fields are specified, we use
* date-from-subject, and sort descending by date. If fields
* *are* specified, we sort in ascending order. */
if (!opts->fields) {
opts->fields = "d f s";
if (!opts->sortfield) {
opts->sortfield = "d";
opts->descending = TRUE;
}
2010-11-23 22:52:37 +01:00
}
2010-12-07 22:17:05 +01:00
if (opts->linksdir) {
gchar *old = opts->linksdir;
opts->linksdir = mu_util_dir_expand(opts->linksdir);
if (!opts->linksdir) /* we'll check the dir later */
opts->linksdir = old;
else
g_free(old);
}
2010-12-07 22:17:05 +01:00
/* FIXME: some warning when summary_len < 0? */
if (opts->summary_len < 1)
opts->summary_len = 0;
}
2011-01-02 13:59:03 +01:00
static GOptionGroup*
config_options_group_find (MuConfigOptions *opts)
{
2010-12-07 22:17:05 +01:00
GOptionGroup *og;
GOptionEntry entries[] = {
{"xquery", 0, 0, G_OPTION_ARG_NONE, &opts->xquery,
"print the Xapian query (for debugging)", NULL},
{"fields", 'f', 0, G_OPTION_ARG_STRING, &opts->fields,
"fields to display in the output", NULL},
{"sortfield", 's', 0, G_OPTION_ARG_STRING, &opts->sortfield,
"field to sort on", NULL},
{"bookmark", 'b', 0, G_OPTION_ARG_STRING, &opts->bookmark,
"use a bookmarked query", NULL},
{"descending", 'z', 0, G_OPTION_ARG_NONE, &opts->descending,
"sort in descending order (z -> a)", NULL},
{"summary-len", 'k', 0, G_OPTION_ARG_INT, &opts->summary_len,
"max number of lines for summary", NULL},
{"linksdir", 0, 0, G_OPTION_ARG_STRING, &opts->linksdir,
"output as symbolic links to a target maildir", NULL},
{"clearlinks", 0, 0, G_OPTION_ARG_NONE, &opts->clearlinks,
"clear old links before filling a linksdir", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
og = g_option_group_new("find",
"options for the 'find' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
2011-01-02 13:59:03 +01:00
static GOptionGroup *
config_options_group_mkdir (MuConfigOptions *opts)
2010-12-07 22:17:05 +01:00
{
GOptionGroup *og;
GOptionEntry entries[] = {
{"mode", 0, 0, G_OPTION_ARG_INT, &opts->dirmode,
"set the mode (as in chmod), in octal notation", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
/* set dirmode before, because '0000' is a valid mode */
opts->dirmode = 0755;
og = g_option_group_new("mkdir",
"options for the 'mkdir' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
2011-01-02 13:59:03 +01:00
static GOptionGroup*
config_options_group_extract(MuConfigOptions *opts)
{
2010-12-07 22:17:05 +01:00
GOptionGroup *og;
GOptionEntry entries[] = {
{"save-attachments", 'a', 0, G_OPTION_ARG_NONE,
&opts->save_attachments,
"save all attachments", NULL},
{"save-all", 0, 0, G_OPTION_ARG_NONE, &opts->save_all,
"save all parts (incl. non-attachments)", NULL},
{"parts", 0, 0, G_OPTION_ARG_STRING, &opts->parts,
"save specific parts (comma-separated list)", NULL},
{"target-dir", 0, 0, G_OPTION_ARG_FILENAME, &opts->targetdir,
"target directory for saving", NULL},
{"overwrite", 0, 0, G_OPTION_ARG_NONE, &opts->overwrite,
"overwrite existing files", NULL},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
opts->targetdir = g_strdup("."); /* default is the current dir */
og = g_option_group_new("extract",
"options for the 'extract' command",
"", NULL, NULL);
g_option_group_add_entries(og, entries);
return og;
}
static MuConfigCmd
cmd_from_params (int *argcp, char ***argvp)
{
int i;
const char *cmd;
typedef struct {
const gchar* _name;
MuConfigCmd _cmd;
} Cmd;
Cmd cmd_map[] = {
{ "index", MU_CONFIG_CMD_INDEX },
{ "find", MU_CONFIG_CMD_FIND },
{ "cleanup", MU_CONFIG_CMD_CLEANUP },
{ "mkdir", MU_CONFIG_CMD_MKDIR },
{ "view", MU_CONFIG_CMD_VIEW },
{ "extract", MU_CONFIG_CMD_EXTRACT }
};
if (*argcp < 2)
return MU_CONFIG_CMD_UNKNOWN;
cmd = (*argvp)[1]; /* commmand or option */
for (i = 0; i != G_N_ELEMENTS(cmd_map); ++i)
if (strcmp (cmd, cmd_map[i]._name) == 0)
return cmd_map[i]._cmd;
/* if the first param starts with '-', there is no command, just some option
* (like --version, --help etc.)*/
if (cmd[0] == '-')
return MU_CONFIG_CMD_NONE;
return MU_CONFIG_CMD_UNKNOWN;
}
2011-01-02 13:59:03 +01:00
static gboolean
parse_params (MuConfigOptions *opts, int *argcp, char ***argvp)
2010-12-07 22:17:05 +01:00
{
GError *err;
GOptionContext *context;
gboolean rv;
opts->cmd = cmd_from_params (argcp, argvp);
if (opts->cmd == MU_CONFIG_CMD_UNKNOWN)
return FALSE;
2010-12-07 22:17:05 +01:00
context = g_option_context_new("- mu general option");
g_option_context_set_main_group(context, config_options_group_mu(opts));
switch (opts->cmd) {
case MU_CONFIG_CMD_INDEX:
g_option_context_add_group(context, config_options_group_index(opts));
break;
case MU_CONFIG_CMD_FIND:
g_option_context_add_group(context, config_options_group_find(opts));
break;
case MU_CONFIG_CMD_MKDIR:
g_option_context_add_group(context, config_options_group_mkdir(opts));
break;
case MU_CONFIG_CMD_EXTRACT:
g_option_context_add_group(context, config_options_group_extract(opts));
break;
case MU_CONFIG_CMD_UNKNOWN:
default:
break;
}
2010-12-07 22:17:05 +01:00
err = NULL;
rv = g_option_context_parse(context, argcp, argvp, &err);
if (!rv) {
/* use g_printerr here, as logging is not yet initialized */
if (opts->cmd != MU_CONFIG_CMD_NONE)
g_printerr ("error in options for command: %s\n", err->message);
else
g_printerr ("error in options: %s\n", err->message);
2010-12-07 22:17:05 +01:00
g_error_free(err);
}
2010-12-07 22:17:05 +01:00
g_option_context_free(context);
2010-12-07 22:17:05 +01:00
/* fill in the defaults if user did not specify */
set_group_mu_defaults(opts);
set_group_index_defaults(opts);
set_group_find_defaults(opts);
/* set_group_mkdir_defaults (opts); */
2010-12-07 22:17:05 +01:00
return rv;
}
2011-01-02 13:59:03 +01:00
gboolean
mu_config_init (MuConfigOptions *opts, int *argcp, char ***argvp)
{
2010-12-07 22:17:05 +01:00
g_return_val_if_fail(opts, FALSE);
memset(opts, 0, sizeof(MuConfigOptions));
2010-12-07 22:17:05 +01:00
/* defaults are set in parse_params */
if (argcp && argvp)
2010-12-07 22:17:05 +01:00
if (!parse_params(opts, argcp, argvp))
return FALSE;
2010-12-07 22:17:05 +01:00
return TRUE;
}
2011-01-02 13:59:03 +01:00
void
mu_config_uninit (MuConfigOptions *opts)
{
2010-12-07 22:17:05 +01:00
g_return_if_fail(opts);
g_free(opts->muhome);
g_free(opts->maildir);
g_free(opts->linksdir);
g_free(opts->targetdir);
g_strfreev(opts->params);
}