change to core pai
[oweals/gnunet.git] / src / core / test_core_api_send_to_self.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010 Christian Grothoff
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 core/test_core_api_send_to_self.c
23  * @brief
24  * @author Philipp Toelke
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_testing_lib.h"
29 #include "gnunet_protocols.h"
30 #include "gnunet_core_service.h"
31 #include "gnunet_constants.h"
32
33 /**
34  * Final status code.
35  */
36 static int ret;
37
38 /**
39  * Handle to the cleanup task.
40  */
41 GNUNET_SCHEDULER_TaskIdentifier die_task;
42
43 /**
44  * Identity of this peer.
45  */
46 static struct GNUNET_PeerIdentity myself;
47
48 /**
49  * The handle to core
50  */
51 struct GNUNET_CORE_Handle *core;
52
53
54 /**
55  * Function scheduled as very last function, cleans up after us
56  */
57 static void
58 cleanup (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tskctx)
59 {
60   die_task = GNUNET_SCHEDULER_NO_TASK;
61
62   if (core != NULL)
63   {
64     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting core.\n");
65     GNUNET_CORE_disconnect (core);
66     core = NULL;
67   }
68   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Ending test.\n");
69 }
70
71
72 static int
73 receive (void *cls, const struct GNUNET_PeerIdentity *other,
74          const struct GNUNET_MessageHeader *message)
75 {
76   if (die_task != GNUNET_SCHEDULER_NO_TASK)
77     GNUNET_SCHEDULER_cancel (die_task);
78   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received message from peer %s\n",
79               GNUNET_i2s (other));
80   GNUNET_assert (GNUNET_MESSAGE_TYPE_DUMMY == ntohs (message->type));
81   GNUNET_assert (0 == memcmp (other, &myself, sizeof (myself)));
82   GNUNET_SCHEDULER_add_now (&cleanup, NULL);
83   ret = 0;
84   return GNUNET_OK;
85 }
86
87
88 static size_t
89 send_message (void *cls, size_t size, void *buf)
90 {
91   if (size == 0 || buf == NULL)
92   {
93     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Could not send; got 0 buffer\n");
94     return 0;
95   }
96   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending!\n");
97   struct GNUNET_MessageHeader *hdr = buf;
98
99   hdr->size = htons (sizeof (struct GNUNET_MessageHeader));
100   hdr->type = htons (GNUNET_MESSAGE_TYPE_DUMMY);
101   return ntohs (hdr->size);
102 }
103
104
105 static void
106 init (void *cls, struct GNUNET_CORE_Handle *core,
107       const struct GNUNET_PeerIdentity *my_identity)
108 {
109   if (core == NULL)
110   {
111     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Could NOT connect to CORE;\n");
112     return;
113   }
114   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
115               "Correctly connected to CORE; we are the peer %s.\n",
116               GNUNET_i2s (my_identity));
117   memcpy (&myself, my_identity, sizeof (struct GNUNET_PeerIdentity));
118 }
119
120
121 static void
122 connect_cb (void *cls, const struct GNUNET_PeerIdentity *peer)
123 {
124   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connected to peer %s.\n",
125               GNUNET_i2s (peer));
126   if (0 == memcmp (peer, &myself, sizeof (struct GNUNET_PeerIdentity)))
127   {
128     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
129                 "Connected to myself; sending message!\n");
130     GNUNET_CORE_notify_transmit_ready (core, GNUNET_YES, 0,
131                                        GNUNET_TIME_UNIT_FOREVER_REL, peer,
132                                        sizeof (struct GNUNET_MessageHeader),
133                                        send_message, NULL);
134   }
135 }
136
137
138 /**
139  * Main function that will be run by the scheduler.
140  *
141  * @param cls closure
142  * @param cfg configuration
143  */
144 static void
145 run (void *cls,
146      const struct GNUNET_CONFIGURATION_Handle *cfg,
147      struct GNUNET_TESTING_Peer *peer)
148 {
149   const static struct GNUNET_CORE_MessageHandler handlers[] = {
150     {&receive, GNUNET_MESSAGE_TYPE_DUMMY, 0},
151     {NULL, 0, 0}
152   };
153   core =
154     GNUNET_CORE_connect (cfg, NULL, &init, &connect_cb, NULL, NULL,
155                          0, NULL, 0, handlers); 
156   die_task =
157       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
158                                     (GNUNET_TIME_UNIT_SECONDS, 300), &cleanup,
159                                     NULL);
160 }
161
162
163 /**
164  * The main function to test sending a message to the local peer via core
165  *
166  * @param argc number of arguments from the command line
167  * @param argv command line arguments
168  * @return 0 ok, 1 on error
169  */
170 int
171 main (int argc, char *argv[])
172 {
173   if (0 != GNUNET_TESTING_peer_run ("test-core-api-send-to-self",
174                                     "test_core_api_peer1.conf",
175                                     &run, NULL))
176     return 1;
177   return ret;
178 }
179
180 /* end of test_core_api_send_to_self.c */