GNUnet  0.20.0
gnunet-directory.c File Reference

display content of GNUnet directories More...

#include "platform.h"
#include "gnunet_fs_service.h"
Include dependency graph for gnunet-directory.c:

Go to the source code of this file.

Functions

static int item_printer (void *cls, const char *plugin_name, enum EXTRACTOR_MetaType type, enum EXTRACTOR_MetaFormat format, const char *data_mime_type, const char *data, size_t data_size)
 Print a meta data entry. More...
 
static void print_entry (void *cls, const char *filename, const struct GNUNET_FS_Uri *uri, const struct GNUNET_FS_MetaData *meta, size_t length, const void *data)
 Print an entry in a directory. More...
 
static void run (void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
 Main function that will be run by the scheduler. More...
 
int main (int argc, char *const *argv)
 The main function to inspect GNUnet directories. More...
 

Variables

static int ret
 

Detailed Description

display content of GNUnet directories

Author
Christian Grothoff

Definition in file gnunet-directory.c.

Function Documentation

◆ item_printer()

static int item_printer ( void *  cls,
const char *  plugin_name,
enum EXTRACTOR_MetaType  type,
enum EXTRACTOR_MetaFormat  format,
const char *  data_mime_type,
const char *  data,
size_t  data_size 
)
static

Print a meta data entry.

Parameters
clsclosure (unused)
plugin_namename of the plugin that generated the meta data
typetype of the keyword
formatformat of data
data_mime_typemime type of data
datavalue of the meta data
data_sizenumber of bytes in data
Returns
always 0 (to continue iterating)

Definition at line 44 of file gnunet-directory.c.

51 {
52  if (type == EXTRACTOR_METATYPE_GNUNET_FULL_DATA)
53  {
54  printf (_ ("\t<original file embedded in %u bytes of meta data>\n"),
55  (unsigned int) data_size);
56  return 0;
57  }
58  if ((format != EXTRACTOR_METAFORMAT_UTF8) &&
59  (format != EXTRACTOR_METAFORMAT_C_STRING))
60  return 0;
62  return 0;
63 #if HAVE_LIBEXTRACTOR
64  printf ("\t%20s: %s\n",
66  EXTRACTOR_metatype_to_string (type)),
67  data);
68 #else
69  printf ("\t%20d: %s\n", type, data);
70 #endif
71  return 0;
72 }
#define dgettext(Domainname, Msgid)
Definition: gettext.h:47
static size_t data_size
Number of bytes in data.
Definition: gnunet-abd.c:187
uint32_t data
The data value.
#define EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME
#define _(String)
GNU gettext support macro.
Definition: platform.h:178
#define LIBEXTRACTOR_GETTEXT_DOMAIN
Definition: platform.h:179
enum GNUNET_TESTBED_UnderlayLinkModelType type
the type of this model

References _, data, data_size, dgettext, EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME, LIBEXTRACTOR_GETTEXT_DOMAIN, and type.

Referenced by print_entry().

Here is the caller graph for this function:

◆ print_entry()

static void print_entry ( void *  cls,
const char *  filename,
const struct GNUNET_FS_Uri uri,
const struct GNUNET_FS_MetaData meta,
size_t  length,
const void *  data 
)
static

Print an entry in a directory.

Parameters
clsclosure (not used)
filenamename of the file in the directory
uriURI of the file
metametadata for the file; metadata for the directory if everything else is NULL/zero
lengthlength of the available data for the file (of type size_t since data must certainly fit into memory; if files are larger than size_t permits, then they will certainly not be embedded with the directory itself).
datadata available for the file (length bytes)

Definition at line 91 of file gnunet-directory.c.

97 {
98  char *string;
99  char *name;
100 
102  meta,
104  if (uri == NULL)
105  {
106  printf (_ ("Directory `%s' meta data:\n"), name ? name : "");
108  printf ("\n");
109  printf (_ ("Directory `%s' contents:\n"), name ? name : "");
110  GNUNET_free (name);
111  return;
112  }
113  string = GNUNET_FS_uri_to_string (uri);
114  printf ("%s (%s):\n", name ? name : "", string);
115  GNUNET_free (string);
117  printf ("\n");
118  GNUNET_free (name);
119 }
static int item_printer(void *cls, const char *plugin_name, enum EXTRACTOR_MetaType type, enum EXTRACTOR_MetaFormat format, const char *data_mime_type, const char *data, size_t data_size)
Print a meta data entry.
static struct GNUNET_FS_Uri * uri
Value of URI provided on command-line (when not publishing a file but just creating UBlocks to refer ...
static struct GNUNET_FS_MetaData * meta
Meta-data provided via command-line option.
char * GNUNET_FS_uri_to_string(const struct GNUNET_FS_Uri *uri)
Convert a URI to a UTF-8 String.
Definition: fs_uri.c:2017
#define GNUNET_free(ptr)
Wrapper around free.
int GNUNET_FS_meta_data_iterate(const struct GNUNET_FS_MetaData *md, EXTRACTOR_MetaDataProcessor iter, void *iter_cls)
Iterate over MD entries.
Definition: meta_data.c:419
char * GNUNET_FS_meta_data_get_by_type(const struct GNUNET_FS_MetaData *md, enum EXTRACTOR_MetaType type)
Get the first MD entry of the given type.
Definition: meta_data.c:439
const char * name

References _, EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME, GNUNET_free, GNUNET_FS_meta_data_get_by_type(), GNUNET_FS_meta_data_iterate(), GNUNET_FS_uri_to_string(), item_printer(), meta, name, and uri.

Referenced by run().

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

◆ run()

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

Main function that will be run by the scheduler.

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

Definition at line 131 of file gnunet-directory.c.

135 {
136  struct GNUNET_DISK_MapHandle *map;
137  struct GNUNET_DISK_FileHandle *h;
138  void *data;
139  size_t len;
140  uint64_t size;
141  const char *filename;
142  int i;
143 
144  if (NULL == args[0])
145  {
146  fprintf (stderr, "%s", _ ("You must specify a filename to inspect.\n"));
147  ret = 1;
148  return;
149  }
150  i = 0;
151  while (NULL != (filename = args[i++]))
152  {
153  if ((GNUNET_OK !=
155  (NULL == (h = GNUNET_DISK_file_open (filename,
158  {
160  _ ("Failed to read directory `%s'\n"),
161  filename);
162  ret = 1;
163  continue;
164  }
165  len = (size_t) size;
167  GNUNET_assert (NULL != data);
168  if (GNUNET_OK !=
170  fprintf (stdout, _ ("`%s' is not a GNUnet directory\n"), filename);
171  else
172  printf ("\n");
175  }
176 }
static struct GNUNET_ARM_Handle * h
Connection with ARM.
Definition: gnunet-arm.c:99
static struct GNUNET_CONTAINER_MultiPeerMap * map
Handle to the map used to store old latency values for peers.
static void print_entry(void *cls, const char *filename, const struct GNUNET_FS_Uri *uri, const struct GNUNET_FS_MetaData *meta, size_t length, const void *data)
Print an entry in a directory.
static int ret
static char * filename
uint16_t len
length of data (which is always a uint32_t, but presumably this can be used to specify that fewer byt...
struct GNUNET_DISK_FileHandle * GNUNET_DISK_file_open(const char *fn, enum GNUNET_DISK_OpenFlags flags, enum GNUNET_DISK_AccessPermissions perm)
Open a file.
Definition: disk.c:1237
enum GNUNET_GenericReturnValue GNUNET_DISK_file_size(const char *filename, uint64_t *size, int include_symbolic_links, int single_file_mode)
Get the size of the file (or directory) of the given file (in bytes).
Definition: disk.c:221
void * GNUNET_DISK_file_map(const struct GNUNET_DISK_FileHandle *h, struct GNUNET_DISK_MapHandle **m, enum GNUNET_DISK_MapType access, size_t len)
Map a file into memory.
Definition: disk.c:1380
enum GNUNET_GenericReturnValue GNUNET_DISK_file_close(struct GNUNET_DISK_FileHandle *h)
Close an open file.
Definition: disk.c:1308
enum GNUNET_GenericReturnValue GNUNET_DISK_file_unmap(struct GNUNET_DISK_MapHandle *h)
Unmap a file.
Definition: disk.c:1411
@ GNUNET_DISK_OPEN_READ
Open the file for reading.
@ GNUNET_DISK_PERM_NONE
Nobody is allowed to do anything to the file.
@ GNUNET_DISK_MAP_TYPE_READ
Read-only memory map.
int GNUNET_FS_directory_list_contents(size_t size, const void *data, uint64_t offset, GNUNET_FS_DirectoryEntryProcessor dep, void *dep_cls)
Iterate over all entries in a directory.
Definition: fs_directory.c:182
#define GNUNET_log(kind,...)
@ GNUNET_OK
@ GNUNET_YES
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
@ GNUNET_ERROR_TYPE_ERROR
static unsigned int size
Size of the "table".
Definition: peer.c:68
Handle used to access files (and pipes).
Handle for a memory-mapping operation.
Definition: disk.c:1361

References _, consensus-simulation::args, data, filename, GNUNET_assert, GNUNET_DISK_file_close(), GNUNET_DISK_file_map(), GNUNET_DISK_file_open(), GNUNET_DISK_file_size(), GNUNET_DISK_file_unmap(), GNUNET_DISK_MAP_TYPE_READ, GNUNET_DISK_OPEN_READ, GNUNET_DISK_PERM_NONE, GNUNET_ERROR_TYPE_ERROR, GNUNET_FS_directory_list_contents(), GNUNET_log, GNUNET_OK, GNUNET_YES, h, len, map, print_entry(), ret, and size.

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 
)

The main function to inspect GNUnet directories.

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

Definition at line 187 of file gnunet-directory.c.

188 {
189  static struct GNUNET_GETOPT_CommandLineOption options[] = {
191  };
192 
193  if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
194  return 2;
195 
196  ret = (GNUNET_OK ==
197  GNUNET_PROGRAM_run (argc,
198  argv,
199  "gnunet-directory [OPTIONS] FILENAME",
200  gettext_noop (
201  "Display contents of a GNUnet directory"),
202  options,
203  &run,
204  NULL))
205  ? ret
206  : 1;
207  GNUNET_free_nz ((void *) argv);
208  return ret;
209 }
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 void run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
Main function that will be run by the scheduler.
#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
Definition of a command line option.

References gettext_noop, GNUNET_free_nz, GNUNET_GETOPT_OPTION_END, GNUNET_OK, GNUNET_PROGRAM_run(), GNUNET_STRINGS_get_utf8_args(), options, ret, and run().

Here is the call graph for this function:

Variable Documentation

◆ ret

int ret
static

Definition at line 29 of file gnunet-directory.c.

Referenced by main(), and run().