root / trunk / code / projects / colonet / server / colonet_wireless.cpp @ 623
History | View | Annotate | Download (10 KB)
1 |
/** @file colonet_wireless.c
|
---|---|
2 |
*
|
3 |
* @brief Implementation of server-side colonet wireless library
|
4 |
*
|
5 |
* @author Eugene Marinelli
|
6 |
*/
|
7 |
|
8 |
/********************************* Includes **********************************/
|
9 |
#include <string> |
10 |
#include <pthread.h> |
11 |
#include <iostream> |
12 |
#include <fstream> |
13 |
#include <unistd.h> |
14 |
#include <fcntl.h> |
15 |
#include <signal.h> |
16 |
|
17 |
#include <ColonetServer.h> |
18 |
#include <wireless.h> // Colonet wireless library. |
19 |
#include <wl_token_ring.h> |
20 |
|
21 |
#include <colonet_defs.h> |
22 |
#include <colonet_wireless.h> |
23 |
|
24 |
/******************************* Definitions *********************************/
|
25 |
|
26 |
//Enable debug printouts
|
27 |
#define DEBUG 1 |
28 |
|
29 |
#ifdef DEBUG
|
30 |
#define dbg_printf(...) printf(__VA_ARGS__)
|
31 |
#define dbg_fprintf(...) fprintf(__VA_ARGS__)
|
32 |
#else
|
33 |
#define dbg_printf(...)
|
34 |
#define dbg_fprintf(...)
|
35 |
#endif
|
36 |
|
37 |
extern ColonetServer colonet_server;
|
38 |
|
39 |
static bool logging_enabled; |
40 |
static char log_filename[80]; |
41 |
static pthread_t listener_thread;
|
42 |
static char wl_port[40]; |
43 |
|
44 |
/************************* Internal prototypes *******************************/
|
45 |
static void* listen(void* args); |
46 |
static void timeout_handler(void); |
47 |
static void handle_response(int frame, int received); |
48 |
static void handle_receive(char type, int source, unsigned char* packet, int len); |
49 |
static void unregister(void); |
50 |
static int log_packet(unsigned char* packet, int len); |
51 |
|
52 |
/**************************** Public functions *******************************/
|
53 |
/**
|
54 |
* @brief Initializes the wireless library
|
55 |
*
|
56 |
* @param wl_port_ The port to listen for wireless messages on
|
57 |
* @param log_filename_ The name of the log file
|
58 |
*
|
59 |
* @return 0 on success, negative error code on failure
|
60 |
*/
|
61 |
int colonet_wl_init(char* wl_port_, char* log_filename_) { |
62 |
if (log_filename_ != NULL) { |
63 |
logging_enabled = true;
|
64 |
strcpy(log_filename, log_filename_); |
65 |
} |
66 |
|
67 |
strncpy(wl_port, wl_port_, 40);
|
68 |
|
69 |
wl_set_com_port(wl_port); |
70 |
|
71 |
fprintf(stderr, "Calling wl_init(%s)...\n", wl_port);
|
72 |
if (wl_init() != 0) { |
73 |
fprintf(stderr, "wl_init failed.\n");
|
74 |
return -1; |
75 |
} |
76 |
|
77 |
wl_token_ring_register(); |
78 |
|
79 |
fprintf(stderr, "Joining token ring...\n");
|
80 |
if (wl_token_ring_join() != 0) { |
81 |
fprintf(stderr, "Failed to join token ring.\n");
|
82 |
return -1; |
83 |
} |
84 |
fprintf(stderr, "Joined token ring.\n");
|
85 |
|
86 |
return 0; |
87 |
} |
88 |
|
89 |
/**
|
90 |
* @brief This function will kill the thread that is listening for wireless messages
|
91 |
*/
|
92 |
void colonet_wl_kill_listener_thread() {
|
93 |
pthread_kill(listener_thread, 9);
|
94 |
} |
95 |
|
96 |
/**
|
97 |
* @brief This function spawns a thread to listen for wireless messages
|
98 |
*
|
99 |
* @return 0 on success, negative error code on failure
|
100 |
*/
|
101 |
int colonet_wl_run_listener_thread() {
|
102 |
dbg_printf("Spawning listener thread...\n");
|
103 |
|
104 |
if (pthread_create(&listener_thread, NULL, listen, NULL)) { |
105 |
perror("pthread_create");
|
106 |
return -1; |
107 |
} |
108 |
|
109 |
return 0; |
110 |
} |
111 |
|
112 |
/**
|
113 |
* @brief This function sends a message out on the wireless
|
114 |
*
|
115 |
* @param client_source The index in the connection pool of the client that is sending the message
|
116 |
* @param dest The robot that is meant to receive this message
|
117 |
* @param msg_type The type of the message
|
118 |
* @param msg_code The message code
|
119 |
* @param args The arguments to send with the message
|
120 |
*
|
121 |
* @return 0 on success, a negative error code on failure
|
122 |
*/
|
123 |
int colonet_wl_send(short client_source, short dest, ColonetRobotMessageType msg_type, unsigned char msg_code, |
124 |
unsigned char* args) { |
125 |
printf("colonet_wl_send: client_source:%d, dest:%d, msg_code:%d\n", client_source, dest, msg_code);
|
126 |
|
127 |
//create and set up new packet to be sent.
|
128 |
ColonetRobotServerPacket pkt; |
129 |
pkt.client_id = client_source; |
130 |
pkt.msg_code = msg_code; |
131 |
|
132 |
//copy over the args into the data portion of the packet
|
133 |
for (int i = 0; i < PACKET_DATA_LEN; i++) { |
134 |
//printf("data %i: %u\n", i, args[i]);
|
135 |
pkt.data[i] = args[i]; |
136 |
} |
137 |
|
138 |
if (dest == GLOBAL_DEST) {
|
139 |
//printf("sending to global dest\n");
|
140 |
int ret = wl_send_global_packet(COLONET_PACKET_GROUP_ID, (char)msg_type, (char*)(&pkt), |
141 |
sizeof(ColonetRobotServerPacket), 0); |
142 |
if (ret != 0) { |
143 |
fprintf(stderr, "%s: wl_send_global_packet failed.\n", __FUNCTION__);
|
144 |
return -1; |
145 |
} |
146 |
} else {
|
147 |
//("sending to specific robot: %d.\n", dest);
|
148 |
int ret = wl_send_robot_to_robot_global_packet(COLONET_PACKET_GROUP_ID, (char)msg_type, (char*)(&pkt), |
149 |
sizeof(ColonetRobotServerPacket), dest,
|
150 |
COLONET_RESPONSE_PACKET_FRAME_ID); |
151 |
if (ret != 0) { |
152 |
fprintf(stderr, "%s: wl_send_robot_to_robot_global_packet failed.\n", __FUNCTION__);
|
153 |
return -1; |
154 |
} |
155 |
} |
156 |
|
157 |
return 0; |
158 |
} |
159 |
|
160 |
/**
|
161 |
* @brief Used to get the number of robots in the token ring
|
162 |
*
|
163 |
* @return The result of wl_token_get_num_robots()
|
164 |
*/
|
165 |
int colonet_get_num_robots(void) { |
166 |
return wl_token_get_num_robots();
|
167 |
} |
168 |
|
169 |
/**
|
170 |
* @brief Gets a list of the xbee ids of the ones in the token ring
|
171 |
*
|
172 |
* @param numrobots A pointer to the variable where you want the number of robots to be stored
|
173 |
*
|
174 |
* @return A dynamically allocated piece of memory that contains the list of xbee ids.
|
175 |
* The function calling this function must free this memory when done with it.
|
176 |
*/
|
177 |
int* colonet_get_xbee_ids(int* numrobots) { |
178 |
int num_robots = wl_token_get_num_robots();
|
179 |
int* ids = (int*)malloc(num_robots * sizeof(int)); |
180 |
|
181 |
wl_token_iterator_begin(); |
182 |
|
183 |
int i = 0; |
184 |
while (wl_token_iterator_has_next()) {
|
185 |
ids[i] = wl_token_iterator_next(); |
186 |
i++; |
187 |
} |
188 |
|
189 |
*numrobots = num_robots; |
190 |
return ids;
|
191 |
} |
192 |
|
193 |
/**
|
194 |
* @brief Gets the sensor matrix from the wireless library
|
195 |
*
|
196 |
* @param numrobots A pointer to the variable where you want the number of robots to be stored
|
197 |
* @param ids_ A pointer to a pointer that you want to point to the list of xbee ids. This memory is dynamically
|
198 |
* allocated and should be freed by the calling process when it is done with it
|
199 |
*
|
200 |
* @return The 2d matrix reprsenting the sensor matrix. This memory is dynamically allocated and should be freed by
|
201 |
* the calling process when it is done with it
|
202 |
*/
|
203 |
int** colonet_get_sensor_matrix(int* numrobots, int** ids_) { |
204 |
int num_robots;
|
205 |
int* ids = colonet_get_xbee_ids(&num_robots);
|
206 |
|
207 |
int** m = (int**)malloc(num_robots * sizeof(int*)); |
208 |
for (int i = 0; i < num_robots; i++) { |
209 |
m[i] = (int*)malloc(num_robots * sizeof(int*)); |
210 |
} |
211 |
|
212 |
for (int i = 0; i < num_robots; i++) { |
213 |
for (int j = 0; j < num_robots; j++) { |
214 |
m[i][j] = wl_token_get_sensor_reading(ids[i], ids[j]); |
215 |
} |
216 |
} |
217 |
|
218 |
*numrobots = num_robots; |
219 |
*ids_ = ids; |
220 |
return m;
|
221 |
} |
222 |
|
223 |
/**************************** Private functions ******************************/
|
224 |
|
225 |
static void timeout_handler() { |
226 |
// printf("colonet wireless - timeout!\n");
|
227 |
} |
228 |
|
229 |
static void handle_response(int frame, int received) { |
230 |
//TODO: These are just here to get rid of compiler warnings
|
231 |
frame = frame; |
232 |
received = received; |
233 |
printf("handle_response\n");
|
234 |
} |
235 |
|
236 |
static void handle_receive(char type, int source, unsigned char* data, int len) { |
237 |
type = type; //TODO: This is just here to get rid of compiler warnings.
|
238 |
|
239 |
printf("***Got packet from robot***\n");
|
240 |
|
241 |
ColonetRobotServerPacket* pkt = (ColonetRobotServerPacket*)data; |
242 |
|
243 |
if (logging_enabled) {
|
244 |
log_packet(data, len); |
245 |
} |
246 |
|
247 |
//see if a robot wants the server to tell it where it is
|
248 |
if (pkt->msg_code == ROBOT_REQUEST_POSITION_FROM_SERVER) {
|
249 |
/* Robot has requested its position. */
|
250 |
int robot_x, robot_y;
|
251 |
PositionMonitor* pm = colonet_server.getPositionMonitor(); |
252 |
int num_robots = pm->getNumVisibleRobots();
|
253 |
//ask the position monitor for where that robot is.
|
254 |
int ret = pm->getRobotPosition(source, &robot_x, &robot_y);
|
255 |
if (ret != 0 && num_robots != 1) { |
256 |
fprintf(stderr, "Robot %d requested position, but its position is not known.\n", source);
|
257 |
} else {
|
258 |
if (ret != 0 /* && num_robots == 1 */) { |
259 |
VisionPosition pos = pm->getFirstPosition(); |
260 |
robot_x = pos.x; |
261 |
robot_y = pos.y; |
262 |
} |
263 |
|
264 |
unsigned char response[80]; |
265 |
response[0] = (robot_x >> 8) & 0xFF; |
266 |
response[1] = robot_x & 0xFF; |
267 |
response[2] = (robot_y >> 8) & 0xFF; |
268 |
response[3] = robot_y & 0xFF; |
269 |
|
270 |
fprintf(stderr, "Robot %d requested position. Its position is %d,%d.\n", source, robot_x, robot_y);
|
271 |
|
272 |
if (colonet_wl_send(-1, source, COLONET_COMMAND, SERVER_REPORT_POSITION_TO_ROBOT, response) != 0) { |
273 |
fprintf(stderr, "colonet_wl_send failed!\n");
|
274 |
exit(1);
|
275 |
} |
276 |
} |
277 |
} else {
|
278 |
printf("Calling colonet_server.process_received_wireless_message\n");
|
279 |
char processed_data[80]; |
280 |
sprintf(processed_data, "%d %d %d %s\n", RESPONSE_TO_CLIENT_REQUEST, pkt->msg_code, source, pkt->data);
|
281 |
|
282 |
fprintf(stderr, "client_id=%d; processed_data: %s\n", pkt->client_id, processed_data);
|
283 |
|
284 |
colonet_server.process_received_wireless_message(pkt->client_id, processed_data, strlen(processed_data)); |
285 |
} |
286 |
} |
287 |
|
288 |
static void unregister(void) { |
289 |
printf("unregister\n");
|
290 |
} |
291 |
|
292 |
/** @brief Analogous to the "SIGNAL" or "ISR" function on the robots.
|
293 |
* Listens for bytes on the wireless port and constructs packets based on them.
|
294 |
* Not part of the ColonetWireless class since a function pointer must be
|
295 |
* passed in starting the thread that runs it (tricky or impossible if it's
|
296 |
* a class function).
|
297 |
*
|
298 |
* @param args Pointer to arguments. Can be safely casted to ListenerArgs type
|
299 |
* @return NULL
|
300 |
*/
|
301 |
static void* listen(void* args) { |
302 |
args = args; //TODO: These are just here to get rid of compiler warnings.
|
303 |
|
304 |
fprintf(stderr, "Called listen.\n");
|
305 |
|
306 |
PacketGroupHandler pgh = {COLONET_PACKET_GROUP_ID, timeout_handler, handle_response, handle_receive, unregister}; |
307 |
wl_register_packet_group(&pgh); |
308 |
|
309 |
while (1) { |
310 |
wl_do(); |
311 |
usleep(1000);
|
312 |
} |
313 |
|
314 |
fprintf(stderr, "Listen is returning.\n");
|
315 |
|
316 |
wl_terminate(); |
317 |
return NULL; |
318 |
} |
319 |
|
320 |
/** @brief
|
321 |
*
|
322 |
* @param pkt Packet to be logged
|
323 |
*
|
324 |
* @return 0 on success, -1 on failure
|
325 |
*/
|
326 |
int log_packet(unsigned char* packet, int len) { |
327 |
FILE* logfile = fopen(log_filename, "a");
|
328 |
|
329 |
if (logfile == NULL) { |
330 |
dbg_printf("%s: Error - fopen %s failed.\n", log_filename, __FUNCTION__);
|
331 |
return -1; |
332 |
} |
333 |
|
334 |
for (int i = 0; i < len; i++) { |
335 |
fprintf(logfile, "%d ", *((unsigned char*)packet + i)); |
336 |
} |
337 |
fprintf(logfile, "\n");
|
338 |
|
339 |
fclose(logfile); |
340 |
return 0; |
341 |
} |