mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef:
- Add support for embedded netscape-style plugins. - Add new webkit_glue VisitedLinkHash() and IsLinkVisited() functions required by underlying chromium changes. cefclient: - Add sample netscape-style plugin implementation and related Plugin item on the Tests menu. - Increase the speed of the update timer so that buttons refresh closer to real-time. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@5 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
512
libcef/plugins/browser_plugin_instance.cc
Normal file
512
libcef/plugins/browser_plugin_instance.cc
Normal file
@ -0,0 +1,512 @@
|
||||
// Copyright (c) 2008 The Chromium Embedded Framework Authors.
|
||||
// Portions copyright (c) 2006-2008 The Chromium 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 "precompiled_libcef.h"
|
||||
#include "browser_plugin_instance.h"
|
||||
#include "browser_plugin_lib.h"
|
||||
#include "browser_plugin_stream_url.h"
|
||||
#include "browser_plugin_string_stream.h"
|
||||
#if defined(OS_WIN)
|
||||
#include "browser_mozilla_extensions.h"
|
||||
#endif
|
||||
|
||||
#include "base/file_util.h"
|
||||
#include "base/message_loop.h"
|
||||
#include "base/string_util.h"
|
||||
#include "base/thread_local_storage.h"
|
||||
#include "webkit/glue/glue_util.h"
|
||||
#include "webkit/glue/webplugin.h"
|
||||
#include "webkit/glue/webkit_glue.h"
|
||||
#include "webkit/glue/plugins/plugin_host.h"
|
||||
#include "net/base/escape.h"
|
||||
|
||||
namespace NPAPI
|
||||
{
|
||||
|
||||
// TODO(evanm): don't rely on static initialization.
|
||||
ThreadLocalStorage::Slot BrowserPluginInstance::plugin_instance_tls_index_;
|
||||
|
||||
BrowserPluginInstance::BrowserPluginInstance(BrowserPluginLib *plugin,
|
||||
const std::string &mime_type)
|
||||
: plugin_(plugin),
|
||||
npp_(0),
|
||||
host_(PluginHost::Singleton()),
|
||||
npp_functions_(plugin->functions()),
|
||||
#if defined(OS_WIN)
|
||||
hwnd_(0),
|
||||
#endif
|
||||
windowless_(false),
|
||||
transparent_(true),
|
||||
webplugin_(0),
|
||||
mime_type_(mime_type),
|
||||
get_notify_data_(NULL),
|
||||
use_mozilla_user_agent_(false),
|
||||
message_loop_(MessageLoop::current()),
|
||||
load_manually_(false),
|
||||
in_close_streams_(false) {
|
||||
npp_ = new NPP_t();
|
||||
npp_->ndata = 0;
|
||||
npp_->pdata = 0;
|
||||
|
||||
memset(&zero_padding_, 0, sizeof(zero_padding_));
|
||||
DCHECK(message_loop_);
|
||||
}
|
||||
|
||||
BrowserPluginInstance::~BrowserPluginInstance() {
|
||||
CloseStreams();
|
||||
|
||||
if (npp_ != 0) {
|
||||
delete npp_;
|
||||
npp_ = 0;
|
||||
}
|
||||
|
||||
if (plugin_)
|
||||
plugin_->CloseInstance();
|
||||
}
|
||||
|
||||
BrowserPluginStreamUrl *BrowserPluginInstance::CreateStream(int resource_id,
|
||||
const std::string &url,
|
||||
const std::string &mime_type,
|
||||
bool notify_needed,
|
||||
void *notify_data) {
|
||||
BrowserPluginStreamUrl *stream = new BrowserPluginStreamUrl(
|
||||
resource_id, GURL(url), this, notify_needed, notify_data);
|
||||
|
||||
AddStream(stream);
|
||||
return stream;
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::AddStream(BrowserPluginStream* stream) {
|
||||
open_streams_.push_back(stream);
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::RemoveStream(BrowserPluginStream* stream) {
|
||||
if (in_close_streams_)
|
||||
return;
|
||||
|
||||
std::vector<scoped_refptr<BrowserPluginStream> >::iterator stream_index;
|
||||
for (stream_index = open_streams_.begin();
|
||||
stream_index != open_streams_.end(); ++stream_index) {
|
||||
if (*stream_index == stream) {
|
||||
open_streams_.erase(stream_index);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool BrowserPluginInstance::IsValidStream(const NPStream* stream) {
|
||||
std::vector<scoped_refptr<BrowserPluginStream> >::iterator stream_index;
|
||||
for (stream_index = open_streams_.begin();
|
||||
stream_index != open_streams_.end(); ++stream_index) {
|
||||
if ((*stream_index)->stream() == stream)
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::CloseStreams() {
|
||||
in_close_streams_ = true;
|
||||
for (unsigned int index = 0; index < open_streams_.size(); ++index) {
|
||||
// Close all streams on the way down.
|
||||
open_streams_[index]->Close(NPRES_USER_BREAK);
|
||||
}
|
||||
open_streams_.clear();
|
||||
in_close_streams_ = false;
|
||||
}
|
||||
|
||||
#if defined(OS_WIN)
|
||||
bool BrowserPluginInstance::HandleEvent(UINT message, WPARAM wParam, LPARAM lParam) {
|
||||
if (!windowless_)
|
||||
return false;
|
||||
|
||||
NPEvent windowEvent;
|
||||
windowEvent.event = message;
|
||||
windowEvent.lParam = static_cast<uint32>(lParam);
|
||||
windowEvent.wParam = static_cast<uint32>(wParam);
|
||||
return NPP_HandleEvent(&windowEvent) != 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
bool BrowserPluginInstance::Start(const GURL& url,
|
||||
char** const param_names,
|
||||
char** const param_values,
|
||||
int param_count,
|
||||
bool load_manually) {
|
||||
load_manually_ = load_manually;
|
||||
instance_url_ = url;
|
||||
unsigned short mode = load_manually_ ? NP_FULL : NP_EMBED;
|
||||
npp_->ndata = this;
|
||||
|
||||
NPError err = NPP_New(mode, param_count,
|
||||
const_cast<char **>(param_names), const_cast<char **>(param_values));
|
||||
return err == NPERR_NO_ERROR;
|
||||
}
|
||||
|
||||
NPObject *BrowserPluginInstance::GetPluginScriptableObject() {
|
||||
NPObject *value = NULL;
|
||||
NPError error = NPP_GetValue(NPPVpluginScriptableNPObject, &value);
|
||||
if (error != NPERR_NO_ERROR || value == NULL)
|
||||
return NULL;
|
||||
return value;
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::SetURLLoadData(const GURL& url,
|
||||
void* notify_data) {
|
||||
get_url_ = url;
|
||||
get_notify_data_ = notify_data;
|
||||
}
|
||||
|
||||
// WebPluginLoadDelegate methods
|
||||
void BrowserPluginInstance::DidFinishLoadWithReason(NPReason reason) {
|
||||
if (!get_url_.is_empty()) {
|
||||
NPP_URLNotify(get_url_.spec().c_str(), reason, get_notify_data_);
|
||||
}
|
||||
|
||||
get_url_ = GURL();
|
||||
get_notify_data_ = NULL;
|
||||
}
|
||||
|
||||
// NPAPI methods
|
||||
NPError BrowserPluginInstance::NPP_New(unsigned short mode,
|
||||
short argc,
|
||||
char *argn[],
|
||||
char *argv[]) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->newp != 0);
|
||||
DCHECK(argc >= 0);
|
||||
|
||||
if (npp_functions_->newp != 0) {
|
||||
return npp_functions_->newp(
|
||||
(NPMIMEType)mime_type_.c_str(), npp_, mode, argc, argn, argv, NULL);
|
||||
}
|
||||
return NPERR_INVALID_FUNCTABLE_ERROR;
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::NPP_Destroy() {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->newp != 0);
|
||||
|
||||
if (npp_functions_->destroy != 0) {
|
||||
NPSavedData *savedData = 0;
|
||||
npp_functions_->destroy(npp_, &savedData);
|
||||
|
||||
// TODO: Support savedData. Technically, these need to be
|
||||
// saved on a per-URL basis, and then only passed
|
||||
// to new instances of the plugin at the same URL.
|
||||
// Sounds like a huge security risk. When we do support
|
||||
// these, we should pass them back to the PluginLib
|
||||
// to be stored there.
|
||||
DCHECK(savedData == 0);
|
||||
}
|
||||
|
||||
#if defined(OS_WIN)
|
||||
// Clean up back references to this instance if any
|
||||
if (mozilla_extenstions_) {
|
||||
mozilla_extenstions_->DetachFromInstance();
|
||||
mozilla_extenstions_ = NULL;
|
||||
}
|
||||
#endif
|
||||
|
||||
for (unsigned int file_index = 0; file_index < files_created_.size();
|
||||
file_index++) {
|
||||
file_util::Delete(files_created_[file_index], false);
|
||||
}
|
||||
}
|
||||
|
||||
NPError BrowserPluginInstance::NPP_SetWindow(NPWindow *window) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->setwindow != 0);
|
||||
|
||||
if (npp_functions_->setwindow != 0) {
|
||||
return npp_functions_->setwindow(npp_, window);
|
||||
}
|
||||
return NPERR_INVALID_FUNCTABLE_ERROR;
|
||||
}
|
||||
|
||||
NPError BrowserPluginInstance::NPP_NewStream(NPMIMEType type,
|
||||
NPStream *stream,
|
||||
NPBool seekable,
|
||||
unsigned short *stype) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->newstream != 0);
|
||||
if (npp_functions_->newstream != 0) {
|
||||
return npp_functions_->newstream(npp_, type, stream, seekable, stype);
|
||||
}
|
||||
return NPERR_INVALID_FUNCTABLE_ERROR;
|
||||
}
|
||||
|
||||
NPError BrowserPluginInstance::NPP_DestroyStream(NPStream *stream,
|
||||
NPReason reason) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->destroystream != 0);
|
||||
|
||||
if (stream == NULL || (stream->ndata == NULL) ||
|
||||
!IsValidStream(stream))
|
||||
return NPERR_INVALID_INSTANCE_ERROR;
|
||||
|
||||
if (npp_functions_->destroystream != 0) {
|
||||
NPError result = npp_functions_->destroystream(npp_, stream, reason);
|
||||
stream->ndata = NULL;
|
||||
return result;
|
||||
}
|
||||
return NPERR_INVALID_FUNCTABLE_ERROR;
|
||||
}
|
||||
|
||||
int BrowserPluginInstance::NPP_WriteReady(NPStream *stream) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->writeready != 0);
|
||||
if (npp_functions_->writeready != 0) {
|
||||
return npp_functions_->writeready(npp_, stream);
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int BrowserPluginInstance::NPP_Write(NPStream *stream,
|
||||
int offset,
|
||||
int len,
|
||||
void *buffer) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->write != 0);
|
||||
if (npp_functions_->write != 0) {
|
||||
return npp_functions_->write(npp_, stream, offset, len, buffer);
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::NPP_StreamAsFile(NPStream *stream,
|
||||
const char *fname) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->asfile != 0);
|
||||
if (npp_functions_->asfile != 0) {
|
||||
npp_functions_->asfile(npp_, stream, fname);
|
||||
}
|
||||
|
||||
// Creating a temporary FilePath instance on the stack as the explicit
|
||||
// FilePath constructor with StringType as an argument causes a compiler
|
||||
// error when invoked via vector push back.
|
||||
FilePath file_name(UTF8ToWide(fname));
|
||||
files_created_.push_back(file_name);
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::NPP_URLNotify(const char *url,
|
||||
NPReason reason,
|
||||
void *notifyData) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->urlnotify != 0);
|
||||
if (npp_functions_->urlnotify != 0) {
|
||||
npp_functions_->urlnotify(npp_, url, reason, notifyData);
|
||||
}
|
||||
}
|
||||
|
||||
NPError BrowserPluginInstance::NPP_GetValue(NPPVariable variable, void *value) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
// getvalue is NULL for Shockwave
|
||||
if (npp_functions_->getvalue != 0) {
|
||||
return npp_functions_->getvalue(npp_, variable, value);
|
||||
}
|
||||
return NPERR_INVALID_FUNCTABLE_ERROR;
|
||||
}
|
||||
|
||||
NPError BrowserPluginInstance::NPP_SetValue(NPNVariable variable, void *value) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
if (npp_functions_->setvalue != 0) {
|
||||
return npp_functions_->setvalue(npp_, variable, value);
|
||||
}
|
||||
return NPERR_INVALID_FUNCTABLE_ERROR;
|
||||
}
|
||||
|
||||
short BrowserPluginInstance::NPP_HandleEvent(NPEvent *event) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
DCHECK(npp_functions_->event != 0);
|
||||
if (npp_functions_->event != 0) {
|
||||
return npp_functions_->event(npp_, (void*)event);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
bool BrowserPluginInstance::NPP_Print(NPPrint* platform_print) {
|
||||
DCHECK(npp_functions_ != 0);
|
||||
if (npp_functions_->print != 0) {
|
||||
npp_functions_->print(npp_, platform_print);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::SendJavaScriptStream(const std::string& url,
|
||||
const std::wstring& result,
|
||||
bool success,
|
||||
bool notify_needed,
|
||||
int notify_data) {
|
||||
if (success) {
|
||||
BrowserPluginStringStream *stream =
|
||||
new BrowserPluginStringStream(this, url, notify_needed,
|
||||
reinterpret_cast<void*>(notify_data));
|
||||
AddStream(stream);
|
||||
stream->SendToPlugin(WideToUTF8(result), "text/html");
|
||||
} else {
|
||||
// NOTE: Sending an empty stream here will crash MacroMedia
|
||||
// Flash 9. Just send the URL Notify.
|
||||
if (notify_needed) {
|
||||
this->NPP_URLNotify(url.c_str(), NPRES_DONE,
|
||||
reinterpret_cast<void*>(notify_data));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::DidReceiveManualResponse(const std::string& url,
|
||||
const std::string& mime_type,
|
||||
const std::string& headers,
|
||||
uint32 expected_length,
|
||||
uint32 last_modified) {
|
||||
DCHECK(load_manually_);
|
||||
std::string response_url = url;
|
||||
if (response_url.empty()) {
|
||||
response_url = instance_url_.spec();
|
||||
}
|
||||
|
||||
bool cancel = false;
|
||||
|
||||
plugin_data_stream_ = CreateStream(-1, url, mime_type, false, NULL);
|
||||
|
||||
plugin_data_stream_->DidReceiveResponse(mime_type, headers, expected_length,
|
||||
last_modified, &cancel);
|
||||
AddStream(plugin_data_stream_.get());
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::DidReceiveManualData(const char* buffer,
|
||||
int length) {
|
||||
DCHECK(load_manually_);
|
||||
if (plugin_data_stream_.get() != NULL) {
|
||||
plugin_data_stream_->DidReceiveData(buffer, length, 0);
|
||||
}
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::DidFinishManualLoading() {
|
||||
DCHECK(load_manually_);
|
||||
if (plugin_data_stream_.get() != NULL) {
|
||||
plugin_data_stream_->DidFinishLoading();
|
||||
plugin_data_stream_->Close(NPRES_DONE);
|
||||
plugin_data_stream_ = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::DidManualLoadFail() {
|
||||
DCHECK(load_manually_);
|
||||
if (plugin_data_stream_.get() != NULL) {
|
||||
plugin_data_stream_->DidFail();
|
||||
plugin_data_stream_ = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::PluginThreadAsyncCall(void (*func)(void *),
|
||||
void *userData) {
|
||||
message_loop_->PostTask(FROM_HERE, NewRunnableMethod(
|
||||
this, &BrowserPluginInstance::OnPluginThreadAsyncCall, func, userData));
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::OnPluginThreadAsyncCall(void (*func)(void *),
|
||||
void *userData) {
|
||||
#if defined(OS_WIN)
|
||||
// We are invoking an arbitrary callback provided by a third
|
||||
// party plugin. It's better to wrap this into an exception
|
||||
// block to protect us from crashes.
|
||||
__try {
|
||||
func(userData);
|
||||
} __except(EXCEPTION_EXECUTE_HANDLER) {
|
||||
// Maybe we can disable a crashing plugin.
|
||||
// But for now, just continue.
|
||||
}
|
||||
#else
|
||||
NOTIMPLEMENTED();
|
||||
#endif
|
||||
}
|
||||
|
||||
BrowserPluginInstance* BrowserPluginInstance::SetInitializingInstance(
|
||||
BrowserPluginInstance* instance) {
|
||||
BrowserPluginInstance* old_instance =
|
||||
static_cast<BrowserPluginInstance*>(plugin_instance_tls_index_.Get());
|
||||
plugin_instance_tls_index_.Set(instance);
|
||||
return old_instance;
|
||||
}
|
||||
|
||||
BrowserPluginInstance* BrowserPluginInstance::GetInitializingInstance() {
|
||||
BrowserPluginInstance* instance =
|
||||
static_cast<BrowserPluginInstance*>(plugin_instance_tls_index_.Get());
|
||||
return instance;
|
||||
}
|
||||
|
||||
NPError BrowserPluginInstance::GetServiceManager(void** service_manager) {
|
||||
#if defined(OS_WIN)
|
||||
if (!mozilla_extenstions_) {
|
||||
mozilla_extenstions_ = new BrowserMozillaExtensionApi(this);
|
||||
}
|
||||
|
||||
DCHECK(mozilla_extenstions_);
|
||||
mozilla_extenstions_->QueryInterface(nsIServiceManager::GetIID(),
|
||||
service_manager);
|
||||
#else
|
||||
NOTIMPLEMENTED();
|
||||
#endif
|
||||
return NPERR_NO_ERROR;
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::PushPopupsEnabledState(bool enabled) {
|
||||
popups_enabled_stack_.push(enabled);
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::PopPopupsEnabledState() {
|
||||
popups_enabled_stack_.pop();
|
||||
}
|
||||
|
||||
void BrowserPluginInstance::RequestRead(NPStream* stream,
|
||||
NPByteRange* range_list) {
|
||||
std::string range_info = "bytes=";
|
||||
|
||||
while (range_list) {
|
||||
range_info += IntToString(range_list->offset);
|
||||
range_info += "-";
|
||||
range_info += IntToString(range_list->offset + range_list->length - 1);
|
||||
range_list = range_list->next;
|
||||
if (range_list) {
|
||||
range_info += ",";
|
||||
}
|
||||
}
|
||||
|
||||
if (plugin_data_stream_) {
|
||||
if (plugin_data_stream_->stream() == stream) {
|
||||
webplugin_->CancelDocumentLoad();
|
||||
plugin_data_stream_ = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
// The lifetime of a NPStream instance depends on the BrowserPluginStream
|
||||
// instance which owns it. When a plugin invokes NPN_RequestRead on a seekable
|
||||
// stream, we don't want to create a new stream when the corresponding
|
||||
// response is received. We send over a cookie which represents the
|
||||
// BrowserPluginStream instance which is sent back from the renderer when the
|
||||
// response is received.
|
||||
std::vector<scoped_refptr<BrowserPluginStream> >::iterator stream_index;
|
||||
for (stream_index = open_streams_.begin();
|
||||
stream_index != open_streams_.end(); ++stream_index) {
|
||||
BrowserPluginStream* plugin_stream = *stream_index;
|
||||
if (plugin_stream->stream() == stream) {
|
||||
// A stream becomes seekable the first time NPN_RequestRead
|
||||
// is called on it.
|
||||
plugin_stream->set_seekable(true);
|
||||
|
||||
webplugin_->InitiateHTTPRangeRequest(
|
||||
stream->url, range_info.c_str(),
|
||||
plugin_stream,
|
||||
plugin_stream->notify_needed(),
|
||||
plugin_stream->notify_data());
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace NPAPI
|
||||
|
Reference in New Issue
Block a user