- doc
[oweals/gnunet.git] / src / include / gnunet_nse_service.h
1 /*
2       This file is part of GNUnet
3       (C) 2011 Christian Grothoff (and other contributing authors)
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 2, or (at your
8       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       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef GNUNET_NSE_SERVICE_H_
22 #define GNUNET_NSE_SERVICE_H_
23
24 /**
25  * @file include/gnunet_nse_service.h
26  * @brief API to retrieve the current network size estimate,
27  *        also to register for notifications whenever a new
28  *        network size estimate is calculated.
29  *
30  * @author Nathan Evans
31  */
32
33 #ifdef __cplusplus
34 extern "C"
35 {
36 #if 0                           /* keep Emacsens' auto-indent happy */
37 }
38 #endif
39 #endif
40
41 #include "gnunet_common.h"
42 #include "gnunet_configuration_lib.h"
43 #include "gnunet_scheduler_lib.h"
44
45 /**
46  * Version of the network size estimation API.
47  */
48 #define GNUNET_NSE_VERSION 0x00000000
49
50 /**
51  * Handle for the network size estimation service.
52  */
53 struct GNUNET_NSE_Handle;
54
55 /**
56  * Callback to call when network size estimate is updated.
57  *
58  * @param cls closure
59  * @param timestamp time when the estimate was received from the server (or created by the server)
60  * @param logestimate the log(Base 2) value of the current network size estimate
61  * @param std_dev standard deviation for the estimate
62  *
63  */
64 typedef void (*GNUNET_NSE_Callback) (void *cls,
65                                      struct GNUNET_TIME_Absolute timestamp,
66                                      double logestimate, double std_dev);
67
68
69 /**
70  * Convert the logarithmic estimated returned to the 'GNUNET_NSE_Callback'
71  * into an absolute estimate in terms of the number of peers in the network.
72  *
73  * @param loge logarithmic estimate
74  * @return absolute number of peers in the network (estimated)
75  */
76 #define GNUNET_NSE_log_estimate_to_n(loge) pow(2.0, (loge))
77
78 /**
79  * Connect to the network size estimation service.
80  *
81  * @param cfg the configuration to use
82  * @param func funtion to call with network size estimate
83  * @param func_cls closure to pass for network size estimate callback
84  *
85  * @return handle to use
86  */
87 struct GNUNET_NSE_Handle *
88 GNUNET_NSE_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
89                     GNUNET_NSE_Callback func, void *func_cls);
90
91
92 /**
93  * Disconnect from network size estimation service
94  *
95  * @param h handle to destroy
96  *
97  */
98 void
99 GNUNET_NSE_disconnect (struct GNUNET_NSE_Handle *h);
100
101
102 #if 0                           /* keep Emacsens' auto-indent happy */
103 {
104 #endif
105 #ifdef __cplusplus
106 }
107 #endif
108
109 #endif /* GNUNET_NSE_SERVICE_H_ */