aboutsummaryrefslogtreecommitdiff
path: root/src/testing/gnunet-testing-run-service.c
blob: 38351d75e737f61ac00ff5a1b1bd98c4e15cd782 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
     This file is part of GNUnet.
     (C) 2001, 2002, 2004, 2005, 2006, 2007, 2009 Christian Grothoff (and other contributing authors)

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 3, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/


/**
 * @file testing/gnunet-testing-run-service.c
 * @brief tool to start a service for testing
 * @author Florian Dold
 *
 * Start a peer, running only the service specified on the command line.
 * Outputs the path to the temporary configuration file to stdout.
 *
 * The peer will run until this program is killed,
 * or stdin is closed. When reading the character 'r' from stdin, the running service is
 * restarted with the same configuration.
 *
 * This executable is intended to be used by gnunet-java, in order to reliably
 * start and stop services for test cases.
 */

#include "platform.h"
#include "gnunet_getopt_lib.h"
#include "gnunet_program_lib.h"
#include "gnunet_util_lib.h"
#include "gnunet_signal_lib.h"
#include "gnunet_testing_lib-new.h"
#include "gnunet_os_lib.h"


#define LOG(kind,...)                                           \
  GNUNET_log_from (kind, "gnunet-testing", __VA_ARGS__)


/**
 * FIXME
 */
static struct GNUNET_DISK_FileHandle *fh;

/**
 * FIXME
 */
static char *tmpfilename;

/**
 * FIXME
 */
static GNUNET_SCHEDULER_TaskIdentifier tid;

/**
 * FIXME
 */
static struct GNUNET_TESTING_Peer *my_peer;




/**
 * Cleanup called by signal handlers and when stdin is closed.
 * Removes the temporary file.
 *
 * @param cls unused
 * @param tc scheduler context 
 */
static void
cleanup (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  if (NULL != tmpfilename)
  {
    if (0 != UNLINK (tmpfilename))
      GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", tmpfilename);
  }
  if (GNUNET_SCHEDULER_NO_TASK != tid)
  {
    GNUNET_SCHEDULER_cancel (tid);
    tid = GNUNET_SCHEDULER_NO_TASK;
  }
  if (NULL != fh)
  {
    GNUNET_DISK_file_close (fh);
    fh = NULL;
  }
}


/**
 * Called whenever we can read stdin non-blocking 
 *
 * @param cls unused
 * @param tc scheduler context 
 */
static void
stdin_cb (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  int c;

  tid = GNUNET_SCHEDULER_NO_TASK;
  if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
    return;
  GNUNET_assert (0 != (GNUNET_SCHEDULER_REASON_READ_READY & tc->reason));
  c = getchar ();
  switch (c)
  {
  case EOF:
  case 'q':
    GNUNET_SCHEDULER_shutdown ();
    return;
  case 'r':
    GNUNET_TESTING_peer_stop (my_peer); 
    GNUNET_TESTING_peer_start (my_peer); 
    printf ("restarted\n");
    fflush (stdout);
    break;
  case '\n':
  case '\r':
    /* ignore whitespace */
    break;
  default:
    fprintf (stderr, _("Unknown command, use 'q' to quit or 'r' to restart peer\n"));
    break;
  }
  tid = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL, fh, &stdin_cb, NULL);    
}


/**
 * Main function called by the testing library.
 * Executed inside a running scheduler.
 *
 * @param cls unused
 * @param cfg configuration of the peer that was started
 * @param peer handle to the peer
 */
static void
testing_main (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg,
              const struct GNUNET_TESTING_Peer *peer)
{
  my_peer = (struct GNUNET_TESTING_Peer *) peer;
  if (NULL == (tmpfilename = GNUNET_DISK_mktemp ("gnunet-testing")))
  {
    GNUNET_break (0);
    GNUNET_SCHEDULER_shutdown ();
    return;
  }
  if (GNUNET_SYSERR == 
      GNUNET_CONFIGURATION_write ((struct GNUNET_CONFIGURATION_Handle *) cfg, tmpfilename))
  {
    GNUNET_break (0);
    return;
  }
  printf("%s\n", tmpfilename);
  fflush(stdout);
  GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, NULL);
  fh = GNUNET_DISK_get_handle_from_native (stdin);
  tid = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL, fh, &stdin_cb, NULL);
}


/**
 * The main function.
 *
 * @param argc number of arguments from the command line
 * @param argv command line arguments
 * @return 0 ok, 1 on error
 */
int
main (int argc, char *const *argv)
{
  static char *cfg_name;
  static char *srv_name;
  static const struct GNUNET_GETOPT_CommandLineOption options[] = {
    {'c', "config", "FILENAME",
     gettext_noop ("name of the configuration file to use"), 1,
     &GNUNET_GETOPT_set_string, &cfg_name},
    {'s', "service", "SERVICE",
     gettext_noop ("name of the service to run"), 1,
     &GNUNET_GETOPT_set_string, &srv_name},
    GNUNET_GETOPT_OPTION_HELP ("tool to start a service for testing"),
    GNUNET_GETOPT_OPTION_END
  };
  int ret;

  if (GNUNET_SYSERR ==
      GNUNET_GETOPT_run("gnunet-testing-run-service", options, argc, argv))
    return 1;
  ret = GNUNET_TESTING_service_run_restartable ("gnunet_service_test", srv_name,
						cfg_name, &testing_main, NULL);
  if (0 != ret)
  {
    printf ("error\n");
  }
  else 
  {
    printf ("bye\n");
  }
  return ret;
}