123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
- /*
- * File: intrupt.c
- * Purpose: testing thread interrupts
- */
- #include "plgetopt.h"
- #include "prcvar.h"
- #include "prerror.h"
- #include "prinit.h"
- #include "prinrval.h"
- #include "prio.h"
- #include "prlock.h"
- #include "prlog.h"
- #include "prthread.h"
- #include "prtypes.h"
- #include "prnetdb.h"
- #include <stdio.h>
- #include <string.h>
- #define DEFAULT_TCP_PORT 12500
- static PRLock *ml = NULL;
- static PRCondVar *cv = NULL;
- static PRBool passed = PR_TRUE;
- static PRBool debug_mode = PR_FALSE;
- static PRThreadScope thread_scope = PR_LOCAL_THREAD;
- static void PR_CALLBACK AbortCV(void *arg)
- {
- PRStatus rv;
- PRThread *me = PR_GetCurrentThread();
- /* some other thread (main) is doing the interrupt */
- PR_Lock(ml);
- rv = PR_WaitCondVar(cv, PR_INTERVAL_NO_TIMEOUT);
- if (debug_mode) {
- printf( "Expected interrupt on wait CV and ");
- }
- if (PR_FAILURE == rv)
- {
- if (PR_PENDING_INTERRUPT_ERROR == PR_GetError())
- {
- if (debug_mode) {
- printf("got it\n");
- }
- }
- else
- {
- if (debug_mode) {
- printf("got random error\n");
- }
- passed = PR_FALSE;
- }
- }
- else
- {
- if (debug_mode) {
- printf("got a successful completion\n");
- }
- passed = PR_FALSE;
- }
- rv = PR_WaitCondVar(cv, 10);
- if (debug_mode)
- {
- printf(
- "Expected success on wait CV and %s\n",
- (PR_SUCCESS == rv) ? "got it" : "failed");
- }
- passed = ((PR_TRUE == passed) && (PR_SUCCESS == rv)) ? PR_TRUE : PR_FALSE;
- /* interrupt myself, then clear */
- PR_Interrupt(me);
- PR_ClearInterrupt();
- rv = PR_WaitCondVar(cv, 10);
- if (debug_mode)
- {
- printf("Expected success on wait CV and ");
- if (PR_FAILURE == rv)
- {
- printf(
- "%s\n", (PR_PENDING_INTERRUPT_ERROR == PR_GetError()) ?
- "got interrupted" : "a random failure");
- }
- printf("got it\n");
- }
- passed = ((PR_TRUE == passed) && (PR_SUCCESS == rv)) ? PR_TRUE : PR_FALSE;
- /* set, then wait - interrupt - then wait again */
- PR_Interrupt(me);
- rv = PR_WaitCondVar(cv, 10);
- if (debug_mode) {
- printf( "Expected interrupt on wait CV and ");
- }
- if (PR_FAILURE == rv)
- {
- if (PR_PENDING_INTERRUPT_ERROR == PR_GetError())
- {
- if (debug_mode) {
- printf("got it\n");
- }
- }
- else
- {
- if (debug_mode) {
- printf("failed\n");
- }
- passed = PR_FALSE;
- }
- }
- else
- {
- if (debug_mode) {
- printf("got a successful completion\n");
- }
- passed = PR_FALSE;
- }
- rv = PR_WaitCondVar(cv, 10);
- if (debug_mode)
- {
- printf(
- "Expected success on wait CV and %s\n",
- (PR_SUCCESS == rv) ? "got it" : "failed");
- }
- passed = ((PR_TRUE == passed) && (PR_SUCCESS == rv)) ? PR_TRUE : PR_FALSE;
- PR_Unlock(ml);
- } /* AbortCV */
- static void PR_CALLBACK AbortIO(void *arg)
- {
- PRStatus rv;
- PR_Sleep(PR_SecondsToInterval(2));
- rv = PR_Interrupt((PRThread*)arg);
- PR_ASSERT(PR_SUCCESS == rv);
- } /* AbortIO */
- static void PR_CALLBACK AbortJoin(void *arg)
- {
- } /* AbortJoin */
- static void setup_listen_socket(PRFileDesc **listner, PRNetAddr *netaddr)
- {
- PRStatus rv;
- PRInt16 port = DEFAULT_TCP_PORT;
- *listner = PR_NewTCPSocket();
- PR_ASSERT(*listner != NULL);
- memset(netaddr, 0, sizeof(*netaddr));
- (*netaddr).inet.ip = PR_htonl(PR_INADDR_ANY);
- (*netaddr).inet.family = PR_AF_INET;
- do
- {
- (*netaddr).inet.port = PR_htons(port);
- rv = PR_Bind(*listner, netaddr);
- port += 1;
- PR_ASSERT(port < (DEFAULT_TCP_PORT + 10));
- } while (PR_FAILURE == rv);
- rv = PR_Listen(*listner, 5);
- if (PR_GetSockName(*listner, netaddr) < 0) {
- if (debug_mode) {
- printf("intrupt: ERROR - PR_GetSockName failed\n");
- }
- passed = PR_FALSE;
- return;
- }
- }
- static void PR_CALLBACK IntrBlock(void *arg)
- {
- PRStatus rv;
- PRNetAddr netaddr;
- PRFileDesc *listner;
- /* some other thread (main) is doing the interrupt */
- /* block the interrupt */
- PR_BlockInterrupt();
- PR_Lock(ml);
- rv = PR_WaitCondVar(cv, PR_SecondsToInterval(4));
- PR_Unlock(ml);
- if (debug_mode)
- {
- printf("Expected success on wait CV and ");
- if (PR_FAILURE == rv)
- {
- printf(
- "%s\n", (PR_PENDING_INTERRUPT_ERROR == PR_GetError()) ?
- "got interrupted" : "got a random failure");
- } else {
- printf("got it\n");
- }
- }
- passed = ((PR_TRUE == passed) && (PR_SUCCESS == rv)) ? PR_TRUE : PR_FALSE;
- setup_listen_socket(&listner, &netaddr);
- PR_UnblockInterrupt();
- if (PR_Accept(listner, &netaddr, PR_INTERVAL_NO_TIMEOUT) == NULL)
- {
- PRInt32 error = PR_GetError();
- if (debug_mode) {
- printf("Expected interrupt on PR_Accept() and ");
- }
- if (PR_PENDING_INTERRUPT_ERROR == error)
- {
- if (debug_mode) {
- printf("got it\n");
- }
- }
- else
- {
- if (debug_mode) {
- printf("failed\n");
- }
- passed = PR_FALSE;
- }
- }
- else
- {
- if (debug_mode) {
- printf("Failed to interrupt PR_Accept()\n");
- }
- passed = PR_FALSE;
- }
- (void)PR_Close(listner); listner = NULL;
- } /* TestIntrBlock */
- void PR_CALLBACK Intrupt(void *arg)
- {
- PRStatus rv;
- PRNetAddr netaddr;
- PRFileDesc *listner;
- PRThread *abortCV, *abortIO, *abortJoin, *intrBlock;
- ml = PR_NewLock();
- cv = PR_NewCondVar(ml);
- /* Part I */
- if (debug_mode) {
- printf("Part I\n");
- }
- abortCV = PR_CreateThread(
- PR_USER_THREAD, AbortCV, 0, PR_PRIORITY_NORMAL,
- thread_scope, PR_JOINABLE_THREAD, 0);
- PR_Sleep(PR_SecondsToInterval(2));
- rv = PR_Interrupt(abortCV);
- PR_ASSERT(PR_SUCCESS == rv);
- rv = PR_JoinThread(abortCV);
- PR_ASSERT(PR_SUCCESS == rv);
- /* Part II */
- if (debug_mode) {
- printf("Part II\n");
- }
- abortJoin = PR_CreateThread(
- PR_USER_THREAD, AbortJoin, 0, PR_PRIORITY_NORMAL,
- thread_scope, PR_JOINABLE_THREAD, 0);
- PR_Sleep(PR_SecondsToInterval(2));
- if (debug_mode) {
- printf("Expecting to interrupt an exited thread ");
- }
- rv = PR_Interrupt(abortJoin);
- PR_ASSERT(PR_SUCCESS == rv);
- rv = PR_JoinThread(abortJoin);
- PR_ASSERT(PR_SUCCESS == rv);
- if (debug_mode) {
- printf("and succeeded\n");
- }
- /* Part III */
- if (debug_mode) {
- printf("Part III\n");
- }
- setup_listen_socket(&listner, &netaddr);
- abortIO = PR_CreateThread(
- PR_USER_THREAD, AbortIO, PR_GetCurrentThread(), PR_PRIORITY_NORMAL,
- thread_scope, PR_JOINABLE_THREAD, 0);
- if (PR_Accept(listner, &netaddr, PR_INTERVAL_NO_TIMEOUT) == NULL)
- {
- PRInt32 error = PR_GetError();
- if (debug_mode) {
- printf("Expected interrupt on PR_Accept() and ");
- }
- if (PR_PENDING_INTERRUPT_ERROR == error)
- {
- if (debug_mode) {
- printf("got it\n");
- }
- }
- else
- {
- if (debug_mode) {
- printf("failed\n");
- }
- passed = PR_FALSE;
- }
- }
- else
- {
- if (debug_mode) {
- printf("Failed to interrupt PR_Accept()\n");
- }
- passed = PR_FALSE;
- }
- (void)PR_Close(listner); listner = NULL;
- rv = PR_JoinThread(abortIO);
- PR_ASSERT(PR_SUCCESS == rv);
- /* Part VI */
- if (debug_mode) {
- printf("Part VI\n");
- }
- intrBlock = PR_CreateThread(
- PR_USER_THREAD, IntrBlock, 0, PR_PRIORITY_NORMAL,
- thread_scope, PR_JOINABLE_THREAD, 0);
- PR_Sleep(PR_SecondsToInterval(2));
- rv = PR_Interrupt(intrBlock);
- PR_ASSERT(PR_SUCCESS == rv);
- rv = PR_JoinThread(intrBlock);
- PR_ASSERT(PR_SUCCESS == rv);
- PR_DestroyCondVar(cv);
- PR_DestroyLock(ml);
- } /* Intrupt */
- int main(int argc, char **argv)
- {
- PRThread *intrupt;
- PLOptStatus os;
- PLOptState *opt = PL_CreateOptState(argc, argv, "dG");
- while (PL_OPT_EOL != (os = PL_GetNextOpt(opt)))
- {
- if (PL_OPT_BAD == os) {
- continue;
- }
- switch (opt->option)
- {
- case 'd': /* debug mode */
- debug_mode = PR_TRUE;
- break;
- case 'G': /* use global threads */
- thread_scope = PR_GLOBAL_THREAD;
- break;
- }
- }
- PL_DestroyOptState(opt);
- PR_STDIO_INIT();
- intrupt = PR_CreateThread(
- PR_USER_THREAD, Intrupt, NULL, PR_PRIORITY_NORMAL,
- thread_scope, PR_JOINABLE_THREAD, 0);
- if (intrupt == NULL) {
- fprintf(stderr, "cannot create thread\n");
- passed = PR_FALSE;
- } else {
- PRStatus rv;
- rv = PR_JoinThread(intrupt);
- PR_ASSERT(rv == PR_SUCCESS);
- }
- printf("%s\n", ((passed) ? "PASSED" : "FAILED"));
- return ((passed) ? 0 : 1);
- } /* main */
- /* intrupt.c */
|