2010-10-03 23:04:50 +02:00
|
|
|
// Copyright (c) 2010 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that can
|
|
|
|
// be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "cef_context.h"
|
|
|
|
#include "browser_impl.h"
|
|
|
|
#include "browser_webkit_glue.h"
|
|
|
|
#include "cef_thread.h"
|
|
|
|
#include "cef_process.h"
|
|
|
|
#include "../include/cef_nplugin.h"
|
|
|
|
|
|
|
|
#include "base/file_util.h"
|
|
|
|
#if defined(OS_MACOSX) || defined(OS_WIN)
|
|
|
|
#include "base/nss_util.h"
|
|
|
|
#endif
|
2011-01-07 22:34:20 +01:00
|
|
|
#include "webkit/plugins/npapi/plugin_list.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
// Global CefContext pointer
|
|
|
|
CefRefPtr<CefContext> _Context;
|
|
|
|
|
2010-11-18 22:05:25 +01:00
|
|
|
bool CefInitialize(const CefSettings& settings,
|
|
|
|
const CefBrowserSettings& browser_defaults)
|
2010-10-03 23:04:50 +02:00
|
|
|
{
|
2011-01-07 02:06:10 +01:00
|
|
|
// Return true if the global context already exists.
|
2010-10-03 23:04:50 +02:00
|
|
|
if(_Context.get())
|
|
|
|
return true;
|
|
|
|
|
2010-11-18 22:05:25 +01:00
|
|
|
if(settings.size != sizeof(cef_settings_t) ||
|
|
|
|
browser_defaults.size != sizeof(cef_browser_settings_t)) {
|
|
|
|
NOTREACHED();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-01-07 02:06:10 +01:00
|
|
|
// Create the new global context object.
|
2010-10-03 23:04:50 +02:00
|
|
|
_Context = new CefContext();
|
2010-11-18 15:47:38 +01:00
|
|
|
|
2011-01-07 02:06:10 +01:00
|
|
|
// Initialize the global context.
|
2010-11-18 22:05:25 +01:00
|
|
|
return _Context->Initialize(settings, browser_defaults);
|
2010-10-03 23:04:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefShutdown()
|
|
|
|
{
|
2011-01-07 02:06:10 +01:00
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED();
|
2010-10-03 23:04:50 +02:00
|
|
|
return;
|
2011-01-07 02:06:10 +01:00
|
|
|
}
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2011-01-07 02:06:10 +01:00
|
|
|
// Must always be called on the same thread as Initialize.
|
|
|
|
if(!_Context->process()->CalledOnValidThread()) {
|
|
|
|
NOTREACHED();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shut down the global context. This will block until shutdown is complete.
|
2010-10-03 23:04:50 +02:00
|
|
|
_Context->Shutdown();
|
2011-01-07 02:06:10 +01:00
|
|
|
|
|
|
|
// Delete the global context object.
|
2010-10-03 23:04:50 +02:00
|
|
|
_Context = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefDoMessageLoopWork()
|
|
|
|
{
|
2011-01-07 02:06:10 +01:00
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED();
|
2010-10-03 23:04:50 +02:00
|
|
|
return;
|
2011-01-07 02:06:10 +01:00
|
|
|
}
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2011-01-07 02:06:10 +01:00
|
|
|
// Must always be called on the same thread as Initialize.
|
|
|
|
if(!_Context->process()->CalledOnValidThread()) {
|
|
|
|
NOTREACHED();
|
2010-10-03 23:04:50 +02:00
|
|
|
return;
|
2011-01-07 02:06:10 +01:00
|
|
|
}
|
|
|
|
|
2010-10-03 23:04:50 +02:00
|
|
|
_Context->process()->DoMessageLoopIteration();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void UIT_RegisterPlugin(struct CefPluginInfo* plugin_info)
|
|
|
|
{
|
|
|
|
REQUIRE_UIT();
|
|
|
|
|
2011-01-07 22:34:20 +01:00
|
|
|
webkit::npapi::PluginVersionInfo info;
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
info.path = FilePath(plugin_info->unique_name);
|
|
|
|
info.product_name = plugin_info->display_name;
|
|
|
|
info.file_description = plugin_info->description;
|
|
|
|
info.file_version =plugin_info->version;
|
|
|
|
|
|
|
|
for(size_t i = 0; i < plugin_info->mime_types.size(); ++i) {
|
|
|
|
if(i > 0) {
|
|
|
|
info.mime_types += L"|";
|
|
|
|
info.file_extensions += L"|";
|
|
|
|
info.type_descriptions += L"|";
|
|
|
|
}
|
|
|
|
|
|
|
|
info.mime_types += plugin_info->mime_types[i].mime_type;
|
|
|
|
info.type_descriptions += plugin_info->mime_types[i].description;
|
|
|
|
|
|
|
|
for(size_t j = 0;
|
|
|
|
j < plugin_info->mime_types[i].file_extensions.size(); ++j) {
|
|
|
|
if(j > 0) {
|
|
|
|
info.file_extensions += L",";
|
|
|
|
}
|
|
|
|
info.file_extensions += plugin_info->mime_types[i].file_extensions[j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-07 02:30:26 +01:00
|
|
|
#if !defined(OS_POSIX) || defined(OS_MACOSX)
|
2010-10-03 23:04:50 +02:00
|
|
|
info.entry_points.np_getentrypoints = plugin_info->np_getentrypoints;
|
2010-12-07 02:30:26 +01:00
|
|
|
#endif
|
2010-10-03 23:04:50 +02:00
|
|
|
info.entry_points.np_initialize = plugin_info->np_initialize;
|
|
|
|
info.entry_points.np_shutdown = plugin_info->np_shutdown;
|
|
|
|
|
2011-01-07 22:34:20 +01:00
|
|
|
webkit::npapi::PluginList::Singleton()->RegisterInternalPlugin(info);
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
delete plugin_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefRegisterPlugin(const struct CefPluginInfo& plugin_info)
|
|
|
|
{
|
2011-01-07 02:06:10 +01:00
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED();
|
2010-10-03 23:04:50 +02:00
|
|
|
return false;
|
2011-01-07 02:06:10 +01:00
|
|
|
}
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
CefPluginInfo* pPluginInfo = new CefPluginInfo;
|
|
|
|
*pPluginInfo = plugin_info;
|
|
|
|
|
|
|
|
CefThread::PostTask(CefThread::UI, FROM_HERE,
|
|
|
|
NewRunnableFunction(UIT_RegisterPlugin, pPluginInfo));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int GetThreadId(CefThreadId threadId)
|
|
|
|
{
|
|
|
|
switch(threadId) {
|
|
|
|
case TID_UI: return CefThread::UI;
|
|
|
|
case TID_IO: return CefThread::IO;
|
|
|
|
case TID_FILE: return CefThread::FILE;
|
|
|
|
};
|
|
|
|
NOTREACHED();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefCurrentlyOn(CefThreadId threadId)
|
|
|
|
{
|
|
|
|
int id = GetThreadId(threadId);
|
|
|
|
if(id < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return CefThread::CurrentlyOn(static_cast<CefThread::ID>(id));
|
|
|
|
}
|
|
|
|
|
|
|
|
class CefTaskHelper : public base::RefCountedThreadSafe<CefTaskHelper>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CefTaskHelper(CefRefPtr<CefTask> task) : task_(task) {}
|
|
|
|
void Execute(CefThreadId threadId) { task_->Execute(threadId); }
|
|
|
|
private:
|
|
|
|
CefRefPtr<CefTask> task_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefTaskHelper);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool CefPostTask(CefThreadId threadId, CefRefPtr<CefTask> task)
|
|
|
|
{
|
|
|
|
int id = GetThreadId(threadId);
|
|
|
|
if(id < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
scoped_refptr<CefTaskHelper> helper(new CefTaskHelper(task));
|
|
|
|
return CefThread::PostTask(static_cast<CefThread::ID>(id), FROM_HERE,
|
|
|
|
NewRunnableMethod(helper.get(), &CefTaskHelper::Execute, threadId));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefPostDelayedTask(CefThreadId threadId, CefRefPtr<CefTask> task,
|
|
|
|
long delay_ms)
|
|
|
|
{
|
|
|
|
int id = GetThreadId(threadId);
|
|
|
|
if(id < 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
scoped_refptr<CefTaskHelper> helper(new CefTaskHelper(task));
|
|
|
|
return CefThread::PostDelayedTask(static_cast<CefThread::ID>(id), FROM_HERE,
|
|
|
|
NewRunnableMethod(helper.get(), &CefTaskHelper::Execute, threadId),
|
|
|
|
delay_ms);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CefContext
|
|
|
|
|
2011-01-07 02:06:10 +01:00
|
|
|
CefContext::CefContext() : initialized_(false), shutting_down_(false)
|
2010-10-03 23:04:50 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
CefContext::~CefContext()
|
|
|
|
{
|
2011-01-07 02:06:10 +01:00
|
|
|
if(!shutting_down_)
|
|
|
|
Shutdown();
|
2010-10-03 23:04:50 +02:00
|
|
|
}
|
|
|
|
|
2010-11-18 22:05:25 +01:00
|
|
|
bool CefContext::Initialize(const CefSettings& settings,
|
|
|
|
const CefBrowserSettings& browser_defaults)
|
2010-10-03 23:04:50 +02:00
|
|
|
{
|
2010-11-18 22:05:25 +01:00
|
|
|
settings_ = settings;
|
|
|
|
browser_defaults_ = browser_defaults;
|
|
|
|
|
2010-11-22 18:49:46 +01:00
|
|
|
cache_path_ = FilePath(CefString(&settings.cache_path));
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX) || defined(OS_WIN)
|
|
|
|
// We want to be sure to init NSPR on the main thread.
|
|
|
|
base::EnsureNSPRInit();
|
|
|
|
#endif
|
|
|
|
|
2010-11-18 22:05:25 +01:00
|
|
|
process_ = new CefProcess(settings_.multi_threaded_message_loop);
|
2010-10-03 23:04:50 +02:00
|
|
|
process_->CreateChildThreads();
|
|
|
|
|
2011-01-07 02:06:10 +01:00
|
|
|
initialized_ = true;
|
|
|
|
|
2010-10-03 23:04:50 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefContext::Shutdown()
|
|
|
|
{
|
2011-01-07 02:06:10 +01:00
|
|
|
// Must always be called on the same thread as Initialize.
|
|
|
|
DCHECK(process_->CalledOnValidThread());
|
|
|
|
|
|
|
|
shutting_down_ = true;
|
|
|
|
|
|
|
|
if(settings_.multi_threaded_message_loop) {
|
|
|
|
// Event that will be used to signal when shutdown is complete. Start in
|
|
|
|
// non-signaled mode so that the event will block.
|
|
|
|
base::WaitableEvent event(false, false);
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2011-01-07 02:06:10 +01:00
|
|
|
// Finish shutdown on the UI thread.
|
|
|
|
CefThread::PostTask(CefThread::UI, FROM_HERE,
|
|
|
|
NewRunnableMethod(this, &CefContext::UIT_FinishShutdown, &event));
|
|
|
|
|
|
|
|
// Block until shutdown is complete.
|
|
|
|
event.Wait();
|
|
|
|
} else {
|
|
|
|
// Finish shutdown on the current thread, which should be the UI thread.
|
|
|
|
UIT_FinishShutdown(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the process to destroy the child threads.
|
2010-10-03 23:04:50 +02:00
|
|
|
process_ = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefContext::AddBrowser(CefRefPtr<CefBrowserImpl> browser)
|
|
|
|
{
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
Lock();
|
|
|
|
|
|
|
|
// check that the browser isn't already in the list before adding
|
|
|
|
BrowserList::const_iterator it = browserlist_.begin();
|
|
|
|
for(; it != browserlist_.end(); ++it) {
|
|
|
|
if(it->get() == browser.get()) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!found)
|
|
|
|
{
|
|
|
|
browser->UIT_SetUniqueID(next_browser_id_++);
|
|
|
|
browserlist_.push_back(browser);
|
|
|
|
}
|
|
|
|
|
|
|
|
Unlock();
|
|
|
|
return !found;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefContext::RemoveBrowser(CefRefPtr<CefBrowserImpl> browser)
|
|
|
|
{
|
|
|
|
bool deleted = false;
|
|
|
|
bool empty = false;
|
|
|
|
|
|
|
|
Lock();
|
|
|
|
|
|
|
|
BrowserList::iterator it = browserlist_.begin();
|
|
|
|
for(; it != browserlist_.end(); ++it) {
|
|
|
|
if(it->get() == browser.get()) {
|
|
|
|
browserlist_.erase(it);
|
|
|
|
deleted = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (browserlist_.empty()) {
|
|
|
|
next_browser_id_ = 1;
|
|
|
|
empty = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
Unlock();
|
|
|
|
|
|
|
|
if (empty) {
|
|
|
|
CefThread::PostTask(CefThread::UI, FROM_HERE,
|
|
|
|
NewRunnableFunction(webkit_glue::ClearCache));
|
|
|
|
}
|
|
|
|
|
|
|
|
return deleted;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefBrowserImpl> CefContext::GetBrowserByID(int id)
|
|
|
|
{
|
|
|
|
CefRefPtr<CefBrowserImpl> browser;
|
|
|
|
Lock();
|
|
|
|
|
|
|
|
BrowserList::const_iterator it = browserlist_.begin();
|
|
|
|
for(; it != browserlist_.end(); ++it) {
|
|
|
|
if(it->get()->UIT_GetUniqueID() == id) {
|
|
|
|
browser = it->get();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Unlock();
|
|
|
|
|
|
|
|
return browser;
|
|
|
|
}
|
2011-01-07 02:06:10 +01:00
|
|
|
|
|
|
|
void CefContext::UIT_FinishShutdown(base::WaitableEvent* event)
|
|
|
|
{
|
|
|
|
DCHECK(CefThread::CurrentlyOn(CefThread::UI));
|
|
|
|
|
|
|
|
BrowserList list;
|
|
|
|
|
|
|
|
Lock();
|
|
|
|
if (!browserlist_.empty()) {
|
|
|
|
list = browserlist_;
|
|
|
|
browserlist_.clear();
|
|
|
|
}
|
|
|
|
Unlock();
|
|
|
|
|
|
|
|
// Destroy any remaining browser windows.
|
|
|
|
if (!list.empty()) {
|
|
|
|
BrowserList::iterator it = list.begin();
|
|
|
|
for(; it != list.end(); ++it)
|
|
|
|
(*it)->UIT_DestroyBrowser();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(event)
|
|
|
|
event->Signal();
|
|
|
|
}
|