Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / ColonetServer / colonet_wireless.cpp @ 418

History | View | Annotate | Download (6.15 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 <wireless.h> // Colonet wireless library.
18
#include <wl_token_ring.h>
19

    
20
#include <colonet_defs.h>
21
#include <colonet_wireless.h>
22

    
23
/******************************* Definitions *********************************/
24

    
25
//Enable debug printouts
26
#define DEBUG 1
27

    
28
#ifdef DEBUG
29
#define dbg_printf(...) printf(__VA_ARGS__)
30
#define dbg_fprintf(...) fprintf(__VA_ARGS__)
31
#else
32
#define dbg_printf(...)
33
#define dbg_fprintf(...)
34
#endif
35

    
36
static MsgHandlerFunction message_handler;
37
static bool logging_enabled;
38
static char log_filename[80];
39
static pthread_t listener_thread;
40
static char wl_port[40];
41

    
42
/************************* Internal prototypes *******************************/
43
static void* listen(void* args);
44
static void timeout_handler(void);
45
static void handle_response(int frame, int received);
46
static void handle_receive(char type, int source, unsigned char* packet, int len);
47
static void unregister(void);
48
static int log_packet(unsigned char* packet, int len);
49

    
50
/**************************** Public functions *******************************/
51
int colonet_wl_init(char* wl_port_, MsgHandlerFunction message_handler_, char* log_filename_) {
52
  if (log_filename_ != NULL) {
53
    logging_enabled = true;
54
    strcpy(log_filename, log_filename_);
55
  }
56

    
57
  strncpy(wl_port, wl_port_, 40);
58

    
59
  message_handler = message_handler_;
60

    
61
  wl_set_com_port(wl_port);
62

    
63
  printf("Calling wl_init(%s)...\n", wl_port);
64
  if (wl_init() != 0) {
65
    fprintf(stderr, "wl_init failed.\n");
66
    return -1;
67
  }
68

    
69
  wl_token_ring_register();
70

    
71
  printf("Joining token ring...\n");
72
  if (wl_token_ring_join() != 0) {
73
    fprintf(stderr, "Failed to join token ring.\n");
74
    return -1;
75
  }
76
  printf("Joined token ring.\n");
77

    
78
  return 0;
79
}
80

    
81
void colonet_wl_kill_listener_thread() {
82
  pthread_kill(listener_thread, 9);
83
}
84

    
85
int colonet_wl_run_listener_thread() {
86
  dbg_printf("Spawning listener thread...\n");
87

    
88
  if (pthread_create(&listener_thread, NULL, listen, NULL)) {
89
    perror("pthread_create");
90
    return -1;
91
  }
92

    
93
  return 0;
94
}
95

    
96
int colonet_wl_send(short client_source, short dest, ColonetMessageType msg_type, unsigned char msg_code,
97
                     unsigned char* args) {
98
  printf("colonet_wl_send: client_source:%d, dest:%d, msg_code:%d\n", client_source, dest, msg_code);
99

    
100
  ColonetRobotServerPacket pkt;
101
  pkt.client_id = client_source;
102
  pkt.msg_code = msg_code;
103

    
104
  for (int i = 0; i < PACKET_DATA_LEN; i++) {
105
    pkt.data[i] = args[i];
106
  }
107

    
108
  if (dest == GLOBAL_DEST) {
109
    printf("sending to global dest\n");
110
    if (wl_send_global_packet(COLONET_PACKET_GROUP_ID, (char)msg_type, (char*)(&pkt),
111
                              sizeof(ColonetRobotServerPacket), 0) != 0) {
112
      return -1;
113
    }
114
  } else {
115
    printf("sending to specific robot.\n");
116
    if (wl_send_robot_to_robot_global_packet(COLONET_PACKET_GROUP_ID, (char)msg_type, (char*)(&pkt),
117
      sizeof(ColonetRobotServerPacket), dest, COLONET_RESPONSE_PACKET_FRAME_ID) != 0) {
118
      return -1;
119
    }
120
  }
121

    
122
  return 0;
123
}
124

    
125
int colonet_get_num_robots(void) {
126
  return wl_token_get_num_robots();
127
}
128

    
129
int* colonet_get_xbee_ids(int* numrobots) {
130
  int num_robots = wl_token_get_num_robots();
131
  int* ids = (int*)malloc(num_robots * sizeof(int));
132

    
133
  wl_token_iterator_begin();
134

    
135
  int i = 0;
136
  while (wl_token_iterator_has_next()) {
137
    ids[i] = wl_token_iterator_next();
138
    i++;
139
  }
140

    
141
  *numrobots = num_robots;
142
  return ids;
143
}
144

    
145
// Returns int**; should be freed
146
int** colonet_get_sensor_matrix(int* numrobots, int** ids_) {
147
  int num_robots;
148
  int* ids = colonet_get_xbee_ids(&num_robots);
149

    
150
  int** m = (int**)malloc(num_robots * sizeof(int*));
151
  for (int i = 0; i < num_robots; i++) {
152
    m[i] = (int*)malloc(num_robots * sizeof(int*));
153
  }
154

    
155
  for (int i = 0; i < num_robots; i++) {
156
    for (int j = 0; j < num_robots; j++) {
157
      m[i][j] = wl_token_get_sensor_reading(ids[i], ids[j]);
158
    }
159
  }
160

    
161
  *numrobots = num_robots;
162
  *ids_ = ids;
163
  return m;
164
}
165

    
166
/**************************** Private functions ******************************/
167

    
168
static void timeout_handler() {
169
  // printf("colonet wireless - timeout!\n");
170
}
171

    
172
static void handle_response(int frame, int received) {
173
  printf("handle response\n");
174
}
175

    
176
static void handle_receive(char type, int source, unsigned char* packet,
177
                           int len) {
178
  ColonetRobotServerPacket pkt;
179
  pkt.client_id = packet[0] | (packet[1]<<8) | (packet[2]<<16) | (packet[3]<<24); //little endian
180

    
181
  memcpy(pkt.data, packet + 5, PACKET_DATA_LEN);
182

    
183
  if (logging_enabled) {
184
    log_packet(packet, len);
185
  }
186

    
187
  message_handler(type, source, pkt.client_id, packet, len);
188

    
189
  printf("handle receive\n");
190
}
191

    
192
static void unregister(void) {
193
  printf("unregister\n");
194
}
195

    
196
/** @brief Analogous to the "SIGNAL" or "ISR" function on the robots.
197
 * Listens for bytes on the wireless port and constructs packets based on them.
198
 * Not part of the ColonetWireless class since a function pointer must be
199
 * passed in starting the thread that runs it (tricky or impossible if it's
200
 * a class function).
201
 *
202
 * @param args Pointer to arguments.  Can be safely casted to ListenerArgs type
203
 * @return NULL
204
 */
205
static void* listen(void* args) {
206
  printf("Called listen.\n");
207

    
208
  PacketGroupHandler pgh = {COLONET_PACKET_GROUP_ID,
209
                            timeout_handler,
210
                            handle_response,
211
                            handle_receive,
212
                            unregister};
213
  wl_register_packet_group(&pgh);
214

    
215
  while (1) {
216
    wl_do();
217
    usleep(1000);
218
  }
219

    
220
  wl_terminate();
221
  return NULL;
222
}
223

    
224
/** @brief
225
 *
226
 * @param pkt Packet to be logged
227
 *
228
 * @return 0 on success, -1 on failure
229
 */
230
int log_packet(unsigned char* packet, int len) {
231
  FILE* logfile = fopen(log_filename, "a");
232

    
233
  if (logfile == NULL) {
234
    dbg_printf("%s: Error - fopen %s failed.\n", log_filename, __FUNCTION__);
235
    return -1;
236
  }
237

    
238
  for (int i = 0; i < len; i++) {
239
    fprintf(logfile, "%d ", *((unsigned char*)packet + i));
240
  }
241
  fprintf(logfile, "\n");
242

    
243
  fclose(logfile);
244
  return 0;
245
}