get normalized pref per client
[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
75  *
76  * @param client the client
77  * @param pref desired pref value
78  * @return normalized value
79  */
80 const double
81 GAS_normalization_get_preferences_by_client (const void *client,
82     enum GNUNET_ATS_PreferenceKind pref);
83
84 /**
85  * Normalize an updated preference value
86  *
87  * @param src the client with this preference
88  * @param peer the peer to change the preference for
89  * @param kind the kind to change the preference
90  * @param score_abs the normalized score
91  */
92 void
93 GAS_normalization_normalize_preference (void *src,
94                                         const struct GNUNET_PeerIdentity *peer,
95                                         enum GNUNET_ATS_PreferenceKind kind,
96                                         float score_abs);
97
98 /**
99  * Update and normalize a atsi performance information
100  *
101  * @param addresses hashmap containing all addresses
102  * @param address the address to update
103  * @param atsi the array of performance information
104  * @param atsi_count the number of atsi information in the array
105  */
106 void
107 GAS_normalization_normalize_property (struct GNUNET_CONTAINER_MultiPeerMap *addresses,
108                                       struct ATS_Address *address,
109                                       const struct GNUNET_ATS_Information *atsi,
110                                       uint32_t atsi_count);
111
112
113 /**
114  * A performance client disconnected
115  *
116  * @param client the disconnecting client
117  */
118 void
119 GAS_normalization_preference_client_disconnect (void *client);
120
121 /**
122  * Start the normalization component
123  *
124  * @param pref_ch_cb callback to call on relative preference changing
125  * @param pref_ch_cb_cls cls for the preference callback
126  * @param property_ch_cb callback to call on relative property changing
127  * @param property_ch_cb_cls cls for the property callback
128  */
129 void
130 GAS_normalization_start (GAS_Normalization_preference_changed_cb pref_ch_cb,
131                          void *pref_ch_cb_cls,
132                          GAS_Normalization_property_changed_cb property_ch_cb,
133                          void *property_ch_cb_cls);
134
135
136 /**
137  * Stop the normalization component and free all items
138  */
139 void
140 GAS_normalization_stop ();
141
142
143 /* end of gnunet-service-ats_normalization.h */