aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-10-17 11:40:58 +0000
committerChristian Grothoff <christian@grothoff.org>2011-10-17 11:40:58 +0000
commit5ac8b66b518f7ad4b5d537c91bc1445dc93a9ee5 (patch)
tree581b943141268341af2f0cac7137dec2a7028ad9 /src/core/gnunet-service-core.c
parent43fd4ad946c398e06e5048837de8b3e48d9cd8ff (diff)
downloadgnunet-5ac8b66b518f7ad4b5d537c91bc1445dc93a9ee5.tar.gz
gnunet-5ac8b66b518f7ad4b5d537c91bc1445dc93a9ee5.zip
rename new core
Diffstat (limited to 'src/core/gnunet-service-core.c')
-rw-r--r--src/core/gnunet-service-core.c126
1 files changed, 126 insertions, 0 deletions
diff --git a/src/core/gnunet-service-core.c b/src/core/gnunet-service-core.c
new file mode 100644
index 000000000..25cabde2e
--- /dev/null
+++ b/src/core/gnunet-service-core.c
@@ -0,0 +1,126 @@
1/*
2 This file is part of GNUnet.
3 (C) 2009, 2010, 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 core/gnunet-service-core.c
23 * @brief high-level P2P messaging
24 * @author Christian Grothoff
25 *
26 * Not implemented:
27 * - peer status changes (PeerStatusNotifyMessage) [needed?]
28 * - ATS integration / bw allocation / preferences
29 */
30#include "platform.h"
31#include "gnunet_util_lib.h"
32#include "gnunet-service-core.h"
33#include "gnunet-service-core_clients.h"
34#include "gnunet-service-core_kx.h"
35#include "gnunet-service-core_neighbours.h"
36#include "gnunet-service-core_sessions.h"
37#include "gnunet-service-core_typemap.h"
38
39
40/**
41 * Our identity.
42 */
43struct GNUNET_PeerIdentity GSC_my_identity;
44
45/**
46 * Our configuration.
47 */
48const struct GNUNET_CONFIGURATION_Handle *GSC_cfg;
49
50/**
51 * For creating statistics.
52 */
53struct GNUNET_STATISTICS_Handle *GSC_stats;
54
55
56/**
57 * Last task run during shutdown. Disconnects us from
58 * the transport.
59 */
60static void
61cleaning_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
62{
63#if DEBUG_CORE
64 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
65 "Core service shutting down.\n");
66#endif
67 GSC_CLIENTS_done ();
68 GSC_SESSIONS_done ();
69 GSC_NEIGHBOURS_done ();
70 GSC_KX_done ();
71 GSC_TYPEMAP_done ();
72 if (GSC_stats != NULL)
73 {
74 GNUNET_STATISTICS_destroy (GSC_stats, GNUNET_NO);
75 GSC_stats = NULL;
76 }
77 GSC_cfg = NULL;
78}
79
80
81/**
82 * Initiate core service.
83 *
84 * @param cls closure
85 * @param server the initialized server
86 * @param c configuration to use
87 */
88static void
89run (void *cls, struct GNUNET_SERVER_Handle *server,
90 const struct GNUNET_CONFIGURATION_Handle *c)
91{
92 GSC_cfg = c;
93 GSC_stats = GNUNET_STATISTICS_create ("core", GSC_cfg);
94 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleaning_task,
95 NULL);
96 GSC_TYPEMAP_init ();
97 if ( (GNUNET_OK != GSC_KX_init ()) ||
98 (GNUNET_OK != GSC_NEIGHBOURS_init ()) )
99 {
100 GNUNET_SCHEDULER_shutdown ();
101 return;
102 }
103 GSC_SESSIONS_init ();
104 GSC_CLIENTS_init (server);
105 GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Core service of `%4s' ready.\n"),
106 GNUNET_i2s (&GSC_my_identity));
107}
108
109
110
111/**
112 * The main function for the transport service.
113 *
114 * @param argc number of arguments from the command line
115 * @param argv command line arguments
116 * @return 0 ok, 1 on error
117 */
118int
119main (int argc, char *const *argv)
120{
121 return (GNUNET_OK ==
122 GNUNET_SERVICE_run (argc, argv, "core", GNUNET_SERVICE_OPTION_NONE,
123 &run, NULL)) ? 0 : 1;
124}
125
126/* end of gnunet-service-core.c */