2009-06-30 11:51:05 -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-06-30 11:51:05 -07:00
|
|
|
|
|
|
|
#include "mozilla/plugins/PluginProcessParent.h"
|
|
|
|
|
|
|
|
#include "base/string_util.h"
|
2010-09-15 23:09:19 -07:00
|
|
|
#include "base/process_util.h"
|
|
|
|
|
2010-02-03 14:17:09 -08:00
|
|
|
#include "mozilla/ipc/BrowserProcessSubThread.h"
|
2010-04-14 00:04:52 -07:00
|
|
|
#include "mozilla/plugins/PluginMessageUtils.h"
|
|
|
|
|
|
|
|
using std::vector;
|
|
|
|
using std::string;
|
2009-07-10 12:03:09 -07:00
|
|
|
|
2009-11-09 14:56:55 -08:00
|
|
|
using mozilla::ipc::BrowserProcessSubThread;
|
2009-07-10 12:03:09 -07:00
|
|
|
using mozilla::ipc::GeckoChildProcessHost;
|
2009-11-09 14:56:55 -08:00
|
|
|
using mozilla::plugins::PluginProcessParent;
|
2010-09-15 23:09:19 -07:00
|
|
|
using base::ProcessArchitecture;
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-11-09 14:56:55 -08:00
|
|
|
template<>
|
|
|
|
struct RunnableMethodTraits<PluginProcessParent>
|
|
|
|
{
|
|
|
|
static void RetainCallee(PluginProcessParent* obj) { }
|
|
|
|
static void ReleaseCallee(PluginProcessParent* obj) { }
|
|
|
|
};
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-07-02 09:54:22 -07:00
|
|
|
PluginProcessParent::PluginProcessParent(const std::string& aPluginFilePath) :
|
2009-08-19 10:09:51 -07:00
|
|
|
GeckoChildProcessHost(GeckoProcessType_Plugin),
|
2009-07-02 09:54:22 -07:00
|
|
|
mPluginFilePath(aPluginFilePath)
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginProcessParent::~PluginProcessParent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2012-08-22 08:56:38 -07:00
|
|
|
PluginProcessParent::Launch(int32_t timeoutMs)
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
2010-09-15 23:09:19 -07:00
|
|
|
ProcessArchitecture currentArchitecture = base::GetCurrentProcessArchitecture();
|
2012-09-17 01:37:20 -07:00
|
|
|
uint32_t containerArchitectures = GetSupportedArchitecturesForProcessType(GeckoProcessType_Plugin);
|
2010-09-15 23:09:19 -07:00
|
|
|
|
2012-09-17 01:37:20 -07:00
|
|
|
uint32_t pluginLibArchitectures = currentArchitecture;
|
2010-09-15 23:09:19 -07:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
nsresult rv = GetArchitecturesForBinary(mPluginFilePath.c_str(), &pluginLibArchitectures);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// If the call failed just assume that we want the current architecture.
|
|
|
|
pluginLibArchitectures = currentArchitecture;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ProcessArchitecture selectedArchitecture = currentArchitecture;
|
|
|
|
if (!(pluginLibArchitectures & containerArchitectures & currentArchitecture)) {
|
|
|
|
// Prefererence in order: x86_64, i386, PPC. The only particularly important thing
|
|
|
|
// about this order is that we'll prefer 64-bit architectures first.
|
|
|
|
if (base::PROCESS_ARCH_X86_64 & pluginLibArchitectures & containerArchitectures) {
|
|
|
|
selectedArchitecture = base::PROCESS_ARCH_X86_64;
|
|
|
|
}
|
|
|
|
else if (base::PROCESS_ARCH_I386 & pluginLibArchitectures & containerArchitectures) {
|
|
|
|
selectedArchitecture = base::PROCESS_ARCH_I386;
|
|
|
|
}
|
|
|
|
else if (base::PROCESS_ARCH_PPC & pluginLibArchitectures & containerArchitectures) {
|
|
|
|
selectedArchitecture = base::PROCESS_ARCH_PPC;
|
|
|
|
}
|
|
|
|
else if (base::PROCESS_ARCH_ARM & pluginLibArchitectures & containerArchitectures) {
|
|
|
|
selectedArchitecture = base::PROCESS_ARCH_ARM;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-14 00:04:52 -07:00
|
|
|
vector<string> args;
|
|
|
|
args.push_back(MungePluginDsoPath(mPluginFilePath));
|
2010-09-15 23:09:19 -07:00
|
|
|
return SyncLaunch(args, timeoutMs, selectedArchitecture);
|
2009-06-30 11:51:05 -07:00
|
|
|
}
|
|
|
|
|
2009-11-09 14:56:55 -08:00
|
|
|
void
|
|
|
|
PluginProcessParent::Delete()
|
|
|
|
{
|
|
|
|
MessageLoop* currentLoop = MessageLoop::current();
|
2010-04-20 11:43:51 -07:00
|
|
|
MessageLoop* ioLoop = XRE_GetIOMessageLoop();
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-11-09 14:56:55 -08:00
|
|
|
if (currentLoop == ioLoop) {
|
|
|
|
delete this;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ioLoop->PostTask(FROM_HERE,
|
|
|
|
NewRunnableMethod(this, &PluginProcessParent::Delete));
|
|
|
|
}
|