check
[oweals/gnunet.git] / src / include / gnunet_pseudonym_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 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 /**
22  * @file include/gnunet_pseudonym_lib.h
23  * @brief functions related to pseudonyms
24  * @author Christian Grothoff
25  */
26
27 #ifndef GNUNET_PSEUDONYM_LIB_H
28 #define GNUNET_PSEUDONYM_LIB_H
29
30 #ifdef __cplusplus
31 extern "C"
32 {
33 #if 0                           /* keep Emacsens' auto-indent happy */
34 }
35 #endif
36 #endif
37
38 #include "gnunet_common.h"
39 #include "gnunet_configuration_lib.h"
40 #include "gnunet_container_lib.h"
41
42 /**
43  * Iterator over all known pseudonyms.
44  *
45  * @param cls closure
46  * @param pseudonym hash code of public key of pseudonym
47  * @param md meta data known about the pseudonym
48  * @param rating the local rating of the pseudonym
49  * @return GNUNET_OK to continue iteration, GNUNET_SYSERR to abort
50  */
51 typedef int (*GNUNET_PSEUDONYM_Iterator) (void *cls,
52                                           const GNUNET_HashCode *
53                                           pseudonym,
54                                           const struct
55                                           GNUNET_CONTAINER_MetaData * md,
56                                           int rating);
57
58 /**
59  * Change the ranking of a pseudonym.
60  *
61  * @param cfg overall configuration
62  * @param nsid id of the pseudonym
63  * @param delta by how much should the rating be changed?
64  * @return new rating of the namespace
65  */
66 int GNUNET_PSEUDONYM_rank (const struct GNUNET_CONFIGURATION_Handle *cfg,
67                            const GNUNET_HashCode *nsid, int delta);
68
69 /**
70  * Add a pseudonym to the set of known pseudonyms.
71  * For all pseudonym advertisements that we discover
72  * FS should automatically call this function.
73  *
74  * @param cfg overall configuration
75  * @param id the pseudonym identifier
76  * @param meta metadata for the pseudonym
77  */
78 void GNUNET_PSEUDONYM_add (const struct GNUNET_CONFIGURATION_Handle *cfg,
79                            const GNUNET_HashCode *id,
80                            const struct GNUNET_CONTAINER_MetaData *meta);
81
82
83 /**
84  * List all known pseudonyms.
85  *
86  * @param cfg overall configuration 
87  * @param iterator function to call for each pseudonym
88  * @param closure closure for iterator
89  * @return number of pseudonyms found
90  */
91 int GNUNET_PSEUDONYM_list_all (const struct GNUNET_CONFIGURATION_Handle *cfg,
92                                GNUNET_PSEUDONYM_Iterator iterator,
93                                void *closure);
94
95 /**
96  * Register callback to be invoked whenever we discover
97  * a new pseudonym.
98  */
99 int GNUNET_PSEUDONYM_discovery_callback_register (const struct
100                                                   GNUNET_CONFIGURATION_Handle
101                                                   *cfg,
102                                                   GNUNET_PSEUDONYM_Iterator
103                                                   iterator, void *closure);
104
105 /**
106  * Unregister namespace discovery callback.
107  */
108 int
109 GNUNET_PSEUDONYM_discovery_callback_unregister (GNUNET_PSEUDONYM_Iterator
110                                                 iterator, void *closure);
111
112 /**
113  * Return the unique, human readable name for the given pseudonym.
114  *
115  * @return NULL on failure (should never happen)
116  */
117 char *GNUNET_PSEUDONYM_id_to_name (const struct GNUNET_CONFIGURATION_Handle *cfg,
118                                    const GNUNET_HashCode * pseudo);
119
120 /**
121  * Get the pseudonym ID belonging to the given human readable name.
122  *
123  * @return GNUNET_OK on success
124  */
125 int GNUNET_PSEUDONYM_name_to_id (const struct GNUNET_CONFIGURATION_Handle *cfg,
126                                  const char *hname, GNUNET_HashCode * psid);
127
128
129 #if 0                           /* keep Emacsens' auto-indent happy */
130 {
131 #endif
132 #ifdef __cplusplus
133 }
134 #endif
135
136 /* ifndef GNUNET_PSEUDONYM_LIB_H */
137 #endif
138 /* end of gnunet_pseudonym_lib.h */