andre@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ andre@0: /* This Source Code Form is subject to the terms of the Mozilla Public andre@0: * License, v. 2.0. If a copy of the MPL was not distributed with this andre@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ andre@0: andre@0: #if defined(_PPRMWAIT_H) andre@0: #else andre@0: #define _PPRMWAIT_H andre@0: andre@0: #include "prlock.h" andre@0: #include "prcvar.h" andre@0: #include "prclist.h" andre@0: #include "prthread.h" andre@0: andre@0: #define MAX_POLLING_INTERVAL 100 andre@0: #define _PR_POLL_COUNT_FUDGE 64 andre@0: #define _PR_DEFAULT_HASH_LENGTH 59 andre@0: andre@0: /* andre@0: * Our hash table resolves collisions by open addressing with andre@0: * double hashing. See Cormen, Leiserson, and Rivest, andre@0: * Introduction to Algorithms, p. 232, The MIT Press, 1990. andre@0: */ andre@0: andre@0: #define _MW_HASH(a, m) ((((PRUptrdiff)(a) >> 4) ^ ((PRUptrdiff)(a) >> 10)) % (m)) andre@0: #define _MW_HASH2(a, m) (1 + ((((PRUptrdiff)(a) >> 4) ^ ((PRUptrdiff)(a) >> 10)) % (m - 2))) andre@0: #define _MW_ABORTED(_rv) \ andre@0: ((PR_FAILURE == (_rv)) && (PR_PENDING_INTERRUPT_ERROR == PR_GetError())) andre@0: andre@0: typedef enum {_prmw_success, _prmw_rehash, _prmw_error} _PR_HashStory; andre@0: andre@0: typedef struct _PRWaiterHash andre@0: { andre@0: PRUint16 count; /* current number in hash table */ andre@0: PRUint16 length; /* current size of the hash table */ andre@0: PRRecvWait *recv_wait; /* hash table of receive wait objects */ andre@0: } _PRWaiterHash; andre@0: andre@0: typedef enum {_prmw_running, _prmw_stopping, _prmw_stopped} PRMWGroupState; andre@0: andre@0: struct PRWaitGroup andre@0: { andre@0: PRCList group_link; /* all groups are linked to each other */ andre@0: PRCList io_ready; /* list of I/O requests that are ready */ andre@0: PRMWGroupState state; /* state of this group (so we can shut down) */ andre@0: andre@0: PRLock *ml; /* lock for synchronizing this wait group */ andre@0: PRCondVar *io_taken; /* calling threads notify when they take I/O */ andre@0: PRCondVar *io_complete; /* calling threads wait here for completions */ andre@0: PRCondVar *new_business; /* polling thread waits here more work */ andre@0: PRCondVar *mw_manage; /* used to manage group lists */ andre@0: PRThread* poller; /* thread that's actually doing the poll() */ andre@0: PRUint16 waiting_threads; /* number of threads waiting for recv */ andre@0: PRUint16 polling_count; /* number of elements in the polling list */ andre@0: PRUint32 p_timestamp; /* pseudo-time group had element removed */ andre@0: PRPollDesc *polling_list; /* list poller builds for polling */ andre@0: PRIntervalTime last_poll; /* last time we polled */ andre@0: _PRWaiterHash *waiter; /* pointer to hash table of wait receive objects */ andre@0: andre@0: #ifdef WINNT andre@0: /* andre@0: * On NT, idle threads are responsible for getting completed i/o. andre@0: * They need to add completed i/o to the io_ready list. Since andre@0: * idle threads cannot use nspr locks, we have to use an md lock andre@0: * to protect the io_ready list. andre@0: */ andre@0: _MDLock mdlock; /* protect io_ready, waiter, and wait_list */ andre@0: PRCList wait_list; /* used in place of io_complete. reuse andre@0: * waitQLinks in the PRThread structure. */ andre@0: #endif /* WINNT */ andre@0: }; andre@0: andre@0: /********************************************************************** andre@0: *********************************************************************** andre@0: ******************** Wait group enumerations ************************** andre@0: *********************************************************************** andre@0: **********************************************************************/ andre@0: typedef struct _PRGlobalState andre@0: { andre@0: PRCList group_list; /* master of the group list */ andre@0: PRWaitGroup *group; /* the default (NULL) group */ andre@0: } _PRGlobalState; andre@0: andre@0: #ifdef WINNT andre@0: extern PRStatus NT_HashRemoveInternal(PRWaitGroup *group, PRFileDesc *fd); andre@0: #endif andre@0: andre@0: typedef enum {_PR_ENUM_UNSEALED=0, _PR_ENUM_SEALED=0x0eadface} _PREnumSeal; andre@0: andre@0: struct PRMWaitEnumerator andre@0: { andre@0: PRWaitGroup *group; /* group this enumerator is bound to */ andre@0: PRThread *thread; /* thread in midst of an enumeration */ andre@0: _PREnumSeal seal; /* trying to detect deleted objects */ andre@0: PRUint32 p_timestamp; /* when enumeration was (re)started */ andre@0: PRRecvWait **waiter; /* pointer into hash table */ andre@0: PRUintn index; /* position in hash table */ andre@0: void *pad[4]; /* some room to grow */ andre@0: }; andre@0: andre@0: #endif /* defined(_PPRMWAIT_H) */ andre@0: andre@0: /* pprmwait.h */