2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2006-05-10 17:30:15 +00:00
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2001-09-28 20:14:13 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:21:17 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-05-04 23:35:47 +00:00
|
|
|
*
|
2004-04-18 14:21:17 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1999-05-04 23:35:47 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-05-04 23:35:47 +00:00
|
|
|
*
|
2006-05-10 17:30:15 +00:00
|
|
|
* The Original Code is Mozilla code.
|
1999-05-04 23:35:47 +00:00
|
|
|
*
|
2006-05-10 17:30:15 +00:00
|
|
|
* The Initial Developer of the Original Code is Google Inc.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2006
|
2001-09-28 20:14:13 +00:00
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:43:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
2006-05-10 17:30:15 +00:00
|
|
|
* Darin Fisher <darin@meer.net>
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2006-05-10 17:30:15 +00:00
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 14:21:17 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 14:21:17 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-05-04 23:35:47 +00:00
|
|
|
|
|
|
|
#include "nsEventQueue.h"
|
2006-07-06 18:46:31 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2000-02-12 00:27:57 +00:00
|
|
|
#include "prlog.h"
|
2007-01-04 22:31:26 +00:00
|
|
|
#include "nsThreadUtils.h"
|
2000-02-12 00:27:57 +00:00
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 04:29:02 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2006-05-10 17:30:15 +00:00
|
|
|
#ifdef PR_LOGGING
|
|
|
|
static PRLogModuleInfo *sLog = PR_NewLogModule("nsEventQueue");
|
2000-02-12 00:27:57 +00:00
|
|
|
#endif
|
2006-05-10 17:30:15 +00:00
|
|
|
#define LOG(args) PR_LOG(sLog, PR_LOG_DEBUG, args)
|
1999-10-18 14:59:57 +00:00
|
|
|
|
2006-05-10 17:30:15 +00:00
|
|
|
nsEventQueue::nsEventQueue()
|
2011-04-29 19:21:57 +00:00
|
|
|
: mReentrantMonitor("nsEventQueue.mReentrantMonitor")
|
2006-05-10 17:30:15 +00:00
|
|
|
, mHead(nsnull)
|
|
|
|
, mTail(nsnull)
|
|
|
|
, mOffsetHead(0)
|
|
|
|
, mOffsetTail(0)
|
1999-10-18 14:59:57 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-05-10 17:30:15 +00:00
|
|
|
nsEventQueue::~nsEventQueue()
|
2004-12-17 19:47:06 +00:00
|
|
|
{
|
2007-02-28 02:28:53 +00:00
|
|
|
// It'd be nice to be able to assert that no one else is holding the monitor,
|
|
|
|
// but NSPR doesn't really expose APIs for it.
|
|
|
|
NS_ASSERTION(IsEmpty(), "Non-empty event queue being destroyed; events being leaked.");
|
2007-02-23 17:38:45 +00:00
|
|
|
|
2007-02-28 02:28:53 +00:00
|
|
|
if (mHead)
|
|
|
|
FreePage(mHead);
|
2004-12-17 19:47:06 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
|
|
|
nsEventQueue::GetEvent(bool mayWait, nsIRunnable **result)
|
2000-02-09 02:28:51 +00:00
|
|
|
{
|
2007-01-04 22:31:26 +00:00
|
|
|
{
|
2011-04-29 19:21:57 +00:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2007-01-04 22:31:26 +00:00
|
|
|
|
|
|
|
while (IsEmpty()) {
|
|
|
|
if (!mayWait) {
|
|
|
|
if (result)
|
|
|
|
*result = nsnull;
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2007-01-04 22:31:26 +00:00
|
|
|
}
|
|
|
|
LOG(("EVENTQ(%p): wait begin\n", this));
|
|
|
|
mon.Wait();
|
|
|
|
LOG(("EVENTQ(%p): wait end\n", this));
|
2001-04-26 05:28:43 +00:00
|
|
|
}
|
2007-01-04 22:31:26 +00:00
|
|
|
|
|
|
|
if (result) {
|
|
|
|
*result = mHead->mEvents[mOffsetHead++];
|
|
|
|
|
|
|
|
// Check if mHead points to empty Page
|
|
|
|
if (mOffsetHead == EVENTS_PER_PAGE) {
|
|
|
|
Page *dead = mHead;
|
|
|
|
mHead = mHead->mNext;
|
|
|
|
FreePage(dead);
|
|
|
|
mOffsetHead = 0;
|
|
|
|
}
|
2006-11-22 23:18:16 +00:00
|
|
|
}
|
|
|
|
}
|
2006-11-22 19:23:02 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
1999-06-04 15:02:27 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2006-05-10 17:30:15 +00:00
|
|
|
nsEventQueue::PutEvent(nsIRunnable *runnable)
|
1999-11-16 16:04:14 +00:00
|
|
|
{
|
2006-05-10 17:30:15 +00:00
|
|
|
// Avoid calling AddRef+Release while holding our monitor.
|
2006-07-06 18:46:31 +00:00
|
|
|
nsRefPtr<nsIRunnable> event(runnable);
|
2011-09-29 06:19:26 +00:00
|
|
|
bool rv = true;
|
2006-05-10 17:30:15 +00:00
|
|
|
{
|
2011-04-29 19:21:57 +00:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2006-05-10 17:30:15 +00:00
|
|
|
|
|
|
|
if (!mHead) {
|
|
|
|
mHead = NewPage();
|
|
|
|
if (!mHead) {
|
2011-10-17 14:59:28 +00:00
|
|
|
rv = false;
|
2006-05-10 17:30:15 +00:00
|
|
|
} else {
|
|
|
|
mTail = mHead;
|
|
|
|
mOffsetHead = 0;
|
|
|
|
mOffsetTail = 0;
|
|
|
|
}
|
|
|
|
} else if (mOffsetTail == EVENTS_PER_PAGE) {
|
|
|
|
Page *page = NewPage();
|
|
|
|
if (!page) {
|
2011-10-17 14:59:28 +00:00
|
|
|
rv = false;
|
2006-05-10 17:30:15 +00:00
|
|
|
} else {
|
|
|
|
mTail->mNext = page;
|
|
|
|
mTail = page;
|
|
|
|
mOffsetTail = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rv) {
|
|
|
|
event.swap(mTail->mEvents[mOffsetTail]);
|
|
|
|
++mOffsetTail;
|
|
|
|
LOG(("EVENTQ(%p): notify\n", this));
|
|
|
|
mon.NotifyAll();
|
|
|
|
}
|
1999-10-18 14:59:57 +00:00
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|