diff options
author | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-26 23:55:29 +0000 |
---|---|---|
committer | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-26 23:55:29 +0000 |
commit | 09911bf300f1a419907a9412154760efd0b7abc3 (patch) | |
tree | f131325fb4e2ad12c6d3504ab75b16dd92facfed /chrome/common/chrome_plugin_util.cc | |
parent | 586acc5fe142f498261f52c66862fa417c3d52d2 (diff) | |
download | chromium_src-09911bf300f1a419907a9412154760efd0b7abc3.zip chromium_src-09911bf300f1a419907a9412154760efd0b7abc3.tar.gz chromium_src-09911bf300f1a419907a9412154760efd0b7abc3.tar.bz2 |
Add chrome to the repository.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_plugin_util.cc')
-rw-r--r-- | chrome/common/chrome_plugin_util.cc | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/chrome/common/chrome_plugin_util.cc b/chrome/common/chrome_plugin_util.cc new file mode 100644 index 0000000..39497af --- /dev/null +++ b/chrome/common/chrome_plugin_util.cc @@ -0,0 +1,191 @@ +// Copyright 2008, Google Inc. +// All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +#include "chrome/common/chrome_plugin_util.h" + +#include "base/command_line.h" +#include "base/file_util.h" +#include "base/message_loop.h" +#include "base/string_util.h" +#include "chrome/common/chrome_plugin_lib.h" +#include "chrome/common/chrome_switches.h" +#include "net/base/load_flags.h" +#include "net/http/http_response_headers.h" + +// +// ScopableCPRequest +// + +ScopableCPRequest::ScopableCPRequest(const char* u, const char* m, + CPBrowsingContext c) { + pdata = NULL; + data = NULL; + url = _strdup(u); + method = _strdup(m); + context = c; +} + +ScopableCPRequest::~ScopableCPRequest() { + pdata = NULL; + data = NULL; + free(const_cast<char*>(url)); + free(const_cast<char*>(method)); +} + +// +// PluginHelper +// + +// static +void PluginHelper::DestroyAllHelpersForPlugin(ChromePluginLib* plugin) { + NotificationService::current()->Notify( + NOTIFY_CHROME_PLUGIN_UNLOADED, + Source<ChromePluginLib>(plugin), + NotificationService::NoDetails()); +} + +PluginHelper::PluginHelper(ChromePluginLib* plugin) : plugin_(plugin) { +#ifndef NDEBUG + message_loop_ = MessageLoop::current(); +#endif + NotificationService::current()->AddObserver( + this, NOTIFY_CHROME_PLUGIN_UNLOADED, + Source<ChromePluginLib>(plugin_)); +} + +PluginHelper::~PluginHelper() { +#ifndef NDEBUG + DCHECK(MessageLoop::current() == message_loop_); +#endif + NotificationService::current()->RemoveObserver( + this, NOTIFY_CHROME_PLUGIN_UNLOADED, + Source<ChromePluginLib>(plugin_)); +} + +void PluginHelper::Observe(NotificationType type, + const NotificationSource& source, + const NotificationDetails& details) { +#ifndef NDEBUG + DCHECK(MessageLoop::current() == message_loop_); +#endif + DCHECK(type == NOTIFY_CHROME_PLUGIN_UNLOADED); + DCHECK(plugin_ == Source<ChromePluginLib>(source).ptr()); + + delete this; +} + +// +// PluginResponseUtils +// + +uint32 PluginResponseUtils::CPLoadFlagsToNetFlags(uint32 flags) { + uint32 net_flags = 0; +#define HANDLE_FLAG(name) \ + if (flags & CPREQUEST##name) \ + net_flags |= net::name + + HANDLE_FLAG(LOAD_VALIDATE_CACHE); + HANDLE_FLAG(LOAD_BYPASS_CACHE); + HANDLE_FLAG(LOAD_PREFERRING_CACHE); + HANDLE_FLAG(LOAD_ONLY_FROM_CACHE); + HANDLE_FLAG(LOAD_DISABLE_CACHE); + HANDLE_FLAG(LOAD_DISABLE_INTERCEPT); + + net_flags |= net::LOAD_ENABLE_UPLOAD_PROGRESS; + + return net_flags; +} + +int PluginResponseUtils::GetResponseInfo( + const net::HttpResponseHeaders* response_headers, + CPResponseInfoType type, void* buf, uint32 buf_size) { + if (!response_headers) + return CPERR_FAILURE; + + switch (type) { + case CPRESPONSEINFO_HTTP_STATUS: + if (buf && buf_size) { + int status = response_headers->response_code(); + memcpy(buf, &status, std::min(buf_size, sizeof(int))); + } + break; + case CPRESPONSEINFO_HTTP_RAW_HEADERS: { + const std::string& headers = response_headers->raw_headers(); + if (buf_size < headers.size()+1) + return static_cast<int>(headers.size()+1); + if (buf) + memcpy(buf, headers.c_str(), headers.size()+1); + break; + } + default: + return CPERR_INVALID_VERSION; + } + + return CPERR_SUCCESS; +} + +CPError CPB_GetCommandLineArgumentsCommon(const char* url, + std::string* arguments) { + CommandLine cmd; + std::wstring arguments_w; + + // Use the same UserDataDir for new launches that we currently have set. + std::wstring user_data_dir = cmd.GetSwitchValue(switches::kUserDataDir); + if (!user_data_dir.empty()) { + // Make sure user_data_dir is an absolute path. + wchar_t user_data_dir_full[MAX_PATH]; + if (_wfullpath(user_data_dir_full, user_data_dir.c_str(), MAX_PATH) && + file_util::PathExists(user_data_dir_full)) { + CommandLine::AppendSwitchWithValue( + &arguments_w, switches::kUserDataDir, user_data_dir_full); + } + } + + // Use '--app=url' instead of just 'url' to launch the browser with minimal + // chrome. + // Note: Do not change this flag! Old Gears shortcuts will break if you do! + std::wstring url_w = UTF8ToWide(url); + CommandLine::AppendSwitchWithValue(&arguments_w, switches::kApp, url_w); + + *arguments = WideToUTF8(arguments_w); + + return CPERR_SUCCESS; +} + +// +// Host functions shared by browser and plugin processes +// + +void* STDCALL CPB_Alloc(uint32 size) { + return malloc(size); +} + +void STDCALL CPB_Free(void* memory) { + free(memory); +} |