GNUnet  0.20.0
gnunet-config.c File Reference

tool to access and manipulate GNUnet configuration files More...

#include "platform.h"
#include "gnunet_util_lib.h"
Include dependency graph for gnunet-config.c:

Go to the source code of this file.

Functions

static void run (void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
 Print each option in a given section. More...
 
int main (int argc, char *const *argv)
 Program to manipulate configuration files. More...
 

Variables

static char * backend_check
 Backend to check if the respective plugin is loadable. More...
 
static int cflags
 If printing the value of CFLAGS has been requested. More...
 
static int is_experimental
 Check if this is an experimental build. More...
 
static int libs
 If printing the value of LIBS has been requested. More...
 
static int prefix
 If printing the value of PREFIX has been requested. More...
 

Detailed Description

tool to access and manipulate GNUnet configuration files

Author
Christian Grothoff

Definition in file gnunet-config.c.

Function Documentation

◆ run()

static void run ( void *  cls,
char *const *  args,
const char *  cfgfile,
const struct GNUNET_CONFIGURATION_Handle cfg 
)
static

Print each option in a given section.

Main task to run to perform operations typical for gnunet-config as per the configuration settings given in cls.

Parameters
clsclosure with the struct GNUNET_CONFIGURATION_ConfigSettings
argsremaining command-line arguments
cfgfilename of the configuration file used (for saving, can be NULL!)
cfgconfiguration

Definition at line 75 of file gnunet-config.c.

79 {
80  struct GNUNET_CONFIGURATION_ConfigSettings *cs = cls;
81 
82  if (1 == is_experimental)
83  {
84 #ifdef GNUNET_EXPERIMENTAL
85  cs->global_ret = 0;
86 #else
87  cs->global_ret = 1;
88 #endif
89  return;
90  }
91  if (1 == cflags || 1 == libs || 1 == prefix)
92  {
95 
96  if (1 == cflags)
97  {
98  fprintf (stdout, "-I%sinclude\n", prefixdir);
99  }
100  if (1 == libs)
101  {
102  fprintf (stdout, "-L%s -lgnunetutil\n", libdir);
103  }
104  if (1 == prefix)
105  {
106  fprintf (stdout, "%s\n", prefixdir);
107  }
108  cs->global_ret = 0;
109  GNUNET_free (prefixdir);
110  GNUNET_free (libdir);
111  return;
112  }
113  if (NULL != backend_check)
114  {
115  char *name;
116 
118  "libgnunet_plugin_%s",
119  backend_check);
120  cs->global_ret = (GNUNET_OK ==
121  GNUNET_PLUGIN_test (name)) ? 0 : 77;
122  GNUNET_free (name);
123  return;
124  }
126  args,
127  cfgfile,
128  cfg);
129 }
static const struct GNUNET_CONFIGURATION_Handle * cfg
Configuration we are using.
Definition: gnunet-abd.c:36
static int libs
If printing the value of LIBS has been requested.
Definition: gnunet-config.c:53
static char * backend_check
Backend to check if the respective plugin is loadable.
Definition: gnunet-config.c:36
static int cflags
If printing the value of CFLAGS has been requested.
Definition: gnunet-config.c:42
static int is_experimental
Check if this is an experimental build.
Definition: gnunet-config.c:47
static int prefix
If printing the value of PREFIX has been requested.
Definition: gnunet-config.c:59
void GNUNET_CONFIGURATION_config_tool_run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
Main task to run to perform operations typical for gnunet-config as per the configuration settings gi...
@ GNUNET_OK
int int GNUNET_asprintf(char **buf, const char *format,...) __attribute__((format(printf
Like asprintf, just portable.
#define GNUNET_free(ptr)
Wrapper around free.
char * GNUNET_OS_installation_get_path(enum GNUNET_OS_InstallationPathKind dirkind)
Get the path to a specific GNUnet installation directory or, with GNUNET_OS_IPK_SELF_PREFIX,...
@ GNUNET_OS_IPK_LIBDIR
Return the directory where libraries are installed.
@ GNUNET_OS_IPK_PREFIX
Return the "PREFIX" directory given to configure.
enum GNUNET_GenericReturnValue GNUNET_PLUGIN_test(const char *library_name)
Test if a plugin exists.
Definition: plugin.c:168
const char * name
Closure for GNUNET_CONFIGURATION_config_tool_run() with settings for what should be done with the con...
int global_ret
Return value from the operation, to be returned from 'main'.

References consensus-simulation::args, backend_check, cfg, cflags, GNUNET_CONFIGURATION_ConfigSettings::global_ret, GNUNET_asprintf(), GNUNET_CONFIGURATION_config_tool_run(), GNUNET_free, GNUNET_OK, GNUNET_OS_installation_get_path(), GNUNET_OS_IPK_LIBDIR, GNUNET_OS_IPK_PREFIX, GNUNET_PLUGIN_test(), is_experimental, libs, name, and prefix.

Referenced by main().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ main()

int main ( int  argc,
char *const *  argv 
)

Program to manipulate configuration files.

Parameters
argcnumber of arguments from the command line
argvcommand line arguments
Returns
0 ok, 1 on error

Definition at line 140 of file gnunet-config.c.

142 {
145  .global_ret = EXIT_SUCCESS
146  };
150  'b',
151  "supported-backend",
152  "BACKEND",
153  gettext_noop (
154  "test if the current installation supports the specified BACKEND"),
155  &backend_check)),
157  'C',
158  "cflags",
159  gettext_noop (
160  "Provide an appropriate value for CFLAGS to applications building on top of GNUnet"),
161  &cflags),
163  'E',
164  "is-experimental",
165  gettext_noop ("Is this an experimental build of GNUnet"),
166  &is_experimental),
168  'j',
169  "libs",
170  gettext_noop (
171  "Provide an appropriate value for LIBS to applications building on top of GNUnet"),
172  &libs),
174  'p',
175  "prefix",
176  gettext_noop (
177  "Provide the path under which GNUnet was installed"),
178  &prefix),
181  };
183 
184  if (GNUNET_OK !=
185  GNUNET_STRINGS_get_utf8_args (argc, argv,
186  &argc, &argv))
187  return EXIT_FAILURE;
188  ret =
189  GNUNET_PROGRAM_run (argc,
190  argv,
191  "gnunet-config [OPTIONS]",
192  gettext_noop ("Manipulate GNUnet configuration files"),
193  options,
194  &run,
195  &cs);
196  GNUNET_free_nz ((void *) argv);
198  if (GNUNET_NO == ret)
199  return 0;
200  if (GNUNET_SYSERR == ret)
201  return EXIT_INVALIDARGUMENT;
202  return cs.global_ret;
203 }
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_OPTION_END
Definition: 002.c:13
struct GNUNET_GETOPT_CommandLineOption options[]
Definition: 002.c:5
#define gettext_noop(String)
Definition: gettext.h:70
static int ret
Return value of the commandline.
Definition: gnunet-abd.c:81
static void run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
Print each option in a given section.
Definition: gnunet-config.c:75
#define GNUNET_CONFIGURATION_CONFIG_OPTIONS(cs)
Macro that expands to a set of GNUNET-getopt directives to initialize a struct GNUNET_CONFIGURATION_C...
void GNUNET_CONFIGURATION_config_settings_free(struct GNUNET_CONFIGURATION_ConfigSettings *cs)
Free resources associated with cs.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_exclusive(struct GNUNET_GETOPT_CommandLineOption opt)
Make the given option mutually exclusive with other options.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_flag(char shortName, const char *name, const char *description, int *val)
Allow user to specify a flag (which internally means setting an integer to 1/GNUNET_YES/GNUNET_OK.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_string(char shortName, const char *name, const char *argumentHelp, const char *description, char **str)
Allow user to specify a string.
#define GNUNET_UTIL_VERSION
Version of the API (for entire gnunetutil.so library).
Definition: gnunet_common.h:96
GNUNET_GenericReturnValue
Named constants for return values.
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_free_nz(ptr)
Wrapper around free.
enum GNUNET_GenericReturnValue GNUNET_PROGRAM_run(int argc, char *const *argv, const char *binaryName, const char *binaryHelp, const struct GNUNET_GETOPT_CommandLineOption *options, GNUNET_PROGRAM_Main task, void *task_cls)
Run a standard GNUnet command startup sequence (initialize loggers and configuration,...
Definition: program.c:400
enum GNUNET_GenericReturnValue GNUNET_STRINGS_get_utf8_args(int argc, char *const *argv, int *u8argc, char *const **u8argv)
Returns utf-8 encoded arguments.
Definition: strings.c:1222
#define EXIT_INVALIDARGUMENT
Definition: platform.h:253
unsigned int api_version
Must be set to the API version, i.e.
Definition of a command line option.

References GNUNET_CONFIGURATION_ConfigSettings::api_version, backend_check, cflags, EXIT_INVALIDARGUMENT, gettext_noop, GNUNET_CONFIGURATION_ConfigSettings::global_ret, GNUNET_CONFIGURATION_CONFIG_OPTIONS, GNUNET_CONFIGURATION_config_settings_free(), GNUNET_free_nz, GNUNET_GETOPT_OPTION_END, GNUNET_GETOPT_option_exclusive(), GNUNET_GETOPT_option_flag(), GNUNET_GETOPT_option_string(), GNUNET_NO, GNUNET_OK, GNUNET_PROGRAM_run(), GNUNET_STRINGS_get_utf8_args(), GNUNET_SYSERR, GNUNET_UTIL_VERSION, is_experimental, libs, options, prefix, ret, and run().

Here is the call graph for this function:

Variable Documentation

◆ backend_check

char* backend_check
static

Backend to check if the respective plugin is loadable.

NULL if no check is to be performed. The value is the "basename" of the plugin to load.

Definition at line 36 of file gnunet-config.c.

Referenced by main(), and run().

◆ cflags

int cflags
static

If printing the value of CFLAGS has been requested.

Definition at line 42 of file gnunet-config.c.

Referenced by main(), and run().

◆ is_experimental

int is_experimental
static

Check if this is an experimental build.

Definition at line 47 of file gnunet-config.c.

Referenced by main(), and run().

◆ libs

int libs
static

If printing the value of LIBS has been requested.

Definition at line 53 of file gnunet-config.c.

Referenced by main(), and run().

◆ prefix