2009-07-13 14:55:04 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
*/
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2009-07-13 14:55:04 -07:00
|
|
|
|
|
|
|
#ifndef ipc_glue_SyncChannel_h
|
|
|
|
#define ipc_glue_SyncChannel_h 1
|
|
|
|
|
|
|
|
#include "mozilla/ipc/AsyncChannel.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class SyncChannel : public AsyncChannel
|
|
|
|
{
|
|
|
|
protected:
|
2010-10-22 15:28:40 -07:00
|
|
|
typedef IPC::Message::msgid_t msgid_t;
|
2009-07-13 14:55:04 -07:00
|
|
|
|
|
|
|
public:
|
2012-09-17 01:37:20 -07:00
|
|
|
static const int32_t kNoTimeout;
|
2010-02-09 16:02:54 -08:00
|
|
|
|
2009-07-15 15:33:37 -07:00
|
|
|
class /*NS_INTERFACE_CLASS*/ SyncListener :
|
|
|
|
public AsyncChannel::AsyncListener
|
2009-07-13 14:55:04 -07:00
|
|
|
{
|
|
|
|
public:
|
2009-07-15 15:06:30 -07:00
|
|
|
virtual ~SyncListener() { }
|
2009-12-03 00:16:28 -08:00
|
|
|
|
|
|
|
virtual void OnChannelClose() = 0;
|
|
|
|
virtual void OnChannelError() = 0;
|
2009-07-13 14:55:04 -07:00
|
|
|
virtual Result OnMessageReceived(const Message& aMessage) = 0;
|
2010-08-20 16:24:40 -07:00
|
|
|
virtual void OnProcessingError(Result aError) = 0;
|
2012-09-20 12:30:52 -07:00
|
|
|
virtual int32_t GetProtocolTypeId() = 0;
|
2010-02-09 16:02:55 -08:00
|
|
|
virtual bool OnReplyTimeout() = 0;
|
2009-07-13 14:55:04 -07:00
|
|
|
virtual Result OnMessageReceived(const Message& aMessage,
|
|
|
|
Message*& aReply) = 0;
|
2012-09-20 12:30:52 -07:00
|
|
|
virtual void OnChannelConnected(int32_t peer_pid) {}
|
2009-07-13 14:55:04 -07:00
|
|
|
};
|
|
|
|
|
2009-11-12 14:16:54 -08:00
|
|
|
SyncChannel(SyncListener* aListener);
|
|
|
|
virtual ~SyncChannel();
|
2009-07-13 14:55:04 -07:00
|
|
|
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual bool Send(Message* msg) MOZ_OVERRIDE {
|
2009-07-13 14:55:04 -07:00
|
|
|
return AsyncChannel::Send(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Synchronously send |msg| (i.e., wait for |reply|)
|
2010-02-16 10:44:21 -08:00
|
|
|
virtual bool Send(Message* msg, Message* reply);
|
2009-07-13 14:55:04 -07:00
|
|
|
|
2012-01-06 10:17:03 -08:00
|
|
|
// Set channel timeout value. Since this is broken up into
|
|
|
|
// two period, the minimum timeout value is 2ms.
|
2012-09-17 01:37:20 -07:00
|
|
|
void SetReplyTimeoutMs(int32_t aTimeoutMs) {
|
2010-02-09 16:02:55 -08:00
|
|
|
AssertWorkerThread();
|
2012-01-06 10:17:03 -08:00
|
|
|
mTimeoutMs = (aTimeoutMs <= 0) ? kNoTimeout :
|
|
|
|
// timeouts are broken up into two periods
|
2012-09-17 01:37:20 -07:00
|
|
|
(int32_t)ceil((double)aTimeoutMs/2.0);
|
2010-02-09 16:02:55 -08:00
|
|
|
}
|
|
|
|
|
2009-11-18 15:18:08 -08:00
|
|
|
static bool IsPumpingMessages() {
|
|
|
|
return sIsPumpingMessages;
|
|
|
|
}
|
|
|
|
static void SetIsPumpingMessages(bool aIsPumping) {
|
|
|
|
sIsPumpingMessages = aIsPumping;
|
|
|
|
}
|
2009-11-06 14:33:12 -08:00
|
|
|
|
2010-04-28 08:01:09 -07:00
|
|
|
#ifdef OS_WIN
|
2011-11-30 08:24:46 -08:00
|
|
|
public:
|
2013-04-11 20:22:09 -07:00
|
|
|
struct MOZ_STACK_CLASS SyncStackFrame
|
2010-04-28 08:01:09 -07:00
|
|
|
{
|
|
|
|
SyncStackFrame(SyncChannel* channel, bool rpc);
|
|
|
|
~SyncStackFrame();
|
|
|
|
|
|
|
|
bool mRPC;
|
|
|
|
bool mSpinNestedEvents;
|
2011-05-18 04:57:08 -07:00
|
|
|
bool mListenerNotified;
|
2010-04-28 08:01:09 -07:00
|
|
|
SyncChannel* mChannel;
|
|
|
|
|
|
|
|
/* the previous stack frame for this channel */
|
|
|
|
SyncStackFrame* mPrev;
|
|
|
|
|
|
|
|
/* the previous stack frame on any channel */
|
|
|
|
SyncStackFrame* mStaticPrev;
|
|
|
|
};
|
|
|
|
friend struct SyncChannel::SyncStackFrame;
|
|
|
|
|
|
|
|
static bool IsSpinLoopActive() {
|
|
|
|
for (SyncStackFrame* frame = sStaticTopFrame;
|
|
|
|
frame;
|
|
|
|
frame = frame->mPrev) {
|
|
|
|
if (frame->mSpinNestedEvents)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/* the deepest sync stack frame for this channel */
|
|
|
|
SyncStackFrame* mTopFrame;
|
|
|
|
|
|
|
|
/* the deepest sync stack frame on any channel */
|
|
|
|
static SyncStackFrame* sStaticTopFrame;
|
|
|
|
#endif // OS_WIN
|
|
|
|
|
2009-07-13 14:55:04 -07:00
|
|
|
protected:
|
2011-11-30 08:24:46 -08:00
|
|
|
// Executed on the link thread
|
|
|
|
// Override the AsyncChannel handler so we can dispatch sync messages
|
2012-07-06 11:15:45 -07:00
|
|
|
virtual void OnMessageReceivedFromLink(const Message& msg) MOZ_OVERRIDE;
|
|
|
|
virtual void OnChannelErrorFromLink() MOZ_OVERRIDE;
|
2011-11-30 08:24:46 -08:00
|
|
|
|
2009-07-13 14:55:04 -07:00
|
|
|
// Executed on the worker thread
|
2010-04-26 22:42:59 -07:00
|
|
|
bool ProcessingSyncMessage() const {
|
2009-08-19 08:44:56 -07:00
|
|
|
return mProcessingSyncMessage;
|
2009-07-13 14:55:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void OnDispatchMessage(const Message& aMsg);
|
2010-01-26 22:41:32 -08:00
|
|
|
|
2010-02-09 16:02:54 -08:00
|
|
|
//
|
|
|
|
// Return true if the wait ended because a notification was
|
|
|
|
// received. That is, true => event received.
|
|
|
|
//
|
|
|
|
// Return false if the time elapsed from when we started the
|
|
|
|
// process of waiting until afterwards exceeded the currently
|
|
|
|
// allotted timeout. That *DOES NOT* mean false => "no event" (==
|
|
|
|
// timeout); there are many circumstances that could cause the
|
|
|
|
// measured elapsed time to exceed the timeout EVEN WHEN we were
|
|
|
|
// notified.
|
|
|
|
//
|
|
|
|
// So in sum: true is a meaningful return value; false isn't,
|
|
|
|
// necessarily.
|
|
|
|
//
|
|
|
|
bool WaitForNotify();
|
|
|
|
|
|
|
|
bool ShouldContinueFromTimeout();
|
2009-07-13 14:55:04 -07:00
|
|
|
|
|
|
|
// Executed on the IO thread.
|
2009-10-08 23:21:39 -07:00
|
|
|
void NotifyWorkerThread();
|
2009-07-13 14:55:04 -07:00
|
|
|
|
2009-08-19 08:44:56 -07:00
|
|
|
// On both
|
2010-04-26 22:42:59 -07:00
|
|
|
bool AwaitingSyncReply() const {
|
2011-11-30 08:24:46 -08:00
|
|
|
mMonitor->AssertCurrentThreadOwns();
|
2009-08-19 08:44:56 -07:00
|
|
|
return mPendingReply != 0;
|
|
|
|
}
|
|
|
|
|
2012-09-17 01:37:20 -07:00
|
|
|
int32_t NextSeqno() {
|
2010-01-21 18:04:09 -08:00
|
|
|
AssertWorkerThread();
|
|
|
|
return mChild ? --mNextSeqno : ++mNextSeqno;
|
|
|
|
}
|
|
|
|
|
2010-10-22 15:28:40 -07:00
|
|
|
msgid_t mPendingReply;
|
2009-08-19 08:44:56 -07:00
|
|
|
bool mProcessingSyncMessage;
|
2009-07-13 14:55:04 -07:00
|
|
|
Message mRecvd;
|
2010-01-21 18:04:09 -08:00
|
|
|
// This is only accessed from the worker thread; seqno's are
|
|
|
|
// completely opaque to the IO thread.
|
2012-09-17 01:37:20 -07:00
|
|
|
int32_t mNextSeqno;
|
2009-11-06 14:33:12 -08:00
|
|
|
|
2009-11-18 15:18:08 -08:00
|
|
|
static bool sIsPumpingMessages;
|
2010-02-09 16:02:54 -08:00
|
|
|
|
2012-01-06 10:17:03 -08:00
|
|
|
// Timeout periods are broken up in two to prevent system suspension from
|
|
|
|
// triggering an abort. This method (called by WaitForNotify with a 'did
|
|
|
|
// timeout' flag) decides if we should wait again for half of mTimeoutMs
|
|
|
|
// or give up.
|
|
|
|
bool WaitResponse(bool aWaitTimedOut);
|
|
|
|
bool mInTimeoutSecondHalf;
|
2012-09-17 01:37:20 -07:00
|
|
|
int32_t mTimeoutMs;
|
2010-02-11 12:19:21 -08:00
|
|
|
|
2010-03-25 14:53:10 -07:00
|
|
|
#ifdef OS_WIN
|
|
|
|
HANDLE mEvent;
|
|
|
|
#endif
|
|
|
|
|
2010-02-09 16:02:54 -08:00
|
|
|
private:
|
|
|
|
bool EventOccurred();
|
2009-07-13 14:55:04 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // ifndef ipc_glue_SyncChannel_h
|