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
|
/*___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: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
#include "uti/sge_profiling.h"
#include "comm/lists/cl_lists.h"
#include "comm/cl_commlib.h"
#include "basis_types.h"
/* shutdown when test client can't connect for more than 15 min */
#define SGE_TEST_VIRTUAL_CLIENT_SHUTDOWN_TIMEOUT 15*60
/* counters */
static int snd_messages = 0;
static int events_received = 0;
void sighandler_client(int sig);
static int do_shutdown = 0;
static cl_com_handle_t* handle = NULL;
void sighandler_client(
int sig
) {
/* thread_signal_receiver = pthread_self(); */
if (sig == SIGPIPE) {
return;
}
if (sig == SIGHUP) {
return;
}
printf("do_shutdown\n");
/* shutdown all sockets */
do_shutdown = 1;
}
#ifdef __CL_FUNCTION__
#undef __CL_FUNCTION__
#endif
#define __CL_FUNCTION__ "main()"
extern int main(int argc, char** argv)
{
struct sigaction sa;
struct timeval now;
time_t last_time = 0;
time_t shutdown_time = 0;
int i,first_message_sent = 0;
int no_output = 0;
cl_byte_t *reference = NULL;
prof_mt_init();
if (argc < 4) {
printf("syntax: debug_level vmaster_port vmaster_host [no_output]\n");
exit(1);
}
if (argc >= 5) {
if (strcmp(argv[4],"no_output") == 0) {
printf("virtual event client: no_output option set\n");
no_output = 1;
}
}
/* setup signalhandling */
memset(&sa, 0, sizeof(sa));
sa.sa_handler = sighandler_client; /* one handler for all signals */
sigemptyset(&sa.sa_mask);
sigaction(SIGINT, &sa, NULL);
sigaction(SIGTERM, &sa, NULL);
sigaction(SIGHUP, &sa, NULL);
sigaction(SIGPIPE, &sa, NULL);
gettimeofday(&now,NULL);
shutdown_time = now.tv_sec + SGE_TEST_VIRTUAL_CLIENT_SHUTDOWN_TIMEOUT;
printf("startup commlib ...\n");
cl_com_setup_commlib(CL_NO_THREAD , (cl_log_t)atoi(argv[1]), NULL);
printf("setting up handle for connect port %d\n", atoi(argv[2]) );
handle=cl_com_create_handle(NULL,CL_CT_TCP,CL_CM_CT_MESSAGE , false, atoi(argv[2]) , CL_TCP_DEFAULT,"virtual_event_client", 0, 1,0 );
if (handle == NULL) {
printf("could not get handle\n");
exit(1);
}
printf("local hostname is \"%s\"\n", handle->local->comp_host);
printf("local component is \"%s\"\n", handle->local->comp_name);
printf("local component id is \"%ld\"\n", handle->local->comp_id);
cl_com_get_connect_port(handle, &i);
printf("connecting to port \"%d\" on host \"%s\"\n", i, argv[3]);
printf("virtual event client is running ...\n");
while(do_shutdown == 0) {
int retval = 0;
cl_com_message_t* message = NULL;
cl_com_endpoint_t* sender = NULL;
gettimeofday(&now,NULL);
if (now.tv_sec != last_time && !no_output) {
printf("virtual event client["pid_t_fmt"] message count[sent |%d|] events[received |%d|]...\n",
getpid(), snd_messages, events_received);
last_time = now.tv_sec;
}
if (now.tv_sec > shutdown_time ) {
printf("shutting down test - timeout\n");
do_shutdown = 1;
}
retval = cl_commlib_receive_message(handle, NULL, NULL, 0, /* handle, comp_host, comp_name , comp_id, */
true, 0, /* syncron, response_mid */
&message, &sender );
if ( retval != CL_RETVAL_OK) {
if ( retval == CL_RETVAL_CONNECTION_NOT_FOUND ) {
#if 0
printf("opening connection to %s/%s/%d\n", argv[3], "virtual_master", 1);
#endif
/* shutdown when virtual qmaster is not running anymore */
if (events_received > 0) {
do_shutdown = 1;
printf("lost connection to %s/%s/%d\n", argv[3], "virtual_master", 1);
}
retval = cl_commlib_open_connection(handle, argv[3], "virtual_master", 1);
if (retval == CL_RETVAL_OK) {
first_message_sent = 0;
}
}
} else {
#if 0
printf("received message from %s/%s/%ld: \"%s\" (%ld bytes)\n", sender->comp_host,sender->comp_name,sender->comp_id, message->message, message->message_length);
#endif
gettimeofday(&now,NULL);
shutdown_time = now.tv_sec + SGE_TEST_VIRTUAL_CLIENT_SHUTDOWN_TIMEOUT;
events_received++;
cl_com_free_message(&message);
cl_com_free_endpoint(&sender);
}
#if 0
printf("status: %s\n",cl_get_error_text(retval));
#endif
if ( first_message_sent == 0) {
char data[6] = "event";
reference = (cl_byte_t *)data;
first_message_sent = 1;
retval = cl_commlib_send_message(handle, argv[3], "virtual_master", 1,
CL_MIH_MAT_ACK,
&reference, 6,
NULL, 0, 0 , true, true );
if (retval == CL_RETVAL_OK) {
snd_messages++;
}
#if 0
printf("sending a event hello message: %s\n",cl_get_error_text(retval) );
#endif
}
}
printf("shutdown commlib ...\n");
cl_com_cleanup_commlib();
printf("main done\n");
return 0;
}
|