2009-08-18 12:05:15 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
|
|
|
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-08-18 12:05:15 -07:00
|
|
|
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
#include "nsHttp.h"
|
2009-08-18 12:05:15 -07:00
|
|
|
#include "mozilla/net/NeckoChild.h"
|
2010-07-19 11:33:33 -07:00
|
|
|
#include "mozilla/dom/ContentChild.h"
|
2009-08-18 12:05:15 -07:00
|
|
|
#include "mozilla/net/HttpChannelChild.h"
|
2010-03-25 16:02:28 -07:00
|
|
|
#include "mozilla/net/CookieServiceChild.h"
|
2010-10-11 04:35:10 -07:00
|
|
|
#include "mozilla/net/WyciwygChannelChild.h"
|
2010-08-10 11:47:00 -07:00
|
|
|
#include "mozilla/net/FTPChannelChild.h"
|
2011-05-04 06:36:23 -07:00
|
|
|
#include "mozilla/net/WebSocketChannelChild.h"
|
2012-12-22 05:56:21 -08:00
|
|
|
#include "mozilla/net/RemoteOpenFileChild.h"
|
2012-09-24 11:53:49 -07:00
|
|
|
#include "mozilla/dom/network/TCPSocketChild.h"
|
|
|
|
|
|
|
|
using mozilla::dom::TCPSocketChild;
|
2009-08-18 12:05:15 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
PNeckoChild *gNeckoChild = nullptr;
|
2009-08-18 12:05:15 -07:00
|
|
|
|
|
|
|
// C++ file contents
|
|
|
|
NeckoChild::NeckoChild()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NeckoChild::~NeckoChild()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void NeckoChild::InitNeckoChild()
|
|
|
|
{
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
NS_ABORT_IF_FALSE(IsNeckoChild(), "InitNeckoChild called by non-child!");
|
|
|
|
|
|
|
|
if (!gNeckoChild) {
|
2010-07-19 11:33:33 -07:00
|
|
|
mozilla::dom::ContentChild * cpc =
|
|
|
|
mozilla::dom::ContentChild::GetSingleton();
|
2009-08-18 12:05:15 -07:00
|
|
|
NS_ASSERTION(cpc, "Content Protocol is NULL!");
|
|
|
|
gNeckoChild = cpc->SendPNeckoConstructor();
|
|
|
|
NS_ASSERTION(gNeckoChild, "PNecko Protocol init failed!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
// Note: not actually called; has some lifespan as child process, so
|
|
|
|
// automatically destroyed at exit.
|
|
|
|
void NeckoChild::DestroyNeckoChild()
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(IsNeckoChild(), "DestroyNeckoChild called by non-child!");
|
|
|
|
static bool alreadyDestroyed = false;
|
|
|
|
NS_ABORT_IF_FALSE(!alreadyDestroyed, "DestroyNeckoChild already called!");
|
|
|
|
|
|
|
|
if (!alreadyDestroyed) {
|
|
|
|
Send__delete__(gNeckoChild);
|
2012-07-30 07:20:58 -07:00
|
|
|
gNeckoChild = nullptr;
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
alreadyDestroyed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-09 16:46:24 -07:00
|
|
|
PHttpChannelChild*
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::AllocPHttpChannelChild(PBrowserChild* browser,
|
|
|
|
const SerializedLoadContext& loadContext,
|
|
|
|
const HttpChannelCreationArgs& aOpenArgs)
|
2009-08-18 12:05:15 -07:00
|
|
|
{
|
2012-10-09 16:46:24 -07:00
|
|
|
// We don't allocate here: instead we always use IPDL constructor that takes
|
|
|
|
// an existing HttpChildChannel
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_NOTREACHED("AllocPHttpChannelChild should not be called on child");
|
2012-10-09 16:46:24 -07:00
|
|
|
return nullptr;
|
2009-08-18 12:05:15 -07:00
|
|
|
}
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::DeallocPHttpChannelChild(PHttpChannelChild* channel)
|
2009-08-18 12:05:15 -07:00
|
|
|
{
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_ABORT_IF_FALSE(IsNeckoChild(), "DeallocPHttpChannelChild called by non-child!");
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 11:55:33 -07:00
|
|
|
|
2010-06-27 09:44:15 -07:00
|
|
|
HttpChannelChild* child = static_cast<HttpChannelChild*>(channel);
|
|
|
|
child->ReleaseIPDLReference();
|
2009-09-17 16:09:20 -07:00
|
|
|
return true;
|
2009-08-18 12:05:15 -07:00
|
|
|
}
|
|
|
|
|
2010-08-10 11:47:00 -07:00
|
|
|
PFTPChannelChild*
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::AllocPFTPChannelChild(PBrowserChild* aBrowser,
|
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const FTPChannelCreationArgs& aOpenArgs)
|
2010-08-10 11:47:00 -07:00
|
|
|
{
|
|
|
|
// We don't allocate here: see FTPChannelChild::AsyncOpen()
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_RUNTIMEABORT("AllocPFTPChannelChild should not be called");
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2010-08-10 11:47:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::DeallocPFTPChannelChild(PFTPChannelChild* channel)
|
2010-08-10 11:47:00 -07:00
|
|
|
{
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_ABORT_IF_FALSE(IsNeckoChild(), "DeallocPFTPChannelChild called by non-child!");
|
2010-08-10 11:47:00 -07:00
|
|
|
|
|
|
|
FTPChannelChild* child = static_cast<FTPChannelChild*>(channel);
|
|
|
|
child->ReleaseIPDLReference();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-07-08 08:48:39 -07:00
|
|
|
PCookieServiceChild*
|
|
|
|
NeckoChild::AllocPCookieServiceChild()
|
2010-03-25 16:02:28 -07:00
|
|
|
{
|
|
|
|
// We don't allocate here: see nsCookieService::GetSingleton()
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_NOTREACHED("AllocPCookieServiceChild should not be called");
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2010-03-25 16:02:28 -07:00
|
|
|
}
|
|
|
|
|
2013-07-08 08:48:39 -07:00
|
|
|
bool
|
|
|
|
NeckoChild::DeallocPCookieServiceChild(PCookieServiceChild* cs)
|
2010-03-25 16:02:28 -07:00
|
|
|
{
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_ASSERTION(IsNeckoChild(), "DeallocPCookieServiceChild called by non-child!");
|
2010-03-25 16:02:28 -07:00
|
|
|
|
|
|
|
CookieServiceChild *p = static_cast<CookieServiceChild*>(cs);
|
|
|
|
p->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-10-11 04:35:10 -07:00
|
|
|
PWyciwygChannelChild*
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::AllocPWyciwygChannelChild()
|
2010-10-11 04:35:10 -07:00
|
|
|
{
|
|
|
|
WyciwygChannelChild *p = new WyciwygChannelChild();
|
|
|
|
p->AddIPDLReference();
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::DeallocPWyciwygChannelChild(PWyciwygChannelChild* channel)
|
2010-10-11 04:35:10 -07:00
|
|
|
{
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_ABORT_IF_FALSE(IsNeckoChild(), "DeallocPWyciwygChannelChild called by non-child!");
|
2010-10-11 04:35:10 -07:00
|
|
|
|
|
|
|
WyciwygChannelChild *p = static_cast<WyciwygChannelChild*>(channel);
|
|
|
|
p->ReleaseIPDLReference();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-05-04 06:36:23 -07:00
|
|
|
PWebSocketChild*
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::AllocPWebSocketChild(PBrowserChild* browser,
|
|
|
|
const SerializedLoadContext& aSerialized)
|
2011-05-04 06:36:23 -07:00
|
|
|
{
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_NOTREACHED("AllocPWebSocketChild should not be called");
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2011-05-04 06:36:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::DeallocPWebSocketChild(PWebSocketChild* child)
|
2011-05-04 06:36:23 -07:00
|
|
|
{
|
|
|
|
WebSocketChannelChild* p = static_cast<WebSocketChannelChild*>(child);
|
|
|
|
p->ReleaseIPDLReference();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-24 11:53:49 -07:00
|
|
|
PTCPSocketChild*
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::AllocPTCPSocketChild(const nsString& aHost,
|
|
|
|
const uint16_t& aPort,
|
|
|
|
const bool& useSSL,
|
|
|
|
const nsString& aBinaryType,
|
|
|
|
PBrowserChild* aBrowser)
|
2012-09-24 11:53:49 -07:00
|
|
|
{
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_NOTREACHED("AllocPTCPSocketChild should not be called");
|
2012-09-24 11:53:49 -07:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::DeallocPTCPSocketChild(PTCPSocketChild* child)
|
2012-09-24 11:53:49 -07:00
|
|
|
{
|
|
|
|
TCPSocketChild* p = static_cast<TCPSocketChild*>(child);
|
|
|
|
p->ReleaseIPDLReference();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-12-22 05:56:21 -08:00
|
|
|
PRemoteOpenFileChild*
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::AllocPRemoteOpenFileChild(const URIParams&, PBrowserChild*)
|
2012-12-22 05:56:21 -08:00
|
|
|
{
|
|
|
|
// We don't allocate here: instead we always use IPDL constructor that takes
|
|
|
|
// an existing RemoteOpenFileChild
|
2013-07-08 08:48:39 -07:00
|
|
|
NS_NOTREACHED("AllocPRemoteOpenFileChild should not be called on child");
|
2012-12-22 05:56:21 -08:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 08:48:39 -07:00
|
|
|
NeckoChild::DeallocPRemoteOpenFileChild(PRemoteOpenFileChild* aChild)
|
2012-12-22 05:56:21 -08:00
|
|
|
{
|
|
|
|
RemoteOpenFileChild *p = static_cast<RemoteOpenFileChild*>(aChild);
|
|
|
|
p->ReleaseIPDLReference();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-08-18 12:05:15 -07:00
|
|
|
}} // mozilla::net
|
|
|
|
|