GNUnet  0.20.0
gnunet-unindex.c
Go to the documentation of this file.
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2009 GNUnet e.V.
4 
5  GNUnet is free software: you can redistribute it and/or modify it
6  under the terms of the GNU Affero General Public License as published
7  by the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  GNUnet is distributed in the hope that it will be useful, but
11  WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  Affero General Public License for more details.
14 
15  You should have received a copy of the GNU Affero General Public License
16  along with this program. If not, see <http://www.gnu.org/licenses/>.
17 
18  SPDX-License-Identifier: AGPL3.0-or-later
19  */
28 #include "platform.h"
29 
30 #include "gnunet_fs_service.h"
31 
32 static int ret;
33 
34 static unsigned int verbose;
35 
36 static const struct GNUNET_CONFIGURATION_Handle *cfg;
37 
38 static struct GNUNET_FS_Handle *ctx;
39 
41 
42 
43 static void
44 cleanup_task (void *cls)
45 {
47  ctx = NULL;
48 }
49 
50 
51 static void
52 shutdown_task (void *cls)
53 {
54  struct GNUNET_FS_UnindexContext *u;
55 
56  if (uc != NULL)
57  {
58  u = uc;
59  uc = NULL;
61  }
62 }
63 
64 
78 static void *
79 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *info)
80 {
81  const char *s;
82 
83  switch (info->status)
84  {
86  break;
87 
89  if (verbose)
90  {
91  s = GNUNET_STRINGS_relative_time_to_string (info->value.unindex.eta,
92  GNUNET_YES);
93  fprintf (stdout,
94  _ ("Unindexing at %llu/%llu (%s remaining)\n"),
95  (unsigned long long) info->value.unindex.completed,
96  (unsigned long long) info->value.unindex.size,
97  s);
98  }
99  break;
100 
102  fprintf (stderr,
103  _ ("Error unindexing: %s.\n"),
104  info->value.unindex.specifics.error.message);
106  break;
107 
109  fprintf (stdout, "%s", _ ("Unindexing done.\n"));
111  break;
112 
115  break;
116 
117  default:
118  fprintf (stderr, _ ("Unexpected status: %d\n"), info->status);
119  break;
120  }
121  return NULL;
122 }
123 
124 
133 static void
134 run (void *cls,
135  char *const *args,
136  const char *cfgfile,
137  const struct GNUNET_CONFIGURATION_Handle *c)
138 {
139  /* check arguments */
140  if ((args[0] == NULL) || (args[1] != NULL))
141  {
142  printf (_ ("You must specify one and only one filename for unindexing.\n"));
143  ret = -1;
144  return;
145  }
146  cfg = c;
148  "gnunet-unindex",
149  &progress_cb,
150  NULL,
153  if (NULL == ctx)
154  {
155  fprintf (stderr, _ ("Could not initialize `%s' subsystem.\n"), "FS");
156  ret = 1;
157  return;
158  }
159  uc = GNUNET_FS_unindex_start (ctx, args[0], NULL);
160  if (NULL == uc)
161  {
162  fprintf (stderr, "%s", _ ("Could not start unindex operation.\n"));
164  return;
165  }
167 }
168 
169 
177 int
178 main (int argc, char *const *argv)
179 {
182 
184  };
185 
186  if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
187  return 2;
188 
189  ret = (GNUNET_OK ==
191  argc,
192  argv,
193  "gnunet-unindex [OPTIONS] FILENAME",
194  gettext_noop (
195  "Unindex a file that was previously indexed with gnunet-publish."),
196  options,
197  &run,
198  NULL))
199  ? ret
200  : 1;
201  GNUNET_free_nz ((void *) argv);
202  return ret;
203 }
204 
205 
206 /* end of gnunet-unindex.c */
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
#define info
static unsigned int verbose
static const struct GNUNET_CONFIGURATION_Handle * cfg
static struct GNUNET_FS_UnindexContext * uc
static void cleanup_task(void *cls)
static void shutdown_task(void *cls)
static int ret
static struct GNUNET_FS_Handle * ctx
static void run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
Main function that will be run by the scheduler.
static void * progress_cb(void *cls, const struct GNUNET_FS_ProgressInfo *info)
Called by FS client to give information about the progress of an operation.
int main(int argc, char *const *argv)
The main function to unindex content.
API for file sharing via GNUnet.
void GNUNET_FS_unindex_stop(struct GNUNET_FS_UnindexContext *uc)
Clean up after completion of an unindex operation.
Definition: fs_unindex.c:838
struct GNUNET_FS_Handle * GNUNET_FS_start(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *client_name, GNUNET_FS_ProgressCallback upcb, void *upcb_cls, enum GNUNET_FS_Flags flags,...)
Setup a connection to the file-sharing service.
Definition: fs_api.c:3244
void GNUNET_FS_stop(struct GNUNET_FS_Handle *h)
Close our connection with the file-sharing service.
Definition: fs_api.c:3310
struct GNUNET_FS_UnindexContext * GNUNET_FS_unindex_start(struct GNUNET_FS_Handle *h, const char *filename, void *cctx)
Unindex a file.
Definition: fs_unindex.c:796
@ GNUNET_FS_FLAGS_NONE
No special flags set.
@ GNUNET_FS_OPTIONS_END
Last option in the VARARG list.
@ GNUNET_FS_STATUS_UNINDEX_PROGRESS
Notification that we made progress unindexing a file.
@ GNUNET_FS_STATUS_UNINDEX_START
Notification that we started to unindex a file.
@ GNUNET_FS_STATUS_UNINDEX_STOPPED
Notification that the unindexing of this file was stopped (final event for this action).
@ GNUNET_FS_STATUS_UNINDEX_COMPLETED
Notification that the unindexing of this file was completed.
@ GNUNET_FS_STATUS_UNINDEX_ERROR
Notification that we encountered an error unindexing a file.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_verbose(unsigned int *level)
Define the '-V' verbosity option.
@ GNUNET_OK
@ GNUNET_YES
#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
void GNUNET_SCHEDULER_shutdown(void)
Request the shutdown of a scheduler.
Definition: scheduler.c:562
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_now(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run as soon as possible.
Definition: scheduler.c:1299
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_shutdown(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run on shutdown, that is when a CTRL-C signal is received,...
Definition: scheduler.c:1334
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
const char * GNUNET_STRINGS_relative_time_to_string(struct GNUNET_TIME_Relative delta, int do_round)
Give relative time in human-readable fancy format.
Definition: strings.c:569
#define _(String)
GNU gettext support macro.
Definition: platform.h:178
Master context for most FS operations.
Definition: fs_api.h:1070
Argument given to the progress callback with information about what is going on.
Handle for controlling an unindexing operation.
Definition: fs_api.h:1351
Definition of a command line option.