Project

General

Profile

Statistics
| Revision:

root / branches / library_refactor / projects / colonet / server / ColonetServer.cpp @ 1390

History | View | Annotate | Download (9.31 KB)

1
/**
2
 * @file ColonetServer.cpp
3
 *
4
 * @brief colonet_server - primary server application for Colonet
5
 *
6
 * @author Jason Knichel
7
 * @author Eugene Marinelli
8
 * @date 10/31/06
9
 */
10

    
11
#include <arpa/inet.h>
12
#include <fcntl.h>
13
#include <errno.h>
14
#include <netinet/in.h>
15
#include <string.h>
16
#include <unistd.h>
17
#include <sys/select.h>
18
#include <sys/socket.h>
19

    
20
#include <colonet_wireless.h>
21

    
22
#include <ColonetServer.h>
23
#include <ConnectionPool.h>
24
#include <options.h>
25
#include <Log.h>
26

    
27
#define LISTEN_BACKLOG 5
28
#define LOG_BUFFER_LENGTH 128
29
#define MAX_MSG_BUFFER_LENGTH 128
30
#define REFRESH_VIRTUAL_WALL_PERIOD 400
31

    
32
#define u_int32_t unsigned
33

    
34
/**
35
 * @brief Default constructor for ColonetServer
36
 */
37
ColonetServer::ColonetServer() {
38
  listen_socket = 0;
39
  connection_pool = new ConnectionPool(this);
40
}
41

    
42
/**
43
 * @brief Destructor for ColonetServer
44
 */
45
ColonetServer::~ColonetServer() {
46
}
47

    
48
/**
49
 * @brief Initializes the various elements needed for the server to run
50
 *
51
 * @param argc The number of command line arguments passed to the program
52
 * @param argv The command line arguments passed to the program
53
 *
54
 * @return 0 on success, negative error code on failure
55
 */
56
int ColonetServer::initialize_server(int argc, char * argv[]) {
57
  options_parseCmdLine(argc, argv);
58

    
59
  if (optionsG.logging_enabled) {
60
    logger = new Log("colonet_server_log.txt");
61
  }
62

    
63
  if (initialize_connection(optionsG.listen_port) < 0) {
64
    return -1;
65
  }
66

    
67
  if (initialize_wireless() < 0) {
68
    fprintf(stderr, "%s: initWireless failed\n", __FUNCTION__);
69
    //TODO: Can we continue safely without wireless?
70
    //return -1;
71
  }
72

    
73
  return 0;
74
}
75

    
76
/**
77
 * @brief Starts the server listening on the socket that was opened for listening
78
 *
79
 * @return 0 on success, negative error code on failure
80
 */
81
int ColonetServer::start_listening() {
82
  if (listen(listen_socket, LISTEN_BACKLOG) < 0) {
83
    if (optionsG.logging_enabled) {
84
      logger->log_error("\t\nThere was an error telling the socket to listen for connections from clients.  "
85
                        "Terminating Server...\n");
86
    }
87
    return -1;
88
  }
89

    
90
  return 0;
91
}
92

    
93
/**
94
 * @brief The function that is run in the new pthread in order to do the position monitoring
95
 *
96
 * @param arg the argument to give to the new thread
97
 */
98
void* loop_position_monitor(void* arg) {
99
  PositionMonitor* p = (PositionMonitor*) arg;
100
  p->run();
101
  return NULL;
102
}
103

    
104
/**
105
 * @brief This function spawns a new thread to do the position monitoring based off data 
106
 *  retrieved from the library that parses the image from the camera
107
 */
108
int ColonetServer::run_position_monitor() {
109
  pthread_t posmon_thread;
110
  pthread_create(&posmon_thread, NULL, loop_position_monitor, &position_monitor);
111

    
112
  return 0;
113
}
114

    
115
/**
116
 * @brief The function that is run in the new pthread in order to do the client processing
117
 */
118
void ColonetServer::loop_server() {
119
  //add the socket that you will listen to connections on to the connection pool
120
  connection_pool->add_new_socket_to_pool(listen_socket);
121

    
122
  int accept_socket = 0;
123
  struct sockaddr_in client_addr;
124
  socklen_t client_addr_size = sizeof(client_addr);
125

    
126
  if (optionsG.logging_enabled) {
127
    logger->log_message("Server initialized.  About to start listening for connections");
128
  }
129

    
130
  while(1) {
131
    //sleep for a little bit so this program doesn't hog cpu
132
    usleep(10000);
133

    
134
    //tell the connection pool to look at the file descriptors and see which ones are ready
135
    connection_pool->perform_select(listen_socket);
136

    
137
    //either no descriptors are ready or there was an error
138
    if (connection_pool->get_number_clients_ready() <= 0) {
139
      continue;
140
    }
141

    
142
    //check to see if a new client is trying to connect
143
    if (connection_pool->is_socket_ready_to_read(listen_socket)) {
144
      printf("Something is trying to connect...\n");
145
      //accept the connection
146
      if ((accept_socket = accept(listen_socket, (struct sockaddr*) &client_addr, &client_addr_size)) < 0) {
147
        if (errno == EMFILE) {
148
          printf("\tWhen attempting to accept a connection, reached the per process limit of file descriptors."
149
                 "  Dropping the new connection.\n");
150
          continue;
151
        } else {
152
          printf("\tThere was an error when attempting to accept a connection");
153
        }
154
        continue;
155
      }
156

    
157
      if (optionsG.logging_enabled) {
158
        char log_buffer[LOG_BUFFER_LENGTH];
159
        snprintf(log_buffer, LOG_BUFFER_LENGTH, "Client at address %s attempting to connect.",
160
                                                                 inet_ntoa(client_addr.sin_addr));
161
        logger->log_string(LOG_TYPE_CONNECT, log_buffer);
162
      }
163

    
164
      //add the new client to the connection pool
165
      if (connection_pool->add_client(accept_socket) < 0) {
166
        printf("\tThere was an error when trying to add a client to the connection pool.");
167
        continue;
168
      }
169

    
170
      if (optionsG.logging_enabled) {
171
        char log_buffer[LOG_BUFFER_LENGTH];
172
        snprintf(log_buffer, LOG_BUFFER_LENGTH, "Client at address %s successfully added to connection pool.",
173
                 inet_ntoa(client_addr.sin_addr));
174
        logger->log_string(LOG_TYPE_CONNECT, log_buffer);
175
      }
176
    }
177

    
178
    //check all the clients in the connection pool
179
    if (connection_pool->check_clients() < 0) {
180
      printf("\tThere was an error trying to update the clients.");
181
    }
182
  }
183
}
184

    
185
/**
186
 * @brief Launchpad function to start loop_server() since callbacks don't support member functions
187
 *
188
 * @param arg the argument to give to the new thread
189
 */
190
void * launch_loop_server(void *arg) {
191
  ColonetServer *object = (ColonetServer*) arg;
192
  object->loop_server();
193
  
194
  return NULL;
195
}
196

    
197
/**
198
 * @brief Starts the server running (starts an infinite loop)
199
 */
200
int ColonetServer::run_server() {
201
  pthread_t server_thread;
202
  pthread_create(&server_thread, NULL, launch_loop_server, this);
203
  
204
  return 0;
205
}
206

    
207
/**
208
 * @brief Main loop of the server, runs periodic tasks
209
 *
210
 * @return 0 on success, negative error code on failure
211
 */
212
int ColonetServer::run_loop() {
213

    
214
  int refresh_virtual_wall_count = 0;
215
  
216
  while(1) {
217
    //sleep for a little bit so this program doesn't hog cpu
218
    usleep(10000);
219

    
220
    /* Refresh virtual wall. */
221
    if (refresh_virtual_wall_count++ == REFRESH_VIRTUAL_WALL_PERIOD) {
222
      fprintf(stderr, "Sending virtual wall info to robots.\n");
223
      refresh_virtual_wall_count = 0;
224
      virtual_wall.send_to_robots();
225
    }
226
  }
227
  
228
  return 0;
229
}
230

    
231
/**
232
 * @brief when the server receives a new wireless message, it calls this function to process it
233
 *
234
 * @param source - ID of robot that message is from.
235
 * @param dest - ID of internet client to send message to.
236
 * @param data - Data to send to internet client.
237
 * @param len - Length of the data param.
238
 */
239
int ColonetServer::process_received_wireless_message(int dest, char* data, int len) {
240
  //try to pass the robot's response onto the client it wanted to respond to
241
  if (connection_pool->write_to_client(dest, data, len) == ERROR_INVALID_CLIENT_ID) {
242
    printf("The robot wanted to pass the data to a client not in the pool.\n");
243
    return -1;
244
  }
245
  printf("Processing data from robot: %s\n", data);
246
  return 0;
247
}
248

    
249
/**
250
 * @brief Initializes the wireless
251
 *
252
 * @return 0 on success, negative error code on error
253
 */
254
int ColonetServer::initialize_wireless() {
255
  char* log_filename = NULL;
256

    
257
  if (optionsG.logging_enabled) {
258
    printf("Logging enabled. Log filename: %s\n", optionsG.log_filename);
259
    log_filename = optionsG.log_filename;
260
  } else {
261
    printf("Logging disabled.\n");
262
  }
263

    
264
  //initialize the wireless library giving it the port and the log file name
265
  if (colonet_wl_init(optionsG.wireless_port, log_filename) != 0) {
266
    fprintf(stderr, "ERROR - colonet_wl_init failed.\n");
267
    return -1;
268
  }
269

    
270
  //call the function that will start the thread that will listen for wireless messages
271
  if (colonet_wl_run_listener_thread()) {
272
    fprintf(stderr, "%s: colonet_wl_run_listener_thread failed.\n", __FUNCTION__);
273
    return -1;
274
  }
275

    
276
  return 0;
277
}
278

    
279
/**
280
 * @brief Initialize a connection to listen on
281
 *
282
 * @port The port to try to open to listen on
283
 *
284
 * @return 0 on success, negative error code on error
285
 */
286
int ColonetServer::initialize_connection(int port) {
287
  printf("Initializing connection that will be used to listen for clients...\n");
288
  int options = 1;
289
  struct sockaddr_in my_address;
290

    
291
  //get a socket fd
292
  if ((listen_socket = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
293
    printf("\tThere was an error creating socket\n");
294
    return -1;
295
  }
296

    
297
  //set up the address struct
298
  memset(&my_address,'\0',sizeof(my_address));
299
  my_address.sin_family = AF_INET;
300
  my_address.sin_addr.s_addr = htonl(INADDR_ANY);
301
  my_address.sin_port = htons(port);
302

    
303
  setsockopt(listen_socket, SOL_SOCKET, SO_REUSEADDR, &options, sizeof(options));
304

    
305
  //get the current socket options
306
  if ((options = fcntl(listen_socket, F_GETFL)) < 0) {
307
    printf("\tThere was an error getting the socket options.\n");
308
    return -1;
309
  }
310

    
311
  //set the socket to non blocking
312
  options = (options | O_NONBLOCK);
313
  if (fcntl(listen_socket, F_SETFL, options) < 0) {
314
    printf("\tThere was an error setting the socket to be non blocking.\n");
315
    return -1;
316
  }
317

    
318
  //bind the socket to listen on the specified port
319
  if (bind(listen_socket, (struct sockaddr *) &my_address, sizeof(my_address)) < 0) {
320
    printf("\tThere was an error binding the socket\n");
321
    return -1;
322
  }
323

    
324
  return 0;
325
}
326

    
327
/**
328
 * @brief returns the position monitor
329
 */
330
PositionMonitor* ColonetServer::getPositionMonitor() {
331
  return &position_monitor;
332
}
333

    
334
VirtualWall* ColonetServer::getVirtualWall() {
335
  return &virtual_wall;
336
}