implemented continuations to testbed peer start/stop API
[oweals/gnunet.git] / src / testbed / testbed_api_peers.h
1 /*
2       This file is part of GNUnet
3       (C) 2008--2012 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 testbed/testbed_api_peers.h
23  * @brief internal API to access the 'peers' subsystem
24  * @author Christian Grothoff
25  * @author Sree Harsha Totakura
26  */
27
28 #ifndef NEW_TESTING_API_PEERS_H
29 #define NEW_TESTING_API_PEERS_H
30
31 #include "gnunet_testbed_service.h"
32 #include "gnunet_helper_lib.h"
33
34
35 /**
36  * Enumeration of possible states a peer could be in
37  */
38 enum PeerState
39 {
40     /**
41      * State to signify that this peer is invalid
42      */
43   PS_INVALID,
44
45     /**
46      * The peer has been created
47      */
48   PS_CREATED,
49
50     /**
51      * The peer is running
52      */
53   PS_STARTED,
54
55     /**
56      * The peer is stopped
57      */
58   PS_STOPPED,
59 };
60
61
62 /**
63  * A peer controlled by the testing framework.  A peer runs
64  * at a particular host.
65  */
66 struct GNUNET_TESTBED_Peer
67 {
68   /**
69    * Our controller context (not necessarily the controller
70    * that is responsible for starting/running the peer!).
71    */
72   struct GNUNET_TESTBED_Controller *controller;
73
74   /**
75    * Which host does this peer run on?
76    */
77   struct GNUNET_TESTBED_Host *host;
78
79   /**
80    * Globally unique ID of the peer.
81    */
82   uint32_t unique_id;
83
84   /**
85    * Peer's state
86    */
87   enum PeerState state;
88 };
89
90
91 /**
92  * Data for the OperationType OP_PEER_CREATE
93  */
94 struct PeerCreateData
95 {
96   /**
97    * The host where the peer has to be created
98    */
99   struct GNUNET_TESTBED_Host *host;
100
101   /**
102    * The template configuration of the peer
103    */
104   const struct GNUNET_CONFIGURATION_Handle *cfg;
105
106   /**
107    * The call back to call when we receive peer create success message
108    */
109   GNUNET_TESTBED_PeerCreateCallback cb;
110
111   /**
112    * The closure for the above callback
113    */
114   void *cls;
115
116   /**
117    * The peer structure to return when we get success message
118    */
119   struct GNUNET_TESTBED_Peer *peer;
120
121 };
122
123
124 /**
125  * Data for OperationType OP_PEER_START and OP_PEER_STOP
126  */
127 struct PeerEventData
128 {
129   /**
130    * The handle of the peer to start
131    */
132   struct GNUNET_TESTBED_Peer *peer;
133   
134   /**
135    * The Peer churn callback to call when this operation is completed
136    */
137   GNUNET_TESTBED_PeerChurnCallback pcc;
138    
139   /**
140    * Closure for the above callback
141    */
142   void *pcc_cls;
143     
144 };
145
146
147 /**
148  * Data for the OperationType OP_PEER_DESTROY;
149  */
150 struct PeerDestroyData
151 {
152   /**
153    * The peer structure
154    */
155   struct GNUNET_TESTBED_Peer *peer;
156
157   //PEERDESTROYDATA
158 };
159
160
161 /**
162  * Data for the OperationType OP_PEER_INFO
163  */
164 struct PeerInfoData
165 {
166   /**
167    * The peer whose information has been requested
168    */
169   struct GNUNET_TESTBED_Peer *peer;
170
171   /**
172    * The Peer info callback to call when this operation has completed
173    */
174   GNUNET_TESTBED_PeerInfoCallback cb;
175     
176   /**
177    * The closure for peer info callback
178    */
179   void *cb_cls;
180
181   /**
182    * The type of peer information requested
183    */
184   enum GNUNET_TESTBED_PeerInformationType pit;
185 };
186
187
188 /**
189  * Data structure for OperationType OP_OVERLAY_CONNECT
190  */
191 struct OverlayConnectData
192 {
193   /**
194    * Peer A to connect to peer B
195    */
196   struct GNUNET_TESTBED_Peer *p1;
197
198   /**
199    * Peer B
200    */
201   struct GNUNET_TESTBED_Peer *p2;
202
203   /**
204    * The operation completion callback to call once this operation is done
205    */
206   GNUNET_TESTBED_OperationCompletionCallback cb;
207   
208   /**
209    * The closure for the above callback
210    */
211   void *cb_cls;
212
213 };
214
215
216
217 /**
218  * Create the given peer at the specified host using the given
219  * controller.  If the given controller is not running on the target
220  * host, it should find or create a controller at the target host and
221  * delegate creating the peer.  Explicit delegation paths can be setup
222  * using 'GNUNET_TESTBED_controller_link'.  If no explicit delegation
223  * path exists, a direct link with a subordinate controller is setup
224  * for the first delegated peer to a particular host; the subordinate
225  * controller is then destroyed once the last peer that was delegated
226  * to the remote host is stopped.  This function is used in particular
227  * if some other controller has already assigned a unique ID to the
228  * peer.
229  *
230  * Creating the peer only creates the handle to manipulate and further
231  * configure the peer; use "GNUNET_TESTBED_peer_start" and
232  * "GNUNET_TESTBED_peer_stop" to actually start/stop the peer's
233  * processes.
234  *
235  * Note that the given configuration will be adjusted by the
236  * controller to avoid port/path conflicts with other peers.
237  * The "final" configuration can be obtained using
238  * 'GNUNET_TESTBED_peer_get_information'.
239  *
240  * @param unique_id unique ID for this peer
241  * @param controller controller process to use
242  * @param host host to run the peer on
243  * @param cfg configuration to use for the peer
244  * @param cb the callback to call when the peer has been created
245  * @param cls the closure to the above callback
246  * @return the operation handle
247  */
248 struct GNUNET_TESTBED_Operation *
249 GNUNET_TESTBED_peer_create_with_id_ (uint32_t unique_id,
250                                      struct GNUNET_TESTBED_Controller
251                                      *controller,
252                                      struct GNUNET_TESTBED_Host *host,
253                                      const struct GNUNET_CONFIGURATION_Handle
254                                      *cfg, GNUNET_TESTBED_PeerCreateCallback cb,
255                                      void *cls);
256
257
258 /**
259  * Generate PeerGetConfigurationMessage
260  *
261  * @param peer_id the id of the peer whose information we have to get
262  * @param operation_id the ip of the operation that should be represented in
263  *          the message
264  * @return the PeerGetConfigurationMessage
265  */
266 struct GNUNET_TESTBED_PeerGetConfigurationMessage *
267 GNUNET_TESTBED_generate_peergetconfig_msg_ (uint32_t peer_id,
268                                             uint64_t operation_id);
269
270 #endif
271 /* end of testbed_api_peers.h */