implementing #1747
[oweals/gnunet.git] / src / ats / gnunet-service-ats_reservations.c
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_reservations.c
23  * @brief ats service, inbound bandwidth reservation management
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet-service-ats_reservations.h"
28
29 /**
30  * Number of seconds that available bandwidth carries over 
31  * (can accumulate).
32  */
33 #define MAX_BANDWIDTH_CARRY_S 5
34
35
36 /**
37  * Map of peer identities to 'struct GNUNET_BANDWIDTH_Tracker *'s
38  */
39 static struct GNUNET_CONTAINER_MultiHashMap *trackers;
40
41
42 /**
43  * Reserve the given amount of incoming bandwidth (in bytes) from the
44  * given peer.  If a reservation is not possible right now, return how
45  * long the client should wait before trying again.
46  *
47  * @param peer peer to reserve bandwidth from
48  * @param amount number of bytes to reserve
49  * @return 0 if the reservation was successful, FOREVER if the
50  *         peer is not connected, otherwise the time to wait
51  *         until the reservation might succeed
52  */
53 struct GNUNET_TIME_Relative
54 GAS_reservations_reserve (const struct GNUNET_PeerIdentity *peer,
55                           int32_t amount)
56 {
57   struct GNUNET_BANDWIDTH_Tracker *tracker;
58   struct GNUNET_TIME_Relative ret;
59
60   tracker = GNUNET_CONTAINER_multihashmap_get (trackers,
61                                                &peer->hashPubKey);
62   if (NULL == tracker)
63     return GNUNET_TIME_UNIT_ZERO; /* not connected, satisfy now */
64   if (amount >= 0)
65   {
66     ret = GNUNET_BANDWIDTH_tracker_get_delay (tracker,
67                                               amount);
68     if (ret.rel_value > 0)
69     {
70       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
71                   "Delay to satisfy reservation for %d bytes is %llu ms\n",
72                   (int) amount,
73                   (unsigned long long) ret.rel_value);
74       return ret;
75     }
76   }
77   (void) GNUNET_BANDWIDTH_tracker_consume (tracker, amount);
78   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
79               "Reserved %d bytes\n",
80               (int) amount);
81   return GNUNET_TIME_UNIT_ZERO;
82 }
83
84
85 /**
86  * Set the amount of bandwidth the other peer could currently transmit
87  * to us (as far as we know) to the given value.
88  * 
89  * @param peer identity of the peer
90  * @param bandwidth_in currently available bandwidth from that peer to
91  *        this peer (estimate)
92  */
93 void
94 GAS_reservations_set_bandwidth (const struct GNUNET_PeerIdentity *peer,
95                                 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in)
96 {
97   struct GNUNET_BANDWIDTH_Tracker *tracker;
98
99   tracker = GNUNET_CONTAINER_multihashmap_get (trackers,
100                                                &peer->hashPubKey);
101   if (0 == ntohl (bandwidth_in.value__))
102   {
103     GNUNET_assert (GNUNET_YES ==
104                    GNUNET_CONTAINER_multihashmap_remove (trackers,
105                                                          &peer->hashPubKey,
106                                                          tracker));
107     GNUNET_free (tracker);
108     return;
109   }
110   if (NULL == tracker)
111   {
112     tracker = GNUNET_malloc (sizeof (struct GNUNET_BANDWIDTH_Tracker));
113     GNUNET_BANDWIDTH_tracker_init (tracker,
114                                    bandwidth_in,
115                                    MAX_BANDWIDTH_CARRY_S);
116     GNUNET_CONTAINER_multihashmap_put (trackers,
117                                        &peer->hashPubKey,
118                                        tracker,
119                                        GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
120     return;
121   }
122   GNUNET_BANDWIDTH_tracker_update_quota (tracker,
123                                          bandwidth_in);
124 }
125
126
127 /**
128  * Initialize reservations subsystem.
129  */
130 void
131 GAS_reservations_init ()
132 {
133   trackers = GNUNET_CONTAINER_multihashmap_create(128);
134 }
135
136
137 /**
138  * Free memory of bandwidth tracker.
139  *
140  * @param cls NULL
141  * @param key peer identity (unused)
142  * @param value the 'struct GNUNET_BANDWIDTH_Tracker' to free
143  * @return GNUNET_OK (continue to iterate)
144  */
145 static int 
146 free_tracker (void *cls,
147               const GNUNET_HashCode * key,
148               void *value)
149 {
150   struct GNUNET_BANDWIDTH_Tracker *tracker = value;
151
152   GNUNET_free (tracker);
153   return GNUNET_OK;
154 }
155
156
157 /**
158  * Shutdown reservations subsystem.
159  */
160 void
161 GAS_reservations_done ()
162 {
163   GNUNET_CONTAINER_multihashmap_iterate (trackers, &free_tracker, NULL);
164   GNUNET_CONTAINER_multihashmap_destroy (trackers);
165 }
166
167 /* end of gnunet-service-ats_reservations.c */