Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / ColonetServer / ColonetServer.cpp @ 58

History | View | Annotate | Download (9.07 KB)

1 29 jknichel
/**
2
 * @file ColonetServer.cpp
3 11 emarinel
 *
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 <colonet_wireless.h>
12
#include <sys/select.h>
13
#include <sys/socket.h>
14
#include <netinet/in.h>
15
#include <errno.h>
16
#include <arpa/inet.h>
17
18 23 jknichel
#include <fcntl.h>
19
20 20 jknichel
#include <colonet_wireless.h>
21
22
#include "includes/ColonetServer.h"
23 11 emarinel
#include "includes/ConnectionPool.h"
24
#include "includes/client.h"
25
#include "includes/options.h"
26 57 jknichel
#include "includes/Log.h"
27 11 emarinel
28
#define LISTEN_BACKLOG 5
29
#define LOG_BUFFER_LENGTH 128
30
31 20 jknichel
ConnectionPool * connection_pool;
32
33 29 jknichel
/**
34
 * @brief Default constructor for ColonetServer
35
 */
36 20 jknichel
ColonetServer::ColonetServer(): logger("logFile.txt") {
37 24 jknichel
  listen_socket = 0;
38 20 jknichel
}
39
40 29 jknichel
/**
41
 * @brief Destructor for ColonetServer
42
 */
43 20 jknichel
ColonetServer::~ColonetServer() {
44
}
45
46 29 jknichel
/**
47
 * @brief Initializes the various elements needed for the server to run
48
 *
49
 * @param argc The number of command line arguments passed to the program
50
 * @param argv The command line arguments passed to the program
51
 *
52
 * @return 0 on success, negative error code on failure
53
 */
54 20 jknichel
int ColonetServer::initialize_server(int argc, char * argv[]) {
55
  printf("Initializing Server...\n");
56
57
  parseCmdLine(argc, argv);
58
59 27 jknichel
  if (initialize_connection(optionsG.listen_port) < 0) {
60 20 jknichel
    return -1;
61 27 jknichel
  }
62 20 jknichel
63 22 jknichel
  if (initialize_wireless() < 0) {
64 20 jknichel
    fprintf(stderr, "%s: initWireless failed\n", __FUNCTION__);
65
    return -1;
66
  }
67
68
  return 0;
69
}
70
71 29 jknichel
/**
72
 * @brief Starts the server listening on the socket that was opened for listening
73
 *
74
 * @return 0 on success, negative error code on failure
75
 */
76 25 jknichel
int ColonetServer::start_listening() {
77
  if (listen(listen_socket, LISTEN_BACKLOG) < 0) {
78
    log_error("\t\nThere was an error telling the socket to "
79 27 jknichel
              "listen for connections from clients.  Terminating Server...\n");
80 25 jknichel
    return -1;
81
  }
82
  return 0;
83
}
84 22 jknichel
85 29 jknichel
/**
86
 * @brief Logs an error message to the log file
87
 */
88 20 jknichel
int ColonetServer::log_error(char * error_message) {
89
  return logger.logMessage(LOG_TYPE_ERROR, error_message);
90
}
91
92 29 jknichel
/**
93
 * @brief Logs a message to the log file
94
 */
95 20 jknichel
int ColonetServer::log_message(char * message) {
96
  return logger.logMessage(LOG_TYPE_MESSAGE, message);
97
}
98
99 29 jknichel
/**
100
 * @brief Starts the server running (starts an infinite loop)
101
 */
102 24 jknichel
int ColonetServer::run_server() {
103 20 jknichel
  connection_pool.set_listen_socket_in_ready_set(listen_socket);
104
105
  //TODO: why is all of this in that if statement and not just conn_pool.maxfd = listen_socket ?
106
  if (listen_socket > connection_pool.get_max_file_descriptor()) {
107
    connection_pool.set_max_file_descriptor(listen_socket);
108
109 27 jknichel
    int accept_socket = 0;
110
    struct sockaddr_in client_addr;
111
    socklen_t client_addr_size = sizeof(client_addr);
112 11 emarinel
113 27 jknichel
    log_message("Server initialized.  About to start listening for connections");
114 11 emarinel
115
    while(1) {
116 58 jknichel
      connection_pool.perform_select(listen_socket);
117 11 emarinel
118
      //either no descriptors are ready or there was an error
119
      //TODO: check for specific errors
120
      if (connection_pool.get_number_clients_ready() <= 0) {
121
        continue;
122
      }
123
124 20 jknichel
      if (connection_pool.is_socket_ready_to_read(listen_socket)) {
125 11 emarinel
        printf("Something is trying to connect...\n");
126 27 jknichel
        if ((accept_socket = accept(listen_socket, (struct sockaddr*) &client_addr, &client_addr_size)) < 0) {
127 11 emarinel
          if (errno == EMFILE) {
128
            printf("\tWhen attempting to accept a connection, "
129
                   "reached the per process limit of file descriptors."
130
                   "  Dropping the new connection.\n");
131
            continue;
132
          } else {
133 55 jknichel
            printf("\tThere was an error when attempting to accept a connection");
134 11 emarinel
          }
135
          continue;
136
        }
137
138 27 jknichel
        char log_buffer[LOG_BUFFER_LENGTH];
139
        snprintf(log_buffer, LOG_BUFFER_LENGTH, "Client at address %s attempting to connect.",
140
                 inet_ntoa(client_addr.sin_addr));
141
        logger.logMessage(LOG_TYPE_CONNECT, log_buffer);
142 11 emarinel
143 27 jknichel
        if (connection_pool.add_client(accept_socket) < 0) {
144
          printf("\tThere was an error when trying to add a client to the connection pool.");
145 11 emarinel
          continue;
146
        }
147
148 27 jknichel
        snprintf(log_buffer, LOG_BUFFER_LENGTH, "Client at address %s successfully added to connection pool.",
149
                 inet_ntoa(client_addr.sin_addr));
150
        logger.logMessage(LOG_TYPE_CONNECT, log_buffer);
151 11 emarinel
      }
152
153 22 jknichel
      if (connection_pool.check_clients(wireless) < 0) {
154 11 emarinel
        printf("\tThere was an error trying to update the clients.");
155
        continue;
156
      }
157
    }
158
  }
159
160 20 jknichel
  return 0;
161 11 emarinel
}
162 20 jknichel
163 29 jknichel
/**
164
 * @todo This method is here because the wireless message handler has a dependency on the connection_pool
165
 *  This should be removed when that dependency is broken
166
 *
167
 * @return A pointer to the connection pool
168
 */
169 20 jknichel
ConnectionPool * ColonetServer::get_connection_pool_pointer() {
170
  return &connection_pool;
171
}
172 22 jknichel
173 29 jknichel
/**
174
 * @brief Initializes the wireless
175
 *
176
 * @return 0 on success, negative error code on error
177
 */
178 27 jknichel
int ColonetServer::initialize_wireless() {
179 23 jknichel
  char* log_filename = NULL;
180 22 jknichel
181 23 jknichel
  if (optionsG.logging_enabled) {
182
    log_filename = optionsG.log_filename;
183
  }
184
185
  wireless = new ColonetWireless(optionsG.wireless_port,
186
                                 wirelessMessageHandler, log_filename,
187
                                 /*!optionsG.listener_mode*/false, true);
188
  //Note: last arg set to true ignores token ring;  in general, this should
189
  //probably be false (changed for demo purposes)
190
191
  if (!wireless->run_listener_thread()) {
192 34 emarinel
    return -1;
193
  }
194 23 jknichel
195 34 emarinel
  return 0;
196 23 jknichel
}
197
198 29 jknichel
/**
199
 * @brief Initialize a connection to listen on
200
 *
201
 * @port The port to try to open to listen on
202
 *
203
 * @return 0 on success, negative error code on error
204
 */
205 27 jknichel
int ColonetServer::initialize_connection(int port) {
206 23 jknichel
  printf("Initializing connection that will be used to listen for "
207
         "clients...\n");
208 27 jknichel
  int options = 1;
209
  struct sockaddr_in my_address;
210 23 jknichel
211
  //get a socket fd
212 24 jknichel
  if ((listen_socket = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
213 23 jknichel
    printf("\tThere was an error creating a socket\n");
214
    return -1;
215
  }
216
217
  //set up the address struct
218 27 jknichel
  memset(&my_address,'\0',sizeof(my_address));
219
  my_address.sin_family = AF_INET;
220
  my_address.sin_addr.s_addr = htonl(INADDR_ANY);
221
  my_address.sin_port = htons(port);
222 23 jknichel
223 27 jknichel
  setsockopt(listen_socket, SOL_SOCKET, SO_REUSEADDR, &options, sizeof(options));
224 23 jknichel
225
  //get the current socket options
226 27 jknichel
  if ((options = fcntl(listen_socket, F_GETFL)) < 0) {
227 23 jknichel
    printf("\tThere was an error getting the socket options.\n");
228
    return -1;
229
  }
230
231
  //set the socket to non blocking
232 27 jknichel
  options = (options | O_NONBLOCK);
233
  if (fcntl(listen_socket, F_SETFL, options) < 0) {
234 23 jknichel
    printf("\tThere was an error setting the socket to be non blocking.\n");
235
    return -1;
236
  }
237
238
  //bind the socket to listen on the specified port
239 27 jknichel
  if (bind(listen_socket, (struct sockaddr *) &my_address, sizeof(my_address)) < 0) {
240 23 jknichel
    printf("\tThere was an error binding the socket\n");
241
    return -1;
242
  }
243
244
  return 0;
245
}
246
247 29 jknichel
/**
248
 * @brief The main function of the server
249
 *
250
 * @param argc The number of command line arguments passed to the program
251
 * @param argv The command line arguments passed to the program
252
 *
253
 * @return 0 on success, negative error code on error
254
 */
255 24 jknichel
int main(int argc, char** argv) {
256
  ColonetServer colonet_server;
257
258
  connection_pool = colonet_server.get_connection_pool_pointer();
259
260
  if (colonet_server.initialize_server(argc, argv) < 0) {
261
    colonet_server.log_error("\t\nThere was an error initializing the server. "
262
                             "Terminating server...\n");
263
    return -1;
264
  }
265
266 25 jknichel
  if (colonet_server.start_listening() < 0) {
267 24 jknichel
    return -1;
268
  }
269 25 jknichel
270 24 jknichel
  colonet_server.run_server();
271
272
  return 0;
273
}
274
275 23 jknichel
//this is old code that was commented out that I didn't want to delete yet
276
/*
277
int parseCommandLine(int argc, char * argv[], commandParams_t * params)
278
{
279
  printf("Parsing Command Line...\n");
280
  if (!params)
281
    return -1;
282

283
  //if no command line parameters were specified, set to defaults
284
  if (argc == 1) {
285
    printf("No port was specified for listening for client connections."
286
           "  Defaulting to %d\n", DEFAULTPORT);
287
    params->listenPort = DEFAULTPORT;
288
  }
289

290
  if (!argv)
291
    return -1;
292

293
  int i;
294
  for (i = 1; i < argc; i++) {
295
    char * temp = argv[i];
296
    if (temp[0] != '-')
297
      {
298
        printUsage(argv[0]);
299
        return -1;
300
      }
301

302
    switch(temp[1])
303
      {
304
      case 'h': printUsage(argv[0]);
305
        break;
306
      case 'p':
307
        {
308
          if (i >= argc-1)
309
            {
310
              printUsage(argv[0]);
311
              return -1;
312
            }
313
          i++;
314
          char * portString = argv[i];
315
          char * endptr = NULL;
316
          int port = strtol(portString, &endptr, 10);
317
          if (*endptr != '\0')
318
            {
319
              printf("Invalid port specified...%s, %d\n", endptr, port);
320
              return -1;
321
            }
322
          if (port < SMALLEST_POSS_LISTEN_PORT)
323
            {
324
              printf("You cannot listen on a port less than %d.\n",
325
                     SMALLEST_POSS_LISTEN_PORT);
326
              return -1;
327
            }
328
          params->listenPort = port;
329
          printf("Setting port to listen on to %d.\n", params->listenPort);
330
        }
331
        break;
332
      default: printUsage(argv[0]);
333
        return -1;
334
        break;
335
      }
336
  }
337

338
  return 0;
339
}
340
*/