2009-07-13 21:55:04 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: sw=4 ts=4 et :
|
|
|
|
*/
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Plugin App.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Chris Jones <jones.chris.g@gmail.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* 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"),
|
|
|
|
* 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
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* 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
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "mozilla/ipc/AsyncChannel.h"
|
2010-02-03 22:17:09 +00:00
|
|
|
#include "mozilla/ipc/BrowserProcessSubThread.h"
|
2009-12-03 08:16:28 +00:00
|
|
|
#include "mozilla/ipc/ProtocolUtils.h"
|
2009-07-13 21:55:04 +00:00
|
|
|
|
|
|
|
#include "nsDebug.h"
|
2009-11-12 22:46:29 +00:00
|
|
|
#include "nsTraceRefcnt.h"
|
2009-08-25 23:07:22 +00:00
|
|
|
#include "nsXULAppAPI.h"
|
2009-07-13 21:55:04 +00:00
|
|
|
|
2009-09-01 16:27:09 +00:00
|
|
|
using mozilla::MutexAutoLock;
|
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
template<>
|
|
|
|
struct RunnableMethodTraits<mozilla::ipc::AsyncChannel>
|
|
|
|
{
|
|
|
|
static void RetainCallee(mozilla::ipc::AsyncChannel* obj) { }
|
|
|
|
static void ReleaseCallee(mozilla::ipc::AsyncChannel* obj) { }
|
|
|
|
};
|
|
|
|
|
2010-01-27 06:41:31 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
// This is an async message
|
|
|
|
class GoodbyeMessage : public IPC::Message
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum { ID = GOODBYE_MESSAGE_TYPE };
|
|
|
|
GoodbyeMessage() :
|
|
|
|
IPC::Message(MSG_ROUTING_NONE, ID, PRIORITY_NORMAL)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
// XXX not much point in implementing this; maybe could help with
|
|
|
|
// debugging?
|
|
|
|
static bool Read(const Message* msg)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
void Log(const std::string& aPrefix,
|
|
|
|
FILE* aOutf) const
|
|
|
|
{
|
|
|
|
fputs("(special `Goodbye' message)", aOutf);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace <anon>
|
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
2009-11-12 22:16:54 +00:00
|
|
|
AsyncChannel::AsyncChannel(AsyncListener* aListener)
|
|
|
|
: mTransport(0),
|
|
|
|
mListener(aListener),
|
|
|
|
mChannelState(ChannelClosed),
|
|
|
|
mMutex("mozilla.ipc.AsyncChannel.mMutex"),
|
|
|
|
mCvar(mMutex, "mozilla.ipc.AsyncChannel.mCvar"),
|
|
|
|
mIOLoop(),
|
2009-12-18 00:12:03 +00:00
|
|
|
mWorkerLoop(),
|
2010-01-27 08:17:17 +00:00
|
|
|
mChild(false),
|
2009-12-18 00:12:03 +00:00
|
|
|
mChannelErrorTask(NULL)
|
2009-11-12 22:16:54 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(AsyncChannel);
|
|
|
|
}
|
|
|
|
|
|
|
|
AsyncChannel::~AsyncChannel()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(AsyncChannel);
|
2009-12-03 08:16:28 +00:00
|
|
|
Clear();
|
2009-11-12 22:16:54 +00:00
|
|
|
}
|
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
bool
|
|
|
|
AsyncChannel::Open(Transport* aTransport, MessageLoop* aIOLoop)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(!mTransport, "Open() called > once");
|
|
|
|
NS_PRECONDITION(aTransport, "need transport layer");
|
|
|
|
|
|
|
|
// FIXME need to check for valid channel
|
|
|
|
|
|
|
|
mTransport = aTransport;
|
|
|
|
mTransport->set_listener(this);
|
|
|
|
|
2009-07-14 05:12:50 +00:00
|
|
|
// FIXME figure out whether we're in parent or child, grab IO loop
|
|
|
|
// appropriately
|
2009-07-13 21:55:04 +00:00
|
|
|
bool needOpen = true;
|
|
|
|
if(!aIOLoop) {
|
2009-07-14 05:12:50 +00:00
|
|
|
// parent
|
2009-07-13 21:55:04 +00:00
|
|
|
needOpen = false;
|
|
|
|
aIOLoop = BrowserProcessSubThread
|
|
|
|
::GetMessageLoop(BrowserProcessSubThread::IO);
|
2009-07-14 05:12:50 +00:00
|
|
|
// FIXME assuming that the parent waits for the OnConnected event.
|
|
|
|
// FIXME see GeckoChildProcessHost.cpp. bad assumption!
|
2009-08-19 15:44:56 +00:00
|
|
|
mChannelState = ChannelConnected;
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
2009-10-08 21:44:43 +00:00
|
|
|
mChild = needOpen;
|
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
mIOLoop = aIOLoop;
|
|
|
|
mWorkerLoop = MessageLoop::current();
|
|
|
|
|
|
|
|
NS_ASSERTION(mIOLoop, "need an IO loop");
|
|
|
|
NS_ASSERTION(mWorkerLoop, "need a worker loop");
|
|
|
|
|
2009-09-01 16:27:09 +00:00
|
|
|
if (needOpen) { // child process
|
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
mIOLoop->PostTask(FROM_HERE,
|
|
|
|
NewRunnableMethod(this,
|
|
|
|
&AsyncChannel::OnChannelOpened));
|
2009-09-01 16:27:09 +00:00
|
|
|
|
|
|
|
// FIXME/cjones: handle errors
|
|
|
|
while (mChannelState != ChannelConnected) {
|
|
|
|
mCvar.Wait();
|
|
|
|
}
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncChannel::Close()
|
|
|
|
{
|
2010-02-10 00:02:54 +00:00
|
|
|
AssertWorkerThread();
|
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
{
|
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
|
2010-02-10 00:02:54 +00:00
|
|
|
if (ChannelError == mChannelState ||
|
|
|
|
ChannelTimeout == mChannelState) {
|
2010-01-12 06:14:32 +00:00
|
|
|
// See bug 538586: if the listener gets deleted while the
|
|
|
|
// IO thread's NotifyChannelError event is still enqueued
|
|
|
|
// and subsequently deletes us, then the error event will
|
|
|
|
// also be deleted and the listener will never be notified
|
|
|
|
// of the channel error.
|
|
|
|
if (mListener) {
|
2010-02-18 22:21:15 +00:00
|
|
|
MutexAutoUnlock unlock(mMutex);
|
2010-01-12 06:14:32 +00:00
|
|
|
NotifyMaybeChannelError();
|
|
|
|
}
|
2009-12-18 00:12:03 +00:00
|
|
|
return;
|
2010-01-12 06:14:32 +00:00
|
|
|
}
|
2009-12-18 00:12:03 +00:00
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
if (ChannelConnected != mChannelState)
|
|
|
|
// XXX be strict about this until there's a compelling reason
|
|
|
|
// to relax
|
|
|
|
NS_RUNTIMEABORT("Close() called on closed channel!");
|
2009-11-09 22:56:55 +00:00
|
|
|
|
2009-11-11 08:34:08 +00:00
|
|
|
AssertWorkerThread();
|
2009-11-09 22:56:55 +00:00
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
// notify the other side that we're about to close our socket
|
2010-01-27 06:41:31 +00:00
|
|
|
SendSpecialMessage(new GoodbyeMessage());
|
2009-12-03 08:16:28 +00:00
|
|
|
|
2010-02-10 00:02:54 +00:00
|
|
|
SynchronouslyClose();
|
|
|
|
}
|
2009-12-03 08:16:28 +00:00
|
|
|
|
2010-02-18 22:21:15 +00:00
|
|
|
NotifyChannelClosed();
|
2010-02-10 00:02:54 +00:00
|
|
|
}
|
2009-11-11 08:34:08 +00:00
|
|
|
|
2010-02-10 00:02:54 +00:00
|
|
|
void
|
|
|
|
AsyncChannel::SynchronouslyClose()
|
|
|
|
{
|
|
|
|
AssertWorkerThread();
|
|
|
|
mMutex.AssertCurrentThreadOwns();
|
2009-12-03 08:16:28 +00:00
|
|
|
|
2010-02-10 00:02:54 +00:00
|
|
|
mIOLoop->PostTask(
|
|
|
|
FROM_HERE, NewRunnableMethod(this, &AsyncChannel::OnCloseChannel));
|
2009-07-13 21:55:04 +00:00
|
|
|
|
2010-02-10 00:02:54 +00:00
|
|
|
while (ChannelClosed != mChannelState)
|
|
|
|
mCvar.Wait();
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AsyncChannel::Send(Message* msg)
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertWorkerThread();
|
2009-10-09 06:21:39 +00:00
|
|
|
mMutex.AssertNotCurrentThreadOwns();
|
2009-09-22 02:02:15 +00:00
|
|
|
NS_ABORT_IF_FALSE(MSG_ROUTING_NONE != msg->routing_id(), "need a route");
|
|
|
|
|
2009-10-09 06:21:39 +00:00
|
|
|
{
|
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
|
2009-10-27 21:32:55 +00:00
|
|
|
if (!Connected()) {
|
|
|
|
ReportConnectionError("AsyncChannel");
|
2009-10-09 06:21:39 +00:00
|
|
|
return false;
|
2009-10-27 21:32:55 +00:00
|
|
|
}
|
2009-10-09 06:21:39 +00:00
|
|
|
|
|
|
|
mIOLoop->PostTask(FROM_HERE,
|
|
|
|
NewRunnableMethod(this, &AsyncChannel::OnSend, msg));
|
|
|
|
}
|
2009-08-19 15:44:56 +00:00
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncChannel::OnDispatchMessage(const Message& msg)
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertWorkerThread();
|
2009-07-13 21:55:04 +00:00
|
|
|
NS_ASSERTION(!msg.is_reply(), "can't process replies here");
|
|
|
|
NS_ASSERTION(!(msg.is_sync() || msg.is_rpc()), "async dispatch only");
|
|
|
|
|
2010-01-27 06:41:31 +00:00
|
|
|
if (MSG_ROUTING_NONE == msg.routing_id()) {
|
|
|
|
if (!OnSpecialMessage(msg.type(), msg))
|
|
|
|
// XXX real error handling
|
|
|
|
NS_RUNTIMEABORT("unhandled special message!");
|
2009-12-03 08:16:28 +00:00
|
|
|
return;
|
2010-01-27 06:41:31 +00:00
|
|
|
}
|
2009-12-03 08:16:28 +00:00
|
|
|
|
|
|
|
// it's OK to dispatch messages if the channel is closed/error'd,
|
|
|
|
// since we don't have a reply to send back
|
|
|
|
|
2009-10-27 21:32:55 +00:00
|
|
|
(void)MaybeHandleError(mListener->OnMessageReceived(msg), "AsyncChannel");
|
|
|
|
}
|
|
|
|
|
2010-01-27 06:41:31 +00:00
|
|
|
bool
|
|
|
|
AsyncChannel::OnSpecialMessage(uint16 id, const Message& msg)
|
2009-12-03 08:16:28 +00:00
|
|
|
{
|
2010-01-27 06:41:31 +00:00
|
|
|
switch (id) {
|
|
|
|
case GOODBYE_MESSAGE_TYPE:
|
|
|
|
return ProcessGoodbyeMessage();
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
2009-12-03 08:16:28 +00:00
|
|
|
}
|
2010-01-27 06:41:31 +00:00
|
|
|
}
|
2009-12-03 08:16:28 +00:00
|
|
|
|
|
|
|
void
|
2010-01-27 06:41:31 +00:00
|
|
|
AsyncChannel::SendSpecialMessage(Message* msg)
|
2009-12-03 08:16:28 +00:00
|
|
|
{
|
|
|
|
AssertWorkerThread();
|
|
|
|
|
|
|
|
mIOLoop->PostTask(
|
|
|
|
FROM_HERE,
|
2010-01-27 06:41:31 +00:00
|
|
|
NewRunnableMethod(this, &AsyncChannel::OnSend, msg));
|
2009-12-03 08:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-01-27 06:41:31 +00:00
|
|
|
AsyncChannel::ProcessGoodbyeMessage()
|
2009-12-03 08:16:28 +00:00
|
|
|
{
|
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
// TODO sort out Close() on this side racing with Close() on the
|
|
|
|
// other side
|
|
|
|
mChannelState = ChannelClosing;
|
|
|
|
|
|
|
|
printf("NOTE: %s process received `Goodbye', closing down\n",
|
|
|
|
mChild ? "child" : "parent");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncChannel::NotifyChannelClosed()
|
|
|
|
{
|
2010-02-18 22:21:15 +00:00
|
|
|
mMutex.AssertNotCurrentThreadOwns();
|
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
if (ChannelClosed != mChannelState)
|
|
|
|
NS_RUNTIMEABORT("channel should have been closed!");
|
|
|
|
|
|
|
|
// OK, the IO thread just closed the channel normally. Let the
|
|
|
|
// listener know about it.
|
|
|
|
mListener->OnChannelClose();
|
2010-02-18 22:21:15 +00:00
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncChannel::NotifyMaybeChannelError()
|
|
|
|
{
|
2010-02-18 22:21:15 +00:00
|
|
|
mMutex.AssertNotCurrentThreadOwns();
|
|
|
|
|
|
|
|
// OnChannelError holds mMutex when it posts this task and this task cannot
|
|
|
|
// be allowed to run until OnChannelError has exited. We enforce that order
|
|
|
|
// by grabbing the mutex here which should only continue once OnChannelError
|
|
|
|
// has completed.
|
|
|
|
{
|
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
// Nothing to do here!
|
|
|
|
}
|
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
// TODO sort out Close() on this side racing with Close() on the
|
|
|
|
// other side
|
|
|
|
if (ChannelClosing == mChannelState) {
|
|
|
|
// the channel closed, but we received a "Goodbye" message
|
|
|
|
// warning us about it. no worries
|
|
|
|
mChannelState = ChannelClosed;
|
2010-02-18 22:21:15 +00:00
|
|
|
NotifyChannelClosed();
|
|
|
|
return;
|
2009-12-03 08:16:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Oops, error! Let the listener know about it.
|
|
|
|
mChannelState = ChannelError;
|
|
|
|
mListener->OnChannelError();
|
|
|
|
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncChannel::Clear()
|
|
|
|
{
|
|
|
|
mListener = 0;
|
|
|
|
mIOLoop = 0;
|
|
|
|
mWorkerLoop = 0;
|
|
|
|
|
|
|
|
if (mTransport) {
|
|
|
|
mTransport->set_listener(0);
|
|
|
|
|
|
|
|
// we only hold a weak ref to the transport, which is "owned"
|
|
|
|
// by GeckoChildProcess/GeckoThread
|
|
|
|
mTransport = 0;
|
|
|
|
}
|
2009-12-18 00:12:03 +00:00
|
|
|
if (mChannelErrorTask) {
|
|
|
|
mChannelErrorTask->Cancel();
|
|
|
|
mChannelErrorTask = NULL;
|
|
|
|
}
|
2009-12-03 08:16:28 +00:00
|
|
|
}
|
|
|
|
|
2009-10-27 21:32:55 +00:00
|
|
|
bool
|
|
|
|
AsyncChannel::MaybeHandleError(Result code, const char* channelName)
|
|
|
|
{
|
|
|
|
if (MsgProcessed == code)
|
|
|
|
return true;
|
2009-07-13 21:55:04 +00:00
|
|
|
|
2009-10-27 21:32:55 +00:00
|
|
|
const char* errorMsg;
|
|
|
|
switch (code) {
|
2009-07-15 21:38:55 +00:00
|
|
|
case MsgNotKnown:
|
2009-10-27 21:32:55 +00:00
|
|
|
errorMsg = "Unknown message: not processed";
|
|
|
|
break;
|
2009-07-15 21:38:55 +00:00
|
|
|
case MsgNotAllowed:
|
2009-10-27 21:32:55 +00:00
|
|
|
errorMsg = "Message not allowed: cannot be sent/recvd in this state";
|
|
|
|
break;
|
2009-07-15 21:38:55 +00:00
|
|
|
case MsgPayloadError:
|
2009-10-27 21:32:55 +00:00
|
|
|
errorMsg = "Payload error: message could not be deserialized";
|
|
|
|
break;
|
2009-07-15 21:38:55 +00:00
|
|
|
case MsgRouteError:
|
2009-10-27 21:32:55 +00:00
|
|
|
errorMsg = "Route error: message sent to unknown actor ID";
|
|
|
|
break;
|
2009-07-15 21:38:55 +00:00
|
|
|
case MsgValueError:
|
2009-10-27 21:32:55 +00:00
|
|
|
errorMsg = "Value error: message was deserialized, but contained an illegal value";
|
|
|
|
break;
|
2009-07-13 21:55:04 +00:00
|
|
|
|
|
|
|
default:
|
2009-12-03 08:16:28 +00:00
|
|
|
NS_RUNTIMEABORT("unknown Result code");
|
2009-10-27 21:32:55 +00:00
|
|
|
return false;
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
2009-10-27 21:32:55 +00:00
|
|
|
|
|
|
|
PrintErrorMessage(channelName, errorMsg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncChannel::ReportConnectionError(const char* channelName)
|
|
|
|
{
|
|
|
|
const char* errorMsg;
|
|
|
|
switch (mChannelState) {
|
|
|
|
case ChannelClosed:
|
|
|
|
errorMsg = "Closed channel: cannot send/recv";
|
|
|
|
break;
|
|
|
|
case ChannelOpening:
|
|
|
|
errorMsg = "Opening channel: not yet ready for send/recv";
|
|
|
|
break;
|
2010-02-10 00:02:54 +00:00
|
|
|
case ChannelTimeout:
|
|
|
|
errorMsg = "Channel timeout: cannot send/recv";
|
2009-10-27 21:32:55 +00:00
|
|
|
case ChannelError:
|
|
|
|
errorMsg = "Channel error: cannot send/recv";
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
NOTREACHED();
|
|
|
|
}
|
|
|
|
|
|
|
|
PrintErrorMessage(channelName, errorMsg);
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2009-12-03 08:16:28 +00:00
|
|
|
// The methods below run in the context of the IO thread
|
2009-07-13 21:55:04 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncChannel::OnMessageReceived(const Message& msg)
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertIOThread();
|
2009-08-25 23:07:22 +00:00
|
|
|
NS_ASSERTION(mChannelState != ChannelError, "Shouldn't get here!");
|
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
// wake up the worker, there's work to do
|
2009-10-09 06:21:39 +00:00
|
|
|
mWorkerLoop->PostTask(
|
|
|
|
FROM_HERE,
|
|
|
|
NewRunnableMethod(this, &AsyncChannel::OnDispatchMessage, msg));
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
void
|
|
|
|
AsyncChannel::OnChannelOpened()
|
|
|
|
{
|
|
|
|
AssertIOThread();
|
|
|
|
mChannelState = ChannelOpening;
|
|
|
|
/*assert*/mTransport->Connect();
|
|
|
|
}
|
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
void
|
|
|
|
AsyncChannel::OnChannelConnected(int32 peer_pid)
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertIOThread();
|
2009-09-01 16:27:09 +00:00
|
|
|
|
2009-10-09 06:21:39 +00:00
|
|
|
MutexAutoLock lock(mMutex);
|
2009-08-19 15:44:56 +00:00
|
|
|
mChannelState = ChannelConnected;
|
2009-09-01 16:27:09 +00:00
|
|
|
mCvar.Notify();
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncChannel::OnChannelError()
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertIOThread();
|
2009-10-09 06:21:39 +00:00
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
MutexAutoLock lock(mMutex);
|
2009-08-25 23:07:22 +00:00
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
// NB: this can race with the `Goodbye' event being processed by
|
|
|
|
// the worker thread
|
|
|
|
if (ChannelClosing != mChannelState)
|
|
|
|
mChannelState = ChannelError;
|
2009-07-13 21:55:04 +00:00
|
|
|
|
2009-12-18 00:12:03 +00:00
|
|
|
NS_ASSERTION(!mChannelErrorTask, "OnChannelError called twice?");
|
|
|
|
|
|
|
|
mChannelErrorTask =
|
|
|
|
NewRunnableMethod(this, &AsyncChannel::NotifyMaybeChannelError);
|
|
|
|
mWorkerLoop->PostTask(FROM_HERE, mChannelErrorTask);
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AsyncChannel::OnSend(Message* aMsg)
|
|
|
|
{
|
2009-10-08 19:11:13 +00:00
|
|
|
AssertIOThread();
|
2009-07-13 21:55:04 +00:00
|
|
|
mTransport->Send(aMsg);
|
2009-12-03 08:16:28 +00:00
|
|
|
// mTransport assumes ownership of aMsg
|
2009-07-13 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
2009-11-09 22:56:55 +00:00
|
|
|
void
|
2009-12-03 08:16:28 +00:00
|
|
|
AsyncChannel::OnCloseChannel()
|
2009-11-09 22:56:55 +00:00
|
|
|
{
|
|
|
|
AssertIOThread();
|
|
|
|
|
|
|
|
mTransport->Close();
|
|
|
|
|
2009-12-03 08:16:28 +00:00
|
|
|
MutexAutoLock lock(mMutex);
|
|
|
|
mChannelState = ChannelClosed;
|
|
|
|
mCvar.Notify();
|
2009-11-09 22:56:55 +00:00
|
|
|
}
|
|
|
|
|
2009-07-13 21:55:04 +00:00
|
|
|
|
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|