michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /*********************************************************************** michael@0: ** 1997 - Netscape Communications Corporation michael@0: ** michael@0: ** Name: prselect_norm.c michael@0: ** michael@0: ** Description: tests PR_Select with sockets - Normal operations. michael@0: ** michael@0: ** Modification History: michael@0: ** 14-May-97 AGarcia- Converted the test to accomodate the debug_mode flag. michael@0: ** The debug mode will print all of the printfs associated with this test. michael@0: ** The regress mode will be the default mode. Since the regress tool limits michael@0: ** the output to a one line status:PASS or FAIL,all of the printf statements michael@0: ** have been handled with an if (debug_mode) statement. michael@0: ** 04-June-97 AGarcia removed the Test_Result function. Regress tool has been updated to michael@0: ** recognize the return code from tha main program. michael@0: ***********************************************************************/ michael@0: michael@0: /*********************************************************************** michael@0: ** Includes michael@0: ***********************************************************************/ michael@0: /* Used to get the command line option */ michael@0: #include "plgetopt.h" michael@0: michael@0: #include "prinit.h" michael@0: #include "prio.h" michael@0: #include "prlog.h" michael@0: #include "prprf.h" michael@0: #include "prerror.h" michael@0: #include "prnetdb.h" michael@0: michael@0: #include "obsolete/probslet.h" michael@0: michael@0: #include michael@0: #include michael@0: #include michael@0: michael@0: PRIntn failed_already=0; michael@0: PRIntn debug_mode; michael@0: michael@0: static void michael@0: clientThreadFunc(void *arg) michael@0: { michael@0: PRUintn port = (PRUintn) arg; michael@0: PRFileDesc *sock; michael@0: PRNetAddr addr; michael@0: char buf[128]; michael@0: int i; michael@0: michael@0: addr.inet.family = PR_AF_INET; michael@0: addr.inet.port = PR_htons((PRUint16)port); michael@0: addr.inet.ip = PR_htonl(PR_INADDR_LOOPBACK); michael@0: PR_snprintf(buf, sizeof(buf), "%hu", addr.inet.port); michael@0: michael@0: for (i = 0; i < 5; i++) { michael@0: sock = PR_NewTCPSocket(); michael@0: PR_Connect(sock, &addr, PR_INTERVAL_NO_TIMEOUT); michael@0: PR_Write(sock, buf, sizeof(buf)); michael@0: PR_Close(sock); michael@0: } michael@0: } michael@0: michael@0: int main(int argc, char **argv) michael@0: { michael@0: PRFileDesc *listenSock1, *listenSock2; michael@0: PRFileDesc *fds0[10], *fds1[10], **fds, **other_fds; michael@0: PRIntn nfds; michael@0: PRUint16 listenPort1, listenPort2; michael@0: PRNetAddr addr; michael@0: PR_fd_set readFdSet; michael@0: char buf[128]; michael@0: PRThread *clientThread; michael@0: PRInt32 retVal; michael@0: PRIntn i, j; michael@0: michael@0: /* The command line argument: -d is used to determine if the test is being run michael@0: in debug mode. The regress tool requires only one line output:PASS or FAIL. michael@0: All of the printfs associated with this test has been handled with a if (debug_mode) michael@0: test. michael@0: Usage: test_name -d michael@0: */ michael@0: PLOptStatus os; michael@0: PLOptState *opt = PL_CreateOptState(argc, argv, "d:"); michael@0: while (PL_OPT_EOL != (os = PL_GetNextOpt(opt))) michael@0: { michael@0: if (PL_OPT_BAD == os) continue; michael@0: switch (opt->option) michael@0: { michael@0: case 'd': /* debug mode */ michael@0: debug_mode = 1; michael@0: break; michael@0: default: michael@0: break; michael@0: } michael@0: } michael@0: PL_DestroyOptState(opt); michael@0: michael@0: /* main test */ michael@0: michael@0: PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 0); michael@0: PR_STDIO_INIT(); michael@0: michael@0: if (debug_mode) { michael@0: printf("This program tests PR_Select with sockets. \n"); michael@0: printf(" Normal operation are tested.\n\n"); michael@0: } michael@0: michael@0: /* Create two listening sockets */ michael@0: if ((listenSock1 = PR_NewTCPSocket()) == NULL) { michael@0: fprintf(stderr, "Can't create a new TCP socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: addr.inet.family = PR_AF_INET; michael@0: addr.inet.ip = PR_htonl(PR_INADDR_ANY); michael@0: addr.inet.port = PR_htons(0); michael@0: if (PR_Bind(listenSock1, &addr) == PR_FAILURE) { michael@0: fprintf(stderr, "Can't bind socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: if (PR_GetSockName(listenSock1, &addr) == PR_FAILURE) { michael@0: fprintf(stderr, "PR_GetSockName failed\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: listenPort1 = PR_ntohs(addr.inet.port); michael@0: if (PR_Listen(listenSock1, 5) == PR_FAILURE) { michael@0: fprintf(stderr, "Can't listen on a socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: michael@0: if ((listenSock2 = PR_NewTCPSocket()) == NULL) { michael@0: fprintf(stderr, "Can't create a new TCP socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: addr.inet.family = PR_AF_INET; michael@0: addr.inet.ip = PR_htonl(PR_INADDR_ANY); michael@0: addr.inet.port = PR_htons(0); michael@0: if (PR_Bind(listenSock2, &addr) == PR_FAILURE) { michael@0: fprintf(stderr, "Can't bind socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: if (PR_GetSockName(listenSock2, &addr) == PR_FAILURE) { michael@0: fprintf(stderr, "PR_GetSockName failed\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: listenPort2 = PR_ntohs(addr.inet.port); michael@0: if (PR_Listen(listenSock2, 5) == PR_FAILURE) { michael@0: fprintf(stderr, "Can't listen on a socket\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: PR_snprintf(buf, sizeof(buf), michael@0: "The server thread is listening on ports %hu and %hu\n\n", michael@0: listenPort1, listenPort2); michael@0: if (debug_mode) printf("%s", buf); michael@0: michael@0: clientThread = PR_CreateThread(PR_USER_THREAD, michael@0: clientThreadFunc, (void *) listenPort1, michael@0: PR_PRIORITY_NORMAL, PR_LOCAL_THREAD, michael@0: PR_UNJOINABLE_THREAD, 0); michael@0: if (clientThread == NULL) { michael@0: fprintf(stderr, "can't create thread\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: michael@0: clientThread = PR_CreateThread(PR_USER_THREAD, michael@0: clientThreadFunc, (void *) listenPort2, michael@0: PR_PRIORITY_NORMAL, PR_LOCAL_THREAD, michael@0: PR_UNJOINABLE_THREAD, 0); michael@0: if (clientThread == NULL) { michael@0: fprintf(stderr, "can't create thread\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: michael@0: if (debug_mode) { michael@0: printf("Two client threads are created. Each of them will\n"); michael@0: printf("send data to one of the two ports the server is listening on.\n"); michael@0: printf("The data they send is the port number. Each of them send\n"); michael@0: printf("the data five times, so you should see ten lines below,\n"); michael@0: printf("interleaved in an arbitrary order.\n"); michael@0: } michael@0: /* set up the fd array */ michael@0: fds = fds0; michael@0: other_fds = fds1; michael@0: fds[0] = listenSock1; michael@0: fds[1] = listenSock2; michael@0: nfds = 2; michael@0: /* Set up the fd set */ michael@0: PR_FD_ZERO(&readFdSet); michael@0: PR_FD_SET(listenSock1, &readFdSet); michael@0: PR_FD_SET(listenSock2, &readFdSet); michael@0: michael@0: /* 20 events total */ michael@0: i = 0; michael@0: while (i < 20) { michael@0: PRFileDesc **tmp; michael@0: int nextIndex; michael@0: int nEvents = 0; michael@0: michael@0: retVal = PR_Select(0 /* unused */, &readFdSet, NULL, NULL, michael@0: PR_INTERVAL_NO_TIMEOUT); michael@0: PR_ASSERT(retVal != 0); /* no timeout */ michael@0: if (retVal == -1) { michael@0: fprintf(stderr, "PR_Select failed (%d, %d)\n", PR_GetError(), michael@0: PR_GetOSError()); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: michael@0: nextIndex = 2; michael@0: /* the two listening sockets */ michael@0: for (j = 0; j < 2; j++) { michael@0: other_fds[j] = fds[j]; michael@0: if (PR_FD_ISSET(fds[j], &readFdSet)) { michael@0: PRFileDesc *sock; michael@0: michael@0: nEvents++; michael@0: sock = PR_Accept(fds[j], NULL, PR_INTERVAL_NO_TIMEOUT); michael@0: if (sock == NULL) { michael@0: fprintf(stderr, "PR_Accept() failed\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: other_fds[nextIndex] = sock; michael@0: PR_FD_SET(sock, &readFdSet); michael@0: nextIndex++; michael@0: } michael@0: PR_FD_SET(fds[j], &readFdSet); michael@0: } michael@0: michael@0: for (j = 2; j < nfds; j++) { michael@0: if (PR_FD_ISSET(fds[j], &readFdSet)) { michael@0: PRInt32 nBytes; michael@0: michael@0: PR_FD_CLR(fds[j], &readFdSet); michael@0: nEvents++; michael@0: nBytes = PR_Read(fds[j], buf, sizeof(buf)); michael@0: if (nBytes == -1) { michael@0: fprintf(stderr, "PR_Read() failed\n"); michael@0: failed_already=1; michael@0: goto exit_now; michael@0: } michael@0: /* Just to be safe */ michael@0: buf[127] = '\0'; michael@0: PR_Close(fds[j]); michael@0: if (debug_mode) printf("The server received \"%s\" from a client\n", buf); michael@0: } else { michael@0: PR_FD_SET(fds[j], &readFdSet); michael@0: other_fds[nextIndex] = fds[j]; michael@0: nextIndex++; michael@0: } michael@0: } michael@0: michael@0: PR_ASSERT(retVal == nEvents); michael@0: /* swap */ michael@0: tmp = fds; michael@0: fds = other_fds; michael@0: other_fds = tmp; michael@0: nfds = nextIndex; michael@0: i += nEvents; michael@0: } michael@0: michael@0: if (debug_mode) printf("Test passed\n"); michael@0: michael@0: PR_Cleanup(); michael@0: goto exit_now; michael@0: exit_now: michael@0: if(failed_already) michael@0: return 1; michael@0: else michael@0: return 0; michael@0: }