2015-01-08 18:37:20 +01:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2015-02-08 00:16:22 +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/>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file include/taler_util.h
|
|
|
|
* @brief Interface for common utility functions
|
|
|
|
* @author Sree Harsha Totakura <sreeharsha@totakura.in>
|
|
|
|
*/
|
2015-01-28 20:53:21 +01:00
|
|
|
#ifndef TALER_UTIL_H
|
|
|
|
#define TALER_UTIL_H
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
#include <gnunet/gnunet_util_lib.h>
|
2015-01-28 20:53:21 +01:00
|
|
|
#include "taler_amount_lib.h"
|
|
|
|
#include "taler_crypto_lib.h"
|
|
|
|
#include "taler_json_lib.h"
|
|
|
|
|
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
/* Define logging functions */
|
2015-03-27 19:58:40 +01:00
|
|
|
#define TALER_LOG_DEBUG(...) \
|
2015-01-08 18:37:20 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
|
|
|
|
|
2015-03-27 19:58:40 +01:00
|
|
|
#define TALER_LOG_WARNING(...) \
|
2015-01-08 18:37:20 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING, __VA_ARGS__)
|
|
|
|
|
2015-03-27 19:58:40 +01:00
|
|
|
#define TALER_LOG_ERROR(...) \
|
2015-01-08 18:37:20 +01:00
|
|
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR, __VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests a given as assertion and if failed prints it as a warning with the
|
|
|
|
* given reason
|
|
|
|
*
|
|
|
|
* @param EXP the expression to test as assertion
|
|
|
|
* @param reason string to print as warning
|
|
|
|
*/
|
|
|
|
#define TALER_assert_as(EXP, reason) \
|
|
|
|
do { \
|
|
|
|
if (EXP) break; \
|
2015-03-27 19:58:40 +01:00
|
|
|
TALER_LOG_ERROR("%s at %s:%d\n", reason, __FILE__, __LINE__); \
|
2015-01-08 18:37:20 +01:00
|
|
|
abort(); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log an error message at log-level 'level' that indicates
|
|
|
|
* a failure of the command 'cmd' with the message given
|
|
|
|
* by gcry_strerror(rc).
|
|
|
|
*/
|
2015-03-27 19:58:40 +01:00
|
|
|
#define TALER_LOG_GCRY_ERROR(cmd, rc) do { TALER_LOG_ERROR("`%s' failed at %s:%d with error: %s\n", cmd, __FILE__, __LINE__, gcry_strerror(rc)); } while(0)
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
#define TALER_gcry_ok(cmd) \
|
2015-03-27 19:58:40 +01:00
|
|
|
do {int rc; rc = cmd; if (!rc) break; TALER_LOG_ERROR("A Gcrypt call failed at %s:%d with error: %s\n", __FILE__, __LINE__, gcry_strerror(rc)); abort(); } while (0)
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
|
2015-01-27 16:18:33 +01:00
|
|
|
/**
|
|
|
|
* Initialize Gcrypt library.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
TALER_gcrypt_init (void);
|
|
|
|
|
|
|
|
|
2015-08-14 22:05:34 +02:00
|
|
|
/**
|
|
|
|
* Convert a buffer to an 8-character string
|
|
|
|
* representative of the contents. This is used
|
|
|
|
* for logging binary data when debugging.
|
|
|
|
*
|
|
|
|
* @param buf buffer to log
|
|
|
|
* @param buf_size number of bytes in @a buf
|
|
|
|
* @return text representation of buf, valid until next
|
|
|
|
* call to this function
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
TALER_b2s (const void *buf,
|
|
|
|
size_t buf_size);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a fixed-sized object to a string using
|
|
|
|
* #TALER_b2s().
|
|
|
|
*
|
|
|
|
* @param obj address of object to convert
|
|
|
|
* @return string representing the binary obj buffer
|
|
|
|
*/
|
|
|
|
#define TALER_B2S(obj) TALER_b2s (obj, sizeof (*obj))
|
|
|
|
|
|
|
|
|
2015-07-05 16:55:01 +02:00
|
|
|
/**
|
|
|
|
* Round a time value so that it is suitable for transmission
|
|
|
|
* via JSON encodings.
|
|
|
|
*
|
|
|
|
* @param at time to round
|
|
|
|
* @return #GNUNET_OK if time was already rounded, #GNUNET_NO if
|
|
|
|
* it was just now rounded
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_round_abs_time (struct GNUNET_TIME_Absolute *at);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Round a time value so that it is suitable for transmission
|
|
|
|
* via JSON encodings.
|
|
|
|
*
|
|
|
|
* @param rt time to round
|
|
|
|
* @return #GNUNET_OK if time was already rounded, #GNUNET_NO if
|
|
|
|
* it was just now rounded
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_round_rel_time (struct GNUNET_TIME_Relative *rt);
|
|
|
|
|
|
|
|
|
2015-01-28 14:55:25 +01:00
|
|
|
/**
|
|
|
|
* Load configuration by parsing all configuration
|
|
|
|
* files in the given directory.
|
|
|
|
*
|
|
|
|
* @param base_dir directory with the configuration files
|
|
|
|
* @return NULL on error, otherwise configuration
|
|
|
|
*/
|
|
|
|
struct GNUNET_CONFIGURATION_Handle *
|
|
|
|
TALER_config_load (const char *base_dir);
|
|
|
|
|
|
|
|
|
2015-03-17 10:48:12 +01:00
|
|
|
/**
|
|
|
|
* Obtain denomination amount from configuration file.
|
|
|
|
*
|
|
|
|
* @param section section of the configuration to access
|
|
|
|
* @param option option of the configuration to access
|
2015-03-28 15:42:07 +01:00
|
|
|
* @param[out] denom set to the amount found in configuration
|
2015-03-17 10:48:12 +01:00
|
|
|
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_config_get_denom (struct GNUNET_CONFIGURATION_Handle *cfg,
|
|
|
|
const char *section,
|
|
|
|
const char *option,
|
|
|
|
struct TALER_Amount *denom);
|
|
|
|
|
2015-01-28 14:55:25 +01:00
|
|
|
|
2015-03-20 23:51:28 +01:00
|
|
|
/**
|
|
|
|
* Get the path to a specific Taler installation directory or, with
|
|
|
|
* #GNUNET_OS_IPK_SELF_PREFIX, the current running apps installation
|
|
|
|
* directory.
|
|
|
|
*
|
|
|
|
* @param dirkind what kind of directory is desired?
|
|
|
|
* @return a pointer to the dir path (to be freed by the caller)
|
|
|
|
*/
|
|
|
|
char *
|
2015-05-16 20:33:01 +02:00
|
|
|
TALER_OS_installation_get_path (enum GNUNET_OS_InstallationPathKind dirkind);
|
2015-03-20 23:51:28 +01:00
|
|
|
|
|
|
|
|
2015-04-13 13:49:42 +02:00
|
|
|
/**
|
|
|
|
* Print out details on command line options (implements --help).
|
|
|
|
*
|
|
|
|
* @param ctx command line processing context
|
|
|
|
* @param scls additional closure (points to about text)
|
|
|
|
* @param option name of the option
|
|
|
|
* @param value not used (NULL)
|
|
|
|
* @return #GNUNET_NO (do not continue, not an error)
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
TALER_GETOPT_format_help_ (struct GNUNET_GETOPT_CommandLineProcessorContext *ctx,
|
|
|
|
void *scls,
|
|
|
|
const char *option,
|
|
|
|
const char *value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Macro defining the option to print the command line
|
|
|
|
* help text (-h option).
|
|
|
|
*
|
|
|
|
* @param about string with brief description of the application
|
|
|
|
*/
|
|
|
|
#define TALER_GETOPT_OPTION_HELP(about) \
|
|
|
|
{ 'h', "help", (const char *) NULL, gettext_noop("print this help"), 0, &TALER_GETOPT_format_help_, (void *) about }
|
|
|
|
|
2015-01-08 18:37:20 +01:00
|
|
|
#endif
|