123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- /* -*- 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: tpd.c
- ** Description: Exercising the thread private data bailywick.
- */
- #include "prmem.h"
- #include "prinit.h"
- #include "prlog.h"
- #include "prprf.h"
- #include "prthread.h"
- #include "prtypes.h"
- #include "private/pprio.h"
- #include "plgetopt.h"
- static PRUintn key[128];
- static PRIntn debug = 0;
- static PRBool failed = PR_FALSE;
- static PRBool should = PR_TRUE;
- static PRBool did = PR_TRUE;
- static PRFileDesc *fout = NULL;
- static void PrintProgress(PRIntn line)
- {
- failed = failed || (should && !did);
- failed = failed || (!should && did);
- if (debug > 0)
- {
- #if defined(WIN16)
- printf(
- "@ line %d destructor should%s have been called and was%s\n",
- line, ((should) ? "" : " NOT"), ((did) ? "" : " NOT"));
- #else
- PR_fprintf(
- fout, "@ line %d destructor should%s have been called and was%s\n",
- line, ((should) ? "" : " NOT"), ((did) ? "" : " NOT"));
- #endif
- }
- } /* PrintProgress */
- static void MyAssert(const char *expr, const char *file, PRIntn line)
- {
- if (debug > 0) {
- (void)PR_fprintf(fout, "'%s' in file: %s: %d\n", expr, file, line);
- }
- } /* MyAssert */
- #define MY_ASSERT(_expr) \
- ((_expr)?((void)0):MyAssert(# _expr,__FILE__,__LINE__))
- static void PR_CALLBACK Destructor(void *data)
- {
- MY_ASSERT(NULL != data);
- if (should) {
- did = PR_TRUE;
- }
- else {
- failed = PR_TRUE;
- }
- /*
- * We don't actually free the storage since it's actually allocated
- * on the stack. Normally, this would not be the case and this is
- * the opportunity to free whatever.
- PR_Free(data);
- */
- } /* Destructor */
- static void PR_CALLBACK Thread(void *null)
- {
- void *pd;
- PRStatus rv;
- PRUintn keys;
- char *key_string[] = {
- "Key #0", "Key #1", "Key #2", "Key #3",
- "Bogus #5", "Bogus #6", "Bogus #7", "Bogus #8"
- };
- did = should = PR_FALSE;
- for (keys = 0; keys < 8; ++keys)
- {
- pd = PR_GetThreadPrivate(key[keys]);
- MY_ASSERT(NULL == pd);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], key_string[keys]);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 4; keys < 8; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], key_string[keys]);
- MY_ASSERT(PR_FAILURE == rv);
- }
- PrintProgress(__LINE__);
- did = PR_FALSE; should = PR_TRUE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], key_string[keys]);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = PR_FALSE; should = PR_TRUE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], NULL);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], NULL);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 8; keys < 127; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], "EXTENSION");
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = PR_FALSE; should = PR_TRUE;
- for (keys = 8; keys < 127; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], NULL);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 8; keys < 127; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], NULL);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- /* put in keys and leave them there for thread exit */
- did = should = PR_FALSE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], key_string[keys]);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = PR_FALSE; should = PR_TRUE;
- } /* Thread */
- static PRIntn PR_CALLBACK Tpd(PRIntn argc, char **argv)
- {
- void *pd;
- PRStatus rv;
- PRUintn keys;
- PRThread *thread;
- char *key_string[] = {
- "Key #0", "Key #1", "Key #2", "Key #3",
- "Bogus #5", "Bogus #6", "Bogus #7", "Bogus #8"
- };
- fout = PR_STDOUT;
- did = should = PR_FALSE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_NewThreadPrivateIndex(&key[keys], Destructor);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 0; keys < 8; ++keys)
- {
- pd = PR_GetThreadPrivate(key[keys]);
- MY_ASSERT(NULL == pd);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], key_string[keys]);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- for (keys = 4; keys < 8; ++keys) {
- key[keys] = 4096; /* set to invalid value */
- }
- did = should = PR_FALSE;
- for (keys = 4; keys < 8; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], key_string[keys]);
- MY_ASSERT(PR_FAILURE == rv);
- }
- PrintProgress(__LINE__);
- did = PR_FALSE; should = PR_TRUE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], key_string[keys]);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = PR_FALSE; should = PR_TRUE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], NULL);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 0; keys < 4; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], NULL);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 8; keys < 127; ++keys)
- {
- rv = PR_NewThreadPrivateIndex(&key[keys], Destructor);
- MY_ASSERT(PR_SUCCESS == rv);
- rv = PR_SetThreadPrivate(key[keys], "EXTENSION");
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = PR_FALSE; should = PR_TRUE;
- for (keys = 8; keys < 127; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], NULL);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- PrintProgress(__LINE__);
- did = should = PR_FALSE;
- for (keys = 8; keys < 127; ++keys)
- {
- rv = PR_SetThreadPrivate(key[keys], NULL);
- MY_ASSERT(PR_SUCCESS == rv);
- }
- thread = PR_CreateThread(
- PR_USER_THREAD, Thread, NULL, PR_PRIORITY_NORMAL,
- PR_LOCAL_THREAD, PR_JOINABLE_THREAD, 0);
- (void)PR_JoinThread(thread);
- PrintProgress(__LINE__);
- #if defined(WIN16)
- printf(
- "%s\n",((PR_TRUE == failed) ? "FAILED" : "PASSED"));
- #else
- (void)PR_fprintf(
- fout, "%s\n",((PR_TRUE == failed) ? "FAILED" : "PASSED"));
- #endif
- return 0;
- } /* Tpd */
- int main(int argc, char **argv)
- {
- PLOptStatus os;
- PLOptState *opt = PL_CreateOptState(argc, argv, "dl:r:");
- while (PL_OPT_EOL != (os = PL_GetNextOpt(opt)))
- {
- if (PL_OPT_BAD == os) {
- continue;
- }
- switch (opt->option)
- {
- case 'd': /* debug mode */
- debug = PR_TRUE;
- break;
- default:
- break;
- }
- }
- PL_DestroyOptState(opt);
- PR_STDIO_INIT();
- return PR_Initialize(Tpd, argc, argv, 0);
- } /* main */
- /* tpd.c */
|