2015-01-08 18:37:20 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2015-03-16 18:19:05 +01:00
|
|
|
Copyright (C) 2014, 2015 Christian Grothoff (and other contributing authors)
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
TALER 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.
|
|
|
|
|
|
|
|
TALER 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
|
|
|
|
TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
/**
|
2015-03-16 18:19:05 +01:00
|
|
|
* @file mint/taler-mint-dbinit.c
|
2015-01-08 18:37:20 +01:00
|
|
|
* @brief Create tables for the mint database.
|
|
|
|
* @author Florian Dold
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
|
|
|
#include <libpq-fe.h>
|
2015-01-29 20:27:57 +01:00
|
|
|
#include "taler_util.h"
|
2015-03-05 17:53:41 +01:00
|
|
|
#include "mint_db.h"
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
/**
|
|
|
|
* Mint directory with the keys.
|
|
|
|
*/
|
2015-01-08 18:37:20 +01:00
|
|
|
static char *mint_base_dir;
|
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
/**
|
|
|
|
* Our configuration.
|
|
|
|
*/
|
|
|
|
static struct GNUNET_CONFIGURATION_Handle *cfg;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
/**
|
|
|
|
* Database connection handle.
|
|
|
|
*/
|
|
|
|
static PGconn *db_conn;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-03-16 18:19:05 +01:00
|
|
|
* The main function of the database initialization tool.
|
|
|
|
* Used to initialize the Taler Mint's database.
|
2015-01-08 18:37:20 +01:00
|
|
|
*
|
|
|
|
* @param argc number of arguments from the command line
|
|
|
|
* @param argv command line arguments
|
|
|
|
* @return 0 ok, 1 on error
|
|
|
|
*/
|
|
|
|
int
|
2015-03-16 18:19:05 +01:00
|
|
|
main (int argc,
|
|
|
|
char *const *argv)
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
|
|
|
static const struct GNUNET_GETOPT_CommandLineOption options[] = {
|
2015-03-16 18:19:05 +01:00
|
|
|
GNUNET_GETOPT_OPTION_HELP ("gnunet-mint-dbinit OPTIONS"),
|
2015-01-08 18:37:20 +01:00
|
|
|
{'d', "mint-dir", "DIR",
|
|
|
|
"mint directory", 1,
|
|
|
|
&GNUNET_GETOPT_set_filename, &mint_base_dir},
|
|
|
|
GNUNET_GETOPT_OPTION_END
|
|
|
|
};
|
2015-03-16 18:19:05 +01:00
|
|
|
char *db_connection_cfg_str;
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
if (GNUNET_GETOPT_run ("taler-mint-dbinit",
|
|
|
|
options,
|
|
|
|
argc, argv) < 0)
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
|
2015-03-16 18:19:05 +01:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
GNUNET_log_setup ("taler-mint-dbinit",
|
|
|
|
"INFO",
|
|
|
|
NULL));
|
2015-01-08 18:37:20 +01:00
|
|
|
if (NULL == mint_base_dir)
|
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Mint base directory not given.\n");
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-01-28 14:55:25 +01:00
|
|
|
cfg = TALER_config_load (mint_base_dir);
|
2015-01-08 18:37:20 +01:00
|
|
|
if (NULL == cfg)
|
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to load mint configuration.\n");
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2015-03-16 18:19:05 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
|
|
|
"mint",
|
|
|
|
"db",
|
|
|
|
&db_connection_cfg_str))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Configuration 'mint.db' not found.\n");
|
|
|
|
return 1;
|
2015-01-08 18:37:20 +01:00
|
|
|
}
|
2015-03-16 18:19:05 +01:00
|
|
|
db_conn = PQconnectdb (db_connection_cfg_str);
|
2015-01-08 18:37:20 +01:00
|
|
|
if (CONNECTION_OK != PQstatus (db_conn))
|
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Database connection failed: %s\n",
|
|
|
|
PQerrorMessage (db_conn));
|
|
|
|
free (db_connection_cfg_str);
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2015-03-16 18:19:05 +01:00
|
|
|
free (db_connection_cfg_str);
|
2015-01-08 18:37:20 +01:00
|
|
|
|
2015-03-05 17:53:41 +01:00
|
|
|
if (GNUNET_OK != TALER_MINT_DB_create_tables (GNUNET_NO))
|
2015-01-08 18:37:20 +01:00
|
|
|
{
|
2015-03-16 18:19:05 +01:00
|
|
|
fprintf (stderr,
|
|
|
|
"Failed to initialize database.\n");
|
2015-01-08 18:37:20 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2015-03-16 18:19:05 +01:00
|
|
|
|
|
|
|
/* end of taler-mint-dbinit.c */
|