1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2005 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include "cl_commlib.h"
/*
* global signal flags
*/
static int do_shutdown = 0;
/*
* signal handler
*/
void sighandler_function( int sig ) {
if (sig == SIGPIPE) {
return;
}
if (sig == SIGHUP) {
return;
}
/*
* set shutdown flag for all other signals
*/
do_shutdown = 1;
}
/*
* function for setting up the signal handler
*/
void setup_signal_handler(void) {
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = sighandler_function;
sigemptyset(&sa.sa_mask);
sigaction(SIGINT, &sa, NULL);
sigaction(SIGTERM, &sa, NULL);
sigaction(SIGHUP, &sa, NULL);
sigaction(SIGPIPE, &sa, NULL);
}
/*
* usage function
*/
void usage(void) {
fprintf(stderr,"usage: server_demo <port>\n\n");
fprintf(stderr," <port>: a free port which can be bound\n");
}
/*
* commlib error callback function
*/
void on_communication_error(const cl_application_error_list_elem_t* commlib_error) {
if (commlib_error != NULL) {
/* print any communication error to stderr: */
fprintf(stderr, "COMMLIB ERROR: %s (%s)\n",
cl_get_error_text(commlib_error->cl_error),
commlib_error->cl_info);
}
}
/*
* commlib debug log function callback
*/
int on_communication_log(cl_raw_list_t* list_p) {
cl_log_list_elem_t* elem = NULL;
/* lock the list */
cl_raw_list_lock(list_p);
/* print out the complete log list and delete log message */
while ( (elem = cl_log_list_get_first_elem(list_p) ) != NULL) {
if (elem->log_parameter == NULL) {
printf("COMMLIB LOGGING(%s): %s\n",
cl_log_list_convert_type_id(elem->log_type),
elem->log_message);
} else {
printf("COMMLIB LOGGING(%s): %s %s\n",
cl_log_list_convert_type_id(elem->log_type),
elem->log_message,
elem->log_parameter);
}
cl_log_list_del_log(list_p);
}
/* unlock the list */
cl_raw_list_unlock(list_p);
return CL_RETVAL_OK;
}
/*
* main()
*/
extern int main(int argc, char** argv) {
int handle_port = 0;
cl_com_handle_t* handle = NULL;
cl_com_message_t* message = NULL;
cl_com_endpoint_t* sender = NULL;
int i = 0;
/* check command line argument count */
if (argc != 2) {
usage();
exit(1);
}
/* get server port from command line */
handle_port = atoi(argv[1]);
if (handle_port <= 0) {
fprintf(stderr,"need a port number > 0\n");
usage();
exit(1);
}
/* setup signalhandling */
setup_signal_handler();
/* setup commlib */
cl_com_setup_commlib(CL_RW_THREAD, CL_LOG_WARNING, on_communication_log);
/* setup commlib error function callback */
cl_com_set_error_func(on_communication_error);
/* create communication handle */
handle=cl_com_create_handle(NULL,
CL_CT_TCP,
CL_CM_CT_MESSAGE,
CL_TRUE,
handle_port,
CL_TCP_DEFAULT,
"server", 1,
1, 0 );
if (handle == NULL) {
fprintf(stderr, "could not create communication handle\n");
cl_com_cleanup_commlib();
exit(1);
}
/* print out some info output */
printf("server running:\n");
printf("host: \"%s\"\n", handle->local->comp_host);
cl_com_get_service_port(handle,&i);
printf("port: %d\n", i);
printf("name: \"%s\"\n", handle->local->comp_name);
printf("id: %ld\n", handle->local->comp_id);
/* application main loop */
while(do_shutdown != 1) {
cl_commlib_trigger(handle, 1);
cl_commlib_receive_message(handle,NULL, NULL, 0, CL_FALSE, 0, &message, &sender);
if (message != NULL) {
char response_message[1024];
sprintf(response_message,"Welcome to demo service at host \"%s\"!", handle->local->comp_host);
printf("received message from \"%s/%s/%ld\": %s\n", sender->comp_host, sender->comp_name, sender->comp_id, message->message);
cl_commlib_send_message(handle,
sender->comp_host,
sender->comp_name,
sender->comp_id, CL_MIH_MAT_NAK,
(cl_byte_t**)&response_message,
strlen(response_message)+1,
NULL, 0, 0,
CL_TRUE,CL_FALSE);
message->message = NULL;
cl_com_free_message(&message);
cl_com_free_endpoint(&sender);
message = NULL;
}
}
printf("shutting down ...\n");
/* here the application goes down - shutdown communication lib */
while ( cl_commlib_shutdown_handle(handle, CL_TRUE) == CL_RETVAL_MESSAGE_IN_BUFFER) {
message = NULL;
cl_commlib_receive_message(handle,NULL, NULL, 0, CL_FALSE, 0, &message, &sender);
if (message != NULL) {
printf("ignoring message from \"%s\"\n", sender->comp_host);
cl_com_free_message(&message);
cl_com_free_endpoint(&sender);
message = NULL;
}
}
/* cleanup commlib */
cl_com_cleanup_commlib();
return 0;
}
|