summaryrefslogtreecommitdiffstats
path: root/chrome/common/resource_bundle_win.cc
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-13 01:52:59 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-13 01:52:59 +0000
commit11c2fe82bca2cd871eeb7aff77043754ef75651a (patch)
tree0fbe3ff9d607c63dd95907f7d9fcb0ad71b39683 /chrome/common/resource_bundle_win.cc
parent1d8c3419fd7f42b045dde9ddf301babd5d5ae947 (diff)
downloadchromium_src-11c2fe82bca2cd871eeb7aff77043754ef75651a.zip
chromium_src-11c2fe82bca2cd871eeb7aff77043754ef75651a.tar.gz
chromium_src-11c2fe82bca2cd871eeb7aff77043754ef75651a.tar.bz2
Refactor resource_bundle into a _win file.
Linux changes forthcoming. Review URL: http://codereview.chromium.org/17472 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7914 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/resource_bundle_win.cc')
-rw-r--r--chrome/common/resource_bundle_win.cc173
1 files changed, 173 insertions, 0 deletions
diff --git a/chrome/common/resource_bundle_win.cc b/chrome/common/resource_bundle_win.cc
new file mode 100644
index 0000000..cebd780
--- /dev/null
+++ b/chrome/common/resource_bundle_win.cc
@@ -0,0 +1,173 @@
+// 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 "chrome/common/resource_bundle.h"
+
+#include <atlbase.h>
+
+#include "base/file_util.h"
+#include "base/logging.h"
+#include "base/path_service.h"
+#include "base/resource_util.h"
+#include "base/string_piece.h"
+#include "base/win_util.h"
+#include "chrome/app/chrome_dll_resource.h"
+#include "chrome/common/chrome_paths.h"
+#include "chrome/common/gfx/chrome_font.h"
+#include "chrome/common/l10n_util.h"
+
+namespace {
+
+// Returns the flags that should be passed to LoadLibraryEx.
+DWORD GetDataDllLoadFlags() {
+ if (win_util::GetWinVersion() >= win_util::WINVERSION_VISTA)
+ return LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE | LOAD_LIBRARY_AS_IMAGE_RESOURCE;
+
+ return DONT_RESOLVE_DLL_REFERENCES;
+}
+
+} // end anonymous namespace
+
+ResourceBundle::~ResourceBundle() {
+ FreeImages();
+
+ if (locale_resources_data_) {
+ BOOL rv = FreeLibrary(locale_resources_data_);
+ DCHECK(rv);
+ }
+ if (theme_data_) {
+ BOOL rv = FreeLibrary(theme_data_);
+ DCHECK(rv);
+ }
+}
+
+void ResourceBundle::LoadLocaleResources(const std::wstring& pref_locale) {
+ DCHECK(NULL == locale_resources_data_) << "locale dll already loaded";
+ const FilePath& locale_path = GetLocaleFilePath(pref_locale);
+ if (locale_path.value().empty()) {
+ // It's possible that there are no locale dlls found, in which case we just
+ // return.
+ NOTREACHED();
+ return;
+ }
+
+ // The dll should only have resources, not executable code.
+ locale_resources_data_ = LoadLibraryEx(locale_path.value().c_str(), NULL,
+ GetDataDllLoadFlags());
+ DCHECK(locale_resources_data_ != NULL) << "unable to load generated resources";
+}
+
+FilePath ResourceBundle::GetLocaleFilePath(const std::wstring& pref_locale) {
+ FilePath locale_path;
+ PathService::Get(chrome::DIR_LOCALES, &locale_path);
+
+ const std::wstring app_locale = l10n_util::GetApplicationLocale(pref_locale);
+ if (app_locale.empty())
+ return FilePath(app_locale);
+
+ return locale_path.Append(app_locale + L".dll");
+}
+
+void ResourceBundle::LoadThemeResources() {
+ DCHECK(NULL == theme_data_) << "theme dll already loaded";
+ std::wstring theme_data_path;
+ PathService::Get(chrome::DIR_THEMES, &theme_data_path);
+ file_util::AppendToPath(&theme_data_path, L"default.dll");
+
+ // The dll should only have resources, not executable code.
+ theme_data_ = LoadLibraryEx(theme_data_path.c_str(), NULL,
+ GetDataDllLoadFlags());
+ DCHECK(theme_data_ != NULL) << "unable to load " << theme_data_path;
+}
+
+bool ResourceBundle::LoadImageResourceBytes(int resource_id,
+ std::vector<unsigned char>* bytes) {
+ return LoadResourceBytes(theme_data_, resource_id, bytes);
+}
+
+bool ResourceBundle::LoadDataResourceBytes(int resource_id,
+ std::vector<unsigned char>* bytes) {
+ return LoadResourceBytes(_AtlBaseModule.GetModuleInstance(),
+ resource_id, bytes);
+}
+
+/* static */
+bool ResourceBundle::LoadResourceBytes(
+ DataHandle module,
+ int resource_id,
+ std::vector<unsigned char>* bytes) {
+ void* data_ptr;
+ size_t data_size;
+ if (base::GetDataResourceFromModule(module, resource_id, &data_ptr,
+ &data_size)) {
+ bytes->resize(data_size);
+ memcpy(&(bytes->front()), data_ptr, data_size);
+ return true;
+ } else {
+ return false;
+ }
+}
+
+HICON ResourceBundle::LoadThemeIcon(int icon_id) {
+ return ::LoadIcon(theme_data_, MAKEINTRESOURCE(icon_id));
+}
+
+std::string ResourceBundle::GetDataResource(int resource_id) {
+ return GetRawDataResource(resource_id).as_string();
+}
+
+StringPiece ResourceBundle::GetRawDataResource(int resource_id) {
+ void* data_ptr;
+ size_t data_size;
+ if (base::GetDataResourceFromModule(_AtlBaseModule.GetModuleInstance(),
+ resource_id,
+ &data_ptr,
+ &data_size)) {
+ return StringPiece(static_cast<const char*>(data_ptr), data_size);
+ } else if (locale_resources_data_ &&
+ base::GetDataResourceFromModule(locale_resources_data_,
+ resource_id,
+ &data_ptr,
+ &data_size)) {
+ return StringPiece(static_cast<const char*>(data_ptr), data_size);
+ }
+ return StringPiece();
+}
+// Loads and returns the global accelerators from the current module.
+HACCEL ResourceBundle::GetGlobalAccelerators() {
+ return ::LoadAccelerators(_AtlBaseModule.GetModuleInstance(),
+ MAKEINTRESOURCE(IDR_MAINFRAME));
+}
+
+// Loads and returns a cursor from the current module.
+HCURSOR ResourceBundle::LoadCursor(int cursor_id) {
+ return ::LoadCursor(_AtlBaseModule.GetModuleInstance(),
+ MAKEINTRESOURCE(cursor_id));
+}
+
+std::wstring ResourceBundle::GetLocalizedString(int message_id) {
+ // If for some reason we were unable to load a resource dll, return an empty
+ // string (better than crashing).
+ if (!locale_resources_data_)
+ return std::wstring();
+
+ DCHECK(IS_INTRESOURCE(message_id));
+
+ // Get a reference directly to the string resource.
+ HINSTANCE hinstance = locale_resources_data_;
+ const ATLSTRINGRESOURCEIMAGE* image = AtlGetStringResourceImage(hinstance,
+ message_id);
+ if (!image) {
+ // Fall back on the current module (shouldn't be any strings here except
+ // in unittests).
+ image = AtlGetStringResourceImage(_AtlBaseModule.GetModuleInstance(),
+ message_id);
+ if (!image) {
+ NOTREACHED() << "unable to find resource: " << message_id;
+ return std::wstring();
+ }
+ }
+ // Copy into a wstring and return.
+ return std::wstring(image->achString, image->nLength);
+}