mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
5c3e1ed7ef
- Bug 1255818. Switch from JS_ClearPendingException to AutoJSAPI::ClearException for cases when we have an AutoJSAPI around. r=bholley (e1e0413493) - Bug 1253591. HTMLAllCollection should be rooted at the document, not the root element, so it can find the root element. r=peterv (c5f2f253a9) - Bug 1257270 - Use std::nullptr_t instead of nullptr_t in WMFUtils.h. r=cpearce (539e705876) - Bug 1251881 - use UniquePtr instead of ScopedDeletePtr in mozglue/linker/; r=glandium (2fe329e32c) - Bug 1219068 - Compute size correctly when a character consists entirely of glue. r=karlt (80f2e23268) - Bug 1246132 - Improve register allocation speed on large functions, r=sunfish. (6e023c252b) - Bug 1150354: Make nsPluginDirServiceProvider build with MSVC 2015 CTP 6, r=jmathies (0113760730) - Bug 1197311 - Remove PR_snprintf calls in dom/ r=froydnj (6268400ef0) - Bug 1255099 - XHR CTOR doesn't need to use implicitJSContext, r=bz (72f08fbc36) - Bug 1255597 - Part 1: Remove redundent trailing spaces. r=khuey (7f2240cb05) - Bug 1255597 - Part 2: Follow spec to modify the content-type check conditions which determine parsing XHR body or not. r=khuey (ba6f7fc536) - Bug 1255597 - Part 3: Synchronize content-type hint of HttpChannelChild to HttpChannelParent. r=jduell (bb97478b01) - Bug 1255597 - Part 4: Remove 'expected fail' settings and expect test cases in responsexml-media-type.htm should be passed. r=khuey (772884b4fb) - Bug 1201170 - During message diversion must be possible to suspend them. r=jduell (abb2361b7f) - Bug 1201174 - For FTP - in case of divertToParent, it myst be possible to delay delivering of OnDataAv./OnStopR. r=jduell (9299ef81be) - Bug 1247393 - use arrays of UniquePtr in ChannelEventQueue; r=mcmanus (7621205b53) - Bug 1254730 - ChannelEventQueue must be thread-safe, r=michal (b8e01204e9) - Bug 1254859 part 2. Switch the AutoEntryScript in nsXULTemplateBuilder::InitHTMLTemplateRoot to take ownership of error reporting. r=bholley (f183ec692c) - Bug 1254859 part 1. Switch the AutoEntryScript in nsGlobalWindow::FireOnNewGlobalObject to take ownership of error reporting. r=bholley (b0cd891917) - Bug 1254860. Switch the AutoEntryScript TestShellCommandParent::RunCallback to taking ownership of error reporting. r=bholley (0c9697e60f) - Bug 1254857. Switch the AutoEntryScript in xpc::EvalInSandbox to take ownership of error reporting. r=bholley (93b6bfc87c) - Bug 1254847 part 3. Make AutoEntryScript always take ownership of error reporting. r=bholley (3c2929462f) - Bug 1256688 - Continue using getPropertyDescriptor for has in Sandbox창. r=peterv (be7e50b715) - Bug 1254730 - patch 2 - Better comments and a better management of lifetime of ChannelEvents, r=michal (8348911e35) - Bug 1163198 - Remove instances of #ifdef PR_LOGGING in dom/plugins. r=froydnj (ba13039dfa) - Bug 1253216 - clean up the atomic ops ifdef nest. r=jorendorff (6ca747d3cf) - Bug 1257055 - Use jit/arm64/Architecture-arm64.h on non-JIT aarch64. r=lth (4f3949cd19) - Bug 1253379 - Cache timings not send to HttpChannelChild r=mayhemer (395172278f) - align SetAllowStaleCacheContent to FF52, possible misspatch (9d29d27011)
238 lines
6.1 KiB
C++
238 lines
6.1 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* vim: set sw=2 ts=8 et tw=80 :
|
|
*/
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_net_ChannelEventQueue_h
|
|
#define mozilla_net_ChannelEventQueue_h
|
|
|
|
#include "nsTArray.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "mozilla/Mutex.h"
|
|
#include "mozilla/UniquePtr.h"
|
|
|
|
class nsISupports;
|
|
class nsIEventTarget;
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
class ChannelEvent
|
|
{
|
|
public:
|
|
ChannelEvent() { MOZ_COUNT_CTOR(ChannelEvent); }
|
|
virtual ~ChannelEvent() { MOZ_COUNT_DTOR(ChannelEvent); }
|
|
virtual void Run() = 0;
|
|
};
|
|
|
|
// Workaround for Necko re-entrancy dangers. We buffer IPDL messages in a
|
|
// queue if still dispatching previous one(s) to listeners/observers.
|
|
// Otherwise synchronous XMLHttpRequests and/or other code that spins the
|
|
// event loop (ex: IPDL rpc) could cause listener->OnDataAvailable (for
|
|
// instance) to be dispatched and called before mListener->OnStartRequest has
|
|
// completed.
|
|
|
|
class ChannelEventQueue final
|
|
{
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(ChannelEventQueue)
|
|
|
|
public:
|
|
explicit ChannelEventQueue(nsISupports *owner)
|
|
: mSuspendCount(0)
|
|
, mSuspended(false)
|
|
, mForced(false)
|
|
, mFlushing(false)
|
|
, mOwner(owner)
|
|
, mMutex("ChannelEventQueue::mMutex")
|
|
{}
|
|
|
|
// Puts IPDL-generated channel event into queue, to be run later
|
|
// automatically when EndForcedQueueing and/or Resume is called.
|
|
//
|
|
// @param aCallback - the ChannelEvent
|
|
// @param aAssertionWhenNotQueued - this optional param will be used in an
|
|
// assertion when the event is executed directly.
|
|
inline void RunOrEnqueue(ChannelEvent* aCallback,
|
|
bool aAssertionWhenNotQueued = false);
|
|
inline nsresult PrependEvents(nsTArray<UniquePtr<ChannelEvent>>& aEvents);
|
|
|
|
// After StartForcedQueueing is called, RunOrEnqueue() will start enqueuing
|
|
// events that will be run/flushed when EndForcedQueueing is called.
|
|
// - Note: queueing may still be required after EndForcedQueueing() (if the
|
|
// queue is suspended, etc): always call RunOrEnqueue() to avoid race
|
|
// conditions.
|
|
inline void StartForcedQueueing();
|
|
inline void EndForcedQueueing();
|
|
|
|
// Suspend/resume event queue. RunOrEnqueue() will start enqueuing
|
|
// events and they will be run/flushed when resume is called. These should be
|
|
// called when the channel owning the event queue is suspended/resumed.
|
|
inline void Suspend();
|
|
// Resume flushes the queue asynchronously, i.e. items in queue will be
|
|
// dispatched in a new event on the current thread.
|
|
void Resume();
|
|
|
|
// Retargets delivery of events to the target thread specified.
|
|
nsresult RetargetDeliveryTo(nsIEventTarget* aTargetThread);
|
|
|
|
private:
|
|
// Private destructor, to discourage deletion outside of Release():
|
|
~ChannelEventQueue()
|
|
{
|
|
}
|
|
|
|
inline void MaybeFlushQueue();
|
|
void FlushQueue();
|
|
inline void CompleteResume();
|
|
|
|
ChannelEvent* TakeEvent();
|
|
|
|
nsTArray<UniquePtr<ChannelEvent>> mEventQueue;
|
|
|
|
uint32_t mSuspendCount;
|
|
bool mSuspended;
|
|
bool mForced;
|
|
bool mFlushing;
|
|
|
|
// Keep ptr to avoid refcount cycle: only grab ref during flushing.
|
|
nsISupports *mOwner;
|
|
|
|
Mutex mMutex;
|
|
|
|
// EventTarget for delivery of events to the correct thread.
|
|
nsCOMPtr<nsIEventTarget> mTargetThread;
|
|
|
|
friend class AutoEventEnqueuer;
|
|
};
|
|
|
|
inline void
|
|
ChannelEventQueue::RunOrEnqueue(ChannelEvent* aCallback,
|
|
bool aAssertionWhenNotQueued)
|
|
{
|
|
MOZ_ASSERT(aCallback);
|
|
|
|
// To avoid leaks.
|
|
UniquePtr<ChannelEvent> event(aCallback);
|
|
|
|
{
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
bool enqueue = mForced || mSuspended || mFlushing;
|
|
MOZ_ASSERT(enqueue == true || mEventQueue.IsEmpty(),
|
|
"Should always enqueue if ChannelEventQueue not empty");
|
|
|
|
if (enqueue) {
|
|
mEventQueue.AppendElement(Move(event));
|
|
return;
|
|
}
|
|
}
|
|
|
|
MOZ_RELEASE_ASSERT(!aAssertionWhenNotQueued);
|
|
event->Run();
|
|
}
|
|
|
|
inline void
|
|
ChannelEventQueue::StartForcedQueueing()
|
|
{
|
|
MutexAutoLock lock(mMutex);
|
|
mForced = true;
|
|
}
|
|
|
|
inline void
|
|
ChannelEventQueue::EndForcedQueueing()
|
|
{
|
|
{
|
|
MutexAutoLock lock(mMutex);
|
|
mForced = false;
|
|
}
|
|
|
|
MaybeFlushQueue();
|
|
}
|
|
|
|
inline nsresult
|
|
ChannelEventQueue::PrependEvents(nsTArray<UniquePtr<ChannelEvent>>& aEvents)
|
|
{
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
UniquePtr<ChannelEvent>* newEvents =
|
|
mEventQueue.InsertElementsAt(0, aEvents.Length());
|
|
if (!newEvents) {
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
}
|
|
|
|
for (uint32_t i = 0; i < aEvents.Length(); i++) {
|
|
newEvents[i] = Move(aEvents[i]);
|
|
}
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
inline void
|
|
ChannelEventQueue::Suspend()
|
|
{
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
mSuspended = true;
|
|
mSuspendCount++;
|
|
}
|
|
|
|
inline void
|
|
ChannelEventQueue::CompleteResume()
|
|
{
|
|
{
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
// channel may have been suspended again since Resume fired event to call
|
|
// this.
|
|
if (!mSuspendCount) {
|
|
// we need to remain logically suspended (for purposes of queuing incoming
|
|
// messages) until this point, else new incoming messages could run before
|
|
// queued ones.
|
|
mSuspended = false;
|
|
}
|
|
}
|
|
|
|
MaybeFlushQueue();
|
|
}
|
|
|
|
inline void
|
|
ChannelEventQueue::MaybeFlushQueue()
|
|
{
|
|
// Don't flush if forced queuing on, we're already being flushed, or
|
|
// suspended, or there's nothing to flush
|
|
bool flushQueue = false;
|
|
|
|
{
|
|
MutexAutoLock lock(mMutex);
|
|
flushQueue = !mForced && !mFlushing && !mSuspended &&
|
|
!mEventQueue.IsEmpty();
|
|
}
|
|
|
|
if (flushQueue) {
|
|
FlushQueue();
|
|
}
|
|
}
|
|
|
|
// Ensures that RunOrEnqueue() will be collecting events during its lifetime
|
|
// (letting caller know incoming IPDL msgs should be queued). Flushes the queue
|
|
// when it goes out of scope.
|
|
class MOZ_STACK_CLASS AutoEventEnqueuer
|
|
{
|
|
public:
|
|
explicit AutoEventEnqueuer(ChannelEventQueue *queue) : mEventQueue(queue) {
|
|
mEventQueue->StartForcedQueueing();
|
|
}
|
|
~AutoEventEnqueuer() {
|
|
mEventQueue->EndForcedQueueing();
|
|
}
|
|
private:
|
|
RefPtr<ChannelEventQueue> mEventQueue;
|
|
};
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif
|