cb wrapper for connecting peers
[oweals/gnunet.git] / src / transport / transport-testing.c
1 /*
2      This file is part of GNUnet.
3      (C) 2006, 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 transport_testing.c
23  * @brief testing lib for transport service
24  *
25  * @author Matthias Wachs
26  */
27
28 #include "transport-testing.h"
29
30 struct ConnectingContext
31 {
32   struct PeerContext * p1;
33   struct PeerContext * p2;
34   GNUNET_SCHEDULER_TaskIdentifier tct;
35 };
36
37 static void
38 notify_connect (void *cls,
39                 const struct GNUNET_PeerIdentity *peer,
40                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
41                 uint32_t ats_count)
42 {
43   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' connected \n",
44        GNUNET_i2s (peer));
45
46   struct PeerContext * p = cls;
47   if (p == NULL)
48     return;
49   if (p->nc != NULL)
50     p->nc (p->cb_cls, peer, ats, ats_count);
51 }
52
53 static void
54 notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
55 {
56   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' disconnected \n",
57        GNUNET_i2s (peer));
58
59   struct PeerContext * p = cls;
60   if (p == NULL)
61     return;
62   if (p->nd != NULL)
63     p->nd (p->cb_cls, peer);
64 }
65
66 static void
67 notify_receive (void *cls,
68                 const struct GNUNET_PeerIdentity *peer,
69                 const struct GNUNET_MessageHeader *message,
70                 const struct GNUNET_TRANSPORT_ATS_Information *ats,
71                 uint32_t ats_count)
72 {
73   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receiving\n");
74
75   struct PeerContext * p = cls;
76   if (p == NULL)
77     return;
78   if (p->rec != NULL)
79     p->rec (p->cb_cls, peer, message, ats, ats_count);
80 }
81
82
83 static void
84 exchange_hello_last (void *cls,
85                      const struct GNUNET_MessageHeader *message)
86 {
87   struct ConnectingContext * cc = cls;
88   struct PeerContext *me = cc->p2;
89   struct PeerContext *p1 = cc->p1;
90
91   GNUNET_assert (message != NULL);
92   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
93               "Exchanging HELLO of size %d with peer (%s)!\n",
94               (int) GNUNET_HELLO_size((const struct GNUNET_HELLO_Message *)message),
95               GNUNET_i2s (&me->id));
96   GNUNET_assert (GNUNET_OK ==
97                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
98                                       message, &me->id));
99   GNUNET_TRANSPORT_offer_hello (p1->th, message, NULL, NULL);
100 }
101
102
103 static void
104 exchange_hello (void *cls,
105                 const struct GNUNET_MessageHeader *message)
106 {
107   struct ConnectingContext * cc = cls;
108   struct PeerContext *me = cc->p1;
109   struct PeerContext *p2 = cc->p2;
110
111   GNUNET_assert (message != NULL);
112   GNUNET_assert (GNUNET_OK ==
113                  GNUNET_HELLO_get_id ((const struct GNUNET_HELLO_Message *)
114                                       message, &me->id));
115   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
116               "Exchanging HELLO of size %d from peer %s!\n",
117               (int) GNUNET_HELLO_size((const struct GNUNET_HELLO_Message *)message),
118               GNUNET_i2s (&me->id));
119   GNUNET_TRANSPORT_offer_hello (p2->th, message, NULL, NULL);
120 }
121
122 static void
123 try_connect (void *cls,
124              const struct GNUNET_SCHEDULER_TaskContext *tc)
125 {
126   struct ConnectingContext * cc = cls;
127   struct PeerContext *p1 = cc->p1;
128   struct PeerContext *p2 = cc->p2;
129
130   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
131               "Asking peers to connect...\n");
132   /* FIXME: 'pX.id' may still be all-zeros here... */
133   GNUNET_TRANSPORT_try_connect (p2->th,
134                                 &p1->id);
135   GNUNET_TRANSPORT_try_connect (p1->th,
136                                 &p2->id);
137   cc->tct = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
138                                       &try_connect,
139                                       cc);
140 }
141
142 struct PeerContext *
143 GNUNET_TRANSPORT_TESTING_start_peer (const char * cfgname,
144     GNUNET_TRANSPORT_ReceiveCallback rec,
145     GNUNET_TRANSPORT_NotifyConnect nc,
146     GNUNET_TRANSPORT_NotifyDisconnect nd,
147     void * cb_cls)
148 {
149   struct PeerContext * p = GNUNET_malloc (sizeof (struct PeerContext));
150
151   p->cfg = GNUNET_CONFIGURATION_create ();
152
153   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
154   if (GNUNET_CONFIGURATION_have_value (p->cfg,"PATHS", "SERVICEHOME"))
155       GNUNET_CONFIGURATION_get_value_string (p->cfg, "PATHS", "SERVICEHOME", &p->servicehome);
156   if (NULL != p->servicehome)
157     GNUNET_DISK_directory_remove (p->servicehome);
158   p->arm_proc = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
159                                         "gnunet-service-arm",
160                                         "-c", cfgname, NULL);
161   p->nc = nc;
162   p->nd = nd;
163   p->rec = rec;
164   p->cb_cls = cb_cls;
165
166   p->th = GNUNET_TRANSPORT_connect(p->cfg, NULL,
167                             p,
168                             &notify_receive,
169                             &notify_connect,
170                             &notify_disconnect);
171   GNUNET_assert (p->th != NULL);
172   return p;
173 }
174
175 void
176 GNUNET_TRANSPORT_TESTING_stop_peer (struct PeerContext * p)
177 {
178   if (p->th != NULL)
179     GNUNET_TRANSPORT_disconnect(p->th);
180
181   if (NULL != p->arm_proc)
182     {
183       if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
184         GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
185       GNUNET_OS_process_wait (p->arm_proc);
186       GNUNET_OS_process_close (p->arm_proc);
187       p->arm_proc = NULL;
188     }
189   GNUNET_CONFIGURATION_destroy (p->cfg);
190   if (p->servicehome != NULL)
191     {
192     GNUNET_DISK_directory_remove (p->servicehome);
193     GNUNET_free(p->servicehome);
194     }
195   GNUNET_free (p);
196 }
197
198 void
199 GNUNET_TRANSPORT_TESTING_connect_peers (struct PeerContext * p1,
200                                         struct PeerContext * p2,
201                                         GNUNET_TRANSPORT_TESTING_connect_cb * cb,
202                                         void * cls)
203 {
204   struct ConnectingContext * cc = GNUNET_malloc (sizeof (struct ConnectingContext));
205
206   GNUNET_assert (p1 != NULL);
207   GNUNET_assert (p1->th != NULL);
208
209   GNUNET_assert (p2 != NULL);
210   GNUNET_assert (p2->th != NULL);
211
212   cc->p1 = p1;
213   cc->p2 = p2;
214   GNUNET_TRANSPORT_get_hello (p1->th, &exchange_hello, cc);
215   GNUNET_TRANSPORT_get_hello (p2->th, &exchange_hello_last, cc);
216
217   cc->tct = GNUNET_SCHEDULER_add_now (&try_connect, cc);
218 }
219
220
221
222 /* end of transport_testing.h */