2010-06-25 08:00:35 -07:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
|
|
|
|
/* ***** 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 Firefox.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* the Mozilla Foundation <http://www.mozilla.org>.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2010
|
|
|
|
* 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/jetpack/JetpackParent.h"
|
2010-06-25 08:00:37 -07:00
|
|
|
#include "mozilla/jetpack/Handle.h"
|
|
|
|
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsIVariant.h"
|
|
|
|
#include "nsIXPConnect.h"
|
2010-06-25 08:00:35 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace jetpack {
|
|
|
|
|
2010-06-25 08:00:37 -07:00
|
|
|
JetpackParent::JetpackParent(JSContext* cx)
|
2010-06-25 08:00:35 -07:00
|
|
|
: mSubprocess(new JetpackProcessParent())
|
2010-06-25 08:00:37 -07:00
|
|
|
, mContext(cx)
|
2010-06-25 08:00:35 -07:00
|
|
|
{
|
|
|
|
mSubprocess->Launch();
|
|
|
|
Open(mSubprocess->GetChannel(),
|
|
|
|
mSubprocess->GetChildProcessHandle());
|
|
|
|
}
|
|
|
|
|
|
|
|
JetpackParent::~JetpackParent()
|
|
|
|
{
|
|
|
|
XRE_GetIOMessageLoop()
|
|
|
|
->PostTask(FROM_HERE, new DeleteTask<JetpackProcessParent>(mSubprocess));
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(JetpackParent, nsIJetpack)
|
|
|
|
|
2010-06-25 08:00:37 -07:00
|
|
|
static nsresult
|
|
|
|
ReadFromURI(const nsAString& aURI,
|
|
|
|
nsCString* content)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIURI> uri;
|
|
|
|
nsresult rv = NS_NewURI(getter_AddRefs(uri),
|
|
|
|
NS_ConvertUTF16toUTF8(aURI));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIChannel> channel;
|
|
|
|
NS_NewChannel(getter_AddRefs(channel), uri);
|
|
|
|
NS_ENSURE_TRUE(channel, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIInputStream> input;
|
|
|
|
rv = channel->Open(getter_AddRefs(input));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_ASSERTION(input, "Channel opened successfully but stream was null?");
|
|
|
|
|
|
|
|
char buffer[256];
|
|
|
|
PRUint32 avail = 0;
|
|
|
|
input->Available(&avail);
|
|
|
|
if (avail) {
|
|
|
|
PRUint32 read = 0;
|
|
|
|
while (NS_SUCCEEDED(input->Read(buffer, sizeof(buffer), &read)) && read) {
|
|
|
|
content->Append(buffer, read);
|
|
|
|
read = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-25 08:00:35 -07:00
|
|
|
NS_IMETHODIMP
|
2010-06-25 08:00:37 -07:00
|
|
|
JetpackParent::SendMessage(const nsAString& aMessageName)
|
2010-06-25 08:00:35 -07:00
|
|
|
{
|
2010-06-25 08:00:37 -07:00
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIXPConnect> xpc(do_GetService(nsIXPConnect::GetCID(), &rv));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsAXPCNativeCallContext* ncc = NULL;
|
|
|
|
rv = xpc->GetCurrentNativeCallContext(&ncc);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
JSContext* cx;
|
|
|
|
rv = ncc->GetJSContext(&cx);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 argc;
|
|
|
|
rv = ncc->GetArgc(&argc);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
jsval* argv;
|
|
|
|
rv = ncc->GetArgvPtr(&argv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsTArray<Variant> data;
|
|
|
|
NS_ENSURE_TRUE(data.SetCapacity(argc), NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
JSAutoRequest request(cx);
|
|
|
|
|
|
|
|
for (PRUint32 i = 1; i < argc; ++i)
|
|
|
|
if (!jsval_to_Variant(cx, argv[i], data.AppendElement()))
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
|
|
|
|
if (!SendSendMessage(nsString(aMessageName), data))
|
2010-06-25 08:00:35 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-25 08:00:37 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
JetpackParent::RegisterReceiver(const nsAString& aMessageName,
|
|
|
|
jsval aReceiver)
|
|
|
|
{
|
|
|
|
return JetpackActorCommon::RegisterReceiver(mContext,
|
|
|
|
nsString(aMessageName),
|
|
|
|
aReceiver);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
JetpackParent::UnregisterReceiver(const nsAString& aMessageName,
|
|
|
|
jsval aReceiver)
|
|
|
|
{
|
|
|
|
JetpackActorCommon::UnregisterReceiver(nsString(aMessageName),
|
|
|
|
aReceiver);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
JetpackParent::UnregisterReceivers(const nsAString& aMessageName)
|
|
|
|
{
|
|
|
|
JetpackActorCommon::UnregisterReceivers(nsString(aMessageName));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
JetpackParent::LoadImplementation(const nsAString& aURI)
|
|
|
|
{
|
|
|
|
nsCString code;
|
|
|
|
nsresult rv = ReadFromURI(aURI, &code);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!code.IsEmpty() &&
|
|
|
|
!SendLoadImplementation(code))
|
|
|
|
rv = NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
JetpackParent::LoadUserScript(const nsAString& aURI)
|
|
|
|
{
|
|
|
|
nsCString code;
|
|
|
|
nsresult rv = ReadFromURI(aURI, &code);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!code.IsEmpty() &&
|
|
|
|
!SendLoadUserScript(code))
|
|
|
|
rv = NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
JetpackParent::RecvSendMessage(const nsString& messageName,
|
|
|
|
const nsTArray<Variant>& data)
|
|
|
|
{
|
|
|
|
JSAutoRequest request(mContext);
|
|
|
|
return JetpackActorCommon::RecvMessage(mContext, messageName, data, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
JetpackParent::RecvCallMessage(const nsString& messageName,
|
|
|
|
const nsTArray<Variant>& data,
|
|
|
|
nsTArray<Variant>* results)
|
|
|
|
{
|
|
|
|
JSAutoRequest request(mContext);
|
|
|
|
return JetpackActorCommon::RecvMessage(mContext, messageName, data, results);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
JetpackParent::CreateHandle(nsIVariant** aResult)
|
|
|
|
{
|
|
|
|
HandleParent* handle =
|
|
|
|
static_cast<HandleParent*>(SendPHandleConstructor());
|
|
|
|
NS_ENSURE_TRUE(handle, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIXPConnect> xpc(do_GetService(nsIXPConnect::GetCID(), &rv));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
JSAutoRequest request(mContext);
|
|
|
|
|
|
|
|
JSObject* hobj = handle->ToJSObject(mContext);
|
|
|
|
if (!hobj)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return xpc->JSToVariant(mContext, OBJECT_TO_JSVAL(hobj), aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
PHandleParent*
|
|
|
|
JetpackParent::AllocPHandle()
|
|
|
|
{
|
|
|
|
return new HandleParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
JetpackParent::DeallocPHandle(PHandleParent* actor)
|
|
|
|
{
|
|
|
|
delete actor;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-06-25 08:00:35 -07:00
|
|
|
} // namespace jetpack
|
|
|
|
} // namespace mozilla
|