2012-05-21 11:12:37 +00: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-11 06:33:10 +00:00
|
|
|
|
|
|
|
#include "TestShellChild.h"
|
|
|
|
|
|
|
|
using mozilla::ipc::TestShellChild;
|
2009-09-09 22:59:06 +00:00
|
|
|
using mozilla::ipc::PTestShellCommandChild;
|
2009-07-11 06:33:10 +00:00
|
|
|
using mozilla::ipc::XPCShellEnvironment;
|
|
|
|
|
|
|
|
TestShellChild::TestShellChild()
|
2009-08-28 23:16:19 +00:00
|
|
|
: mXPCShell(XPCShellEnvironment::CreateEnvironment())
|
2009-07-11 06:33:10 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-08-25 23:07:22 +00:00
|
|
|
TestShellChild::RecvExecuteCommand(const nsString& aCommand)
|
2009-07-11 06:33:10 +00:00
|
|
|
{
|
2009-07-23 22:27:17 +00:00
|
|
|
if (mXPCShell->IsQuitting()) {
|
|
|
|
NS_WARNING("Commands sent after quit command issued!");
|
2009-09-17 23:09:20 +00:00
|
|
|
return false;
|
2009-07-23 22:27:17 +00:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
return mXPCShell->EvaluateString(aCommand);
|
2009-07-23 22:27:17 +00:00
|
|
|
}
|
2009-07-11 06:33:10 +00:00
|
|
|
|
2009-09-09 22:59:06 +00:00
|
|
|
PTestShellCommandChild*
|
2013-07-08 15:48:39 +00:00
|
|
|
TestShellChild::AllocPTestShellCommandChild(const nsString& aCommand)
|
2009-08-25 23:07:22 +00:00
|
|
|
{
|
2009-09-09 22:59:06 +00:00
|
|
|
return new PTestShellCommandChild();
|
2009-08-25 23:07:22 +00:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2013-07-08 15:48:39 +00:00
|
|
|
TestShellChild::DeallocPTestShellCommandChild(PTestShellCommandChild* aCommand)
|
2009-07-23 22:27:17 +00:00
|
|
|
{
|
2009-08-25 23:07:22 +00:00
|
|
|
delete aCommand;
|
2009-09-17 23:09:20 +00:00
|
|
|
return true;
|
2009-08-25 23:07:22 +00:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:09:20 +00:00
|
|
|
bool
|
2009-09-09 22:59:06 +00:00
|
|
|
TestShellChild::RecvPTestShellCommandConstructor(PTestShellCommandChild* aActor,
|
2009-09-09 22:00:14 +00:00
|
|
|
const nsString& aCommand)
|
2009-08-25 23:07:22 +00:00
|
|
|
{
|
2009-07-11 06:33:10 +00:00
|
|
|
if (mXPCShell->IsQuitting()) {
|
2009-07-23 22:27:17 +00:00
|
|
|
NS_WARNING("Commands sent after quit command issued!");
|
2009-09-17 23:09:20 +00:00
|
|
|
return false;
|
2009-07-11 06:33:10 +00:00
|
|
|
}
|
|
|
|
|
2009-08-25 23:07:22 +00:00
|
|
|
nsString response;
|
|
|
|
if (!mXPCShell->EvaluateString(aCommand, &response)) {
|
2009-09-17 23:09:20 +00:00
|
|
|
return false;
|
2009-08-25 23:07:22 +00:00
|
|
|
}
|
|
|
|
|
2009-12-03 08:16:14 +00:00
|
|
|
return PTestShellCommandChild::Send__delete__(aActor, response);
|
2009-07-11 06:33:10 +00:00
|
|
|
}
|
2009-11-06 20:43:39 +00:00
|
|
|
|