-revert of address_bw addition
[oweals/gnunet.git] / src / ats / gnunet-service-ats_normalization.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 3, 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 ats/gnunet-service-ats_normalization.h
23  * @brief ats service address: management of ATS properties and preferences normalization
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_ats_service.h"
29
30 #define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
31 #define PREF_AGING_FACTOR 0.95
32 #define PREF_EPSILON 0.1
33
34 #define DEFAULT_REL_PREFERENCE 1.0
35 #define DEFAULT_ABS_PREFERENCE 0.0
36
37 #define DEFAULT_REL_QUALITY 1.0
38
39 typedef void
40 (*GAS_Normalization_preference_changed_cb) (void *cls,
41     const struct GNUNET_PeerIdentity *peer,
42     enum GNUNET_ATS_PreferenceKind kind,
43     double pref_rel);
44
45 typedef void
46 (*GAS_Normalization_property_changed_cb) (void *cls,
47     struct ATS_Address *peer,
48     uint32_t type,
49     double prop_rel);
50
51 /**
52  * Get the normalized preference values for a specific peer
53  *
54  * @param id the peer @return pointer to the values, can be indexed
55  * with GNUNET_ATS_PreferenceKind, NULL if peer does not exist
56  */
57 const double *
58 GAS_normalization_get_preferences_by_peer (const struct GNUNET_PeerIdentity *id);
59
60
61 /**
62  * Get the normalized properties values for a specific peer or
63  * the default values if
64  *
65  * @param address the address
66  * @return pointer to the values, can be indexed with GNUNET_ATS_PreferenceKind,
67  * default preferences if peer does not exist
68  */
69 const double *
70 GAS_normalization_get_properties (struct ATS_Address *address);
71
72
73 /**
74  * Get the normalized preference values for a specific client and peer
75  *
76  * @param client client
77  * @param peer the peer
78  * @param pref the preference type
79  * @return the value
80  */
81 const double
82 GAS_normalization_get_preferences_by_client (const void *client,
83     struct GNUNET_PeerIdentity *peer, enum GNUNET_ATS_PreferenceKind pref);
84
85 /**
86  * Normalize an updated preference value
87  *
88  * @param src the client with this preference
89  * @param peer the peer to change the preference for
90  * @param kind the kind to change the preference
91  * @param score_abs the normalized score
92  */
93 void
94 GAS_normalization_normalize_preference (void *src,
95                                         const struct GNUNET_PeerIdentity *peer,
96                                         enum GNUNET_ATS_PreferenceKind kind,
97                                         float score_abs);
98
99 /**
100  * Update and normalize a atsi performance information
101  *
102  * @param addresses hashmap containing all addresses
103  * @param address the address to update
104  * @param atsi the array of performance information
105  * @param atsi_count the number of atsi information in the array
106  */
107 void
108 GAS_normalization_normalize_property (struct GNUNET_CONTAINER_MultiPeerMap *addresses,
109                                       struct ATS_Address *address,
110                                       const struct GNUNET_ATS_Information *atsi,
111                                       uint32_t atsi_count);
112
113
114 /**
115  * A performance client disconnected
116  *
117  * @param client the disconnecting client
118  */
119 void
120 GAS_normalization_preference_client_disconnect (void *client);
121
122 /**
123  * Start the normalization component
124  *
125  * @param pref_ch_cb callback to call on relative preference changing
126  * @param pref_ch_cb_cls cls for the preference callback
127  * @param property_ch_cb callback to call on relative property changing
128  * @param property_ch_cb_cls cls for the property callback
129  */
130 void
131 GAS_normalization_start (GAS_Normalization_preference_changed_cb pref_ch_cb,
132                          void *pref_ch_cb_cls,
133                          GAS_Normalization_property_changed_cb property_ch_cb,
134                          void *property_ch_cb_cls);
135
136
137 /**
138  * Stop the normalization component and free all items
139  */
140 void
141 GAS_normalization_stop ();
142
143
144 /* end of gnunet-service-ats_normalization.h */