GNUnet 0.21.1
gnunet-nse.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet
3 Copyright (C) 2008--2014, 2016 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 */
20
27#include "platform.h"
28#include "gnunet_nse_service.h"
29#include <gnunet_util_lib.h>
30
34static struct GNUNET_NSE_Handle *nse;
35
39static int status;
40
44static int monitor;
45
46
52static void
53do_shutdown (void *cls)
54{
55 (void) cls;
56 if (NULL != nse)
57 {
59 nse = NULL;
60 }
61}
62
63
73static void
74handle_estimate (void *cls,
75 struct GNUNET_TIME_Absolute timestamp,
76 double estimate,
77 double std_dev)
78{
79 (void) cls;
80 status = 0;
81 fprintf (stdout,
82 "%s: #peers=%f (ld(#peers)=%f, stddev=%f)\n",
85 estimate,
86 std_dev);
87 if (! monitor)
89}
90
91
100static void
101run (void *cls,
102 char *const *args,
103 const char *cfgfile,
104 const struct GNUNET_CONFIGURATION_Handle *cfg)
105{
106 (void) cls;
107 (void) args;
108 (void) cfgfile;
111}
112
113
119int
120main (int argc, char *const *argv)
121{
124 "monitor",
126 "Monitor and output current estimates"),
127 &monitor),
129 };
130
131 status = 1;
132 if (GNUNET_OK !=
133 GNUNET_PROGRAM_run (argc,
134 argv,
135 "gnunet-nse",
137 "Show network size estimates from NSE service."),
138 options,
139 &run,
140 NULL))
141 return 2;
142 return status;
143}
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 struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition: gnunet-arm.c:109
static struct GNUNET_NSE_Handle * nse
The handle to the NSE service.
Definition: gnunet-nse.c:34
static int monitor
Monitor flag.
Definition: gnunet-nse.c:44
static int status
The program status; 0 for success.
Definition: gnunet-nse.c:39
static void do_shutdown(void *cls)
Task to shutdown and clean up all state.
Definition: gnunet-nse.c:53
static void handle_estimate(void *cls, struct GNUNET_TIME_Absolute timestamp, double estimate, double std_dev)
Callback to call when network size estimate is updated.
Definition: gnunet-nse.c:74
static void run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
Actual main function that runs the emulation.
Definition: gnunet-nse.c:101
int main(int argc, char *const *argv)
Main function.
Definition: gnunet-nse.c:120
API to retrieve the current network size estimate.
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.
@ GNUNET_OK
void GNUNET_NSE_disconnect(struct GNUNET_NSE_Handle *h)
Disconnect from network size estimation service.
Definition: nse_api.c:192
#define GNUNET_NSE_log_estimate_to_n(loge)
Convert the logarithmic estimated returned to the 'GNUNET_NSE_Callback' into an absolute estimate in ...
struct GNUNET_NSE_Handle * GNUNET_NSE_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_NSE_Callback func, void *func_cls)
Connect to the network size estimation service.
Definition: nse_api.c:164
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:567
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:1340
const char * GNUNET_STRINGS_absolute_time_to_string(struct GNUNET_TIME_Absolute t)
Like asctime, except for GNUnet time.
Definition: strings.c:617
Definition of a command line option.
Handle for talking with the NSE service.
Definition: nse_api.c:40
Time for absolute times used by GNUnet, in microseconds.