2014-05-05 10:30:39 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2012-01-04 20:19:14 -08:00
|
|
|
|
|
|
|
#ifndef nsWindowsHelpers_h
|
|
|
|
#define nsWindowsHelpers_h
|
|
|
|
|
2012-07-25 07:23:26 -07:00
|
|
|
#include <windows.h>
|
2012-01-04 20:19:14 -08:00
|
|
|
#include "nsAutoRef.h"
|
|
|
|
#include "nscore.h"
|
2016-03-02 13:40:23 -08:00
|
|
|
#include "mozilla/Assertions.h"
|
2012-01-04 20:19:14 -08:00
|
|
|
|
2013-10-18 11:24:51 -07:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Critical Section helper class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class AutoCriticalSection
|
|
|
|
{
|
|
|
|
public:
|
2014-05-13 10:41:38 -07:00
|
|
|
AutoCriticalSection(LPCRITICAL_SECTION aSection)
|
|
|
|
: mSection(aSection)
|
2013-10-18 11:24:51 -07:00
|
|
|
{
|
|
|
|
::EnterCriticalSection(mSection);
|
|
|
|
}
|
|
|
|
~AutoCriticalSection()
|
|
|
|
{
|
|
|
|
::LeaveCriticalSection(mSection);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
LPCRITICAL_SECTION mSection;
|
|
|
|
};
|
|
|
|
|
2012-01-04 20:19:14 -08:00
|
|
|
template<>
|
|
|
|
class nsAutoRefTraits<HKEY>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef HKEY RawRef;
|
2013-03-22 12:34:36 -07:00
|
|
|
static HKEY Void()
|
|
|
|
{
|
2013-10-10 13:41:00 -07:00
|
|
|
return nullptr;
|
2012-01-04 20:19:14 -08:00
|
|
|
}
|
|
|
|
|
2013-03-22 12:34:36 -07:00
|
|
|
static void Release(RawRef aFD)
|
|
|
|
{
|
2012-01-04 20:19:14 -08:00
|
|
|
if (aFD != Void()) {
|
|
|
|
RegCloseKey(aFD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-03-01 10:48:26 -08:00
|
|
|
template<>
|
|
|
|
class nsAutoRefTraits<HDC>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef HDC RawRef;
|
|
|
|
static HDC Void()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Release(RawRef aFD)
|
|
|
|
{
|
|
|
|
if (aFD != Void()) {
|
|
|
|
::DeleteDC(aFD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
class nsAutoRefTraits<HBRUSH>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef HBRUSH RawRef;
|
|
|
|
static HBRUSH Void()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Release(RawRef aFD)
|
|
|
|
{
|
|
|
|
if (aFD != Void()) {
|
|
|
|
::DeleteObject(aFD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
class nsAutoRefTraits<HRGN>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef HRGN RawRef;
|
|
|
|
static HRGN Void()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Release(RawRef aFD)
|
|
|
|
{
|
|
|
|
if (aFD != Void()) {
|
|
|
|
::DeleteObject(aFD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
class nsAutoRefTraits<HBITMAP>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef HBITMAP RawRef;
|
|
|
|
static HBITMAP Void()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Release(RawRef aFD)
|
|
|
|
{
|
|
|
|
if (aFD != Void()) {
|
|
|
|
::DeleteObject(aFD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-04 20:19:14 -08:00
|
|
|
template<>
|
|
|
|
class nsAutoRefTraits<SC_HANDLE>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef SC_HANDLE RawRef;
|
2013-03-22 12:34:36 -07:00
|
|
|
static SC_HANDLE Void()
|
|
|
|
{
|
2013-10-10 13:41:00 -07:00
|
|
|
return nullptr;
|
2012-01-04 20:19:14 -08:00
|
|
|
}
|
|
|
|
|
2013-03-22 12:34:36 -07:00
|
|
|
static void Release(RawRef aFD)
|
|
|
|
{
|
2012-01-04 20:19:14 -08:00
|
|
|
if (aFD != Void()) {
|
|
|
|
CloseServiceHandle(aFD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
class nsSimpleRef<HANDLE>
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
typedef HANDLE RawRef;
|
|
|
|
|
2013-10-10 13:41:00 -07:00
|
|
|
nsSimpleRef() : mRawRef(nullptr)
|
2012-01-04 20:19:14 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-22 12:34:36 -07:00
|
|
|
nsSimpleRef(RawRef aRawRef) : mRawRef(aRawRef)
|
2012-01-04 20:19:14 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-22 12:34:36 -07:00
|
|
|
bool HaveResource() const
|
2012-01-04 20:19:14 -08:00
|
|
|
{
|
2014-05-13 10:41:38 -07:00
|
|
|
return mRawRef && mRawRef != INVALID_HANDLE_VALUE;
|
2012-01-04 20:19:14 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2013-03-22 12:34:36 -07:00
|
|
|
RawRef get() const
|
2012-01-04 20:19:14 -08:00
|
|
|
{
|
|
|
|
return mRawRef;
|
|
|
|
}
|
|
|
|
|
2013-03-22 12:34:36 -07:00
|
|
|
static void Release(RawRef aRawRef)
|
2012-01-04 20:19:14 -08:00
|
|
|
{
|
2014-05-13 10:41:38 -07:00
|
|
|
if (aRawRef && aRawRef != INVALID_HANDLE_VALUE) {
|
2012-01-04 20:19:14 -08:00
|
|
|
CloseHandle(aRawRef);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
RawRef mRawRef;
|
|
|
|
};
|
|
|
|
|
2013-03-22 12:34:36 -07:00
|
|
|
|
|
|
|
template<>
|
|
|
|
class nsAutoRefTraits<HMODULE>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef HMODULE RawRef;
|
|
|
|
static RawRef Void()
|
|
|
|
{
|
2013-10-10 13:41:00 -07:00
|
|
|
return nullptr;
|
2013-03-22 12:34:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void Release(RawRef aFD)
|
|
|
|
{
|
|
|
|
if (aFD != Void()) {
|
|
|
|
FreeLibrary(aFD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-08-06 14:36:54 -07:00
|
|
|
|
|
|
|
template<>
|
|
|
|
class nsAutoRefTraits<DEVMODEW*>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef DEVMODEW* RawRef;
|
|
|
|
static RawRef Void()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Release(RawRef aDevMode)
|
|
|
|
{
|
|
|
|
if (aDevMode != Void()) {
|
|
|
|
::HeapFree(::GetProcessHeap(), 0, aDevMode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-04 20:19:14 -08:00
|
|
|
typedef nsAutoRef<HKEY> nsAutoRegKey;
|
2016-03-01 10:48:26 -08:00
|
|
|
typedef nsAutoRef<HDC> nsAutoHDC;
|
|
|
|
typedef nsAutoRef<HBRUSH> nsAutoBrush;
|
|
|
|
typedef nsAutoRef<HRGN> nsAutoRegion;
|
|
|
|
typedef nsAutoRef<HBITMAP> nsAutoBitmap;
|
2012-01-04 20:19:14 -08:00
|
|
|
typedef nsAutoRef<SC_HANDLE> nsAutoServiceHandle;
|
|
|
|
typedef nsAutoRef<HANDLE> nsAutoHandle;
|
2013-03-22 12:34:36 -07:00
|
|
|
typedef nsAutoRef<HMODULE> nsModuleHandle;
|
2015-08-06 14:36:54 -07:00
|
|
|
typedef nsAutoRef<DEVMODEW*> nsAutoDevMode;
|
2012-01-04 20:19:14 -08:00
|
|
|
|
2014-05-13 10:41:38 -07:00
|
|
|
namespace {
|
|
|
|
|
2016-03-02 13:40:23 -08:00
|
|
|
// Construct a path "<system32>\<aModule>". return false if the output buffer
|
|
|
|
// is too small.
|
|
|
|
// Note: If the system path cannot be found, or doesn't fit in the output buffer
|
|
|
|
// with the module name, we will just ignore the system path and output the
|
|
|
|
// module name alone;
|
|
|
|
// this may mean using a normal search path wherever the output is used.
|
|
|
|
bool inline
|
|
|
|
ConstructSystem32Path(LPCWSTR aModule, WCHAR* aSystemPath, UINT aSize)
|
2014-05-05 10:30:39 -07:00
|
|
|
{
|
2016-03-02 13:40:23 -08:00
|
|
|
MOZ_ASSERT(aSystemPath);
|
2014-05-05 10:30:39 -07:00
|
|
|
|
2014-05-13 10:41:38 -07:00
|
|
|
size_t fileLen = wcslen(aModule);
|
2016-03-02 13:40:23 -08:00
|
|
|
if (fileLen >= aSize) {
|
|
|
|
// The module name alone cannot even fit!
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t systemDirLen = GetSystemDirectoryW(aSystemPath, aSize);
|
|
|
|
|
|
|
|
if (systemDirLen) {
|
|
|
|
if (systemDirLen < aSize - fileLen) {
|
|
|
|
// Make the system directory path terminate with a slash.
|
|
|
|
if (aSystemPath[systemDirLen - 1] != L'\\') {
|
|
|
|
if (systemDirLen + 1 < aSize - fileLen) {
|
|
|
|
aSystemPath[systemDirLen] = L'\\';
|
|
|
|
++systemDirLen;
|
|
|
|
// No need to re-nullptr terminate.
|
|
|
|
} else {
|
|
|
|
// Couldn't fit the system path with added slash.
|
|
|
|
systemDirLen = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Couldn't fit the system path.
|
|
|
|
systemDirLen = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(systemDirLen + fileLen < aSize);
|
|
|
|
|
|
|
|
wcsncpy(aSystemPath + systemDirLen, aModule, fileLen);
|
|
|
|
aSystemPath[systemDirLen + fileLen] = L'\0';
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
HMODULE inline
|
|
|
|
LoadLibrarySystem32(LPCWSTR aModule)
|
|
|
|
{
|
|
|
|
WCHAR systemPath[MAX_PATH + 1];
|
|
|
|
if (!ConstructSystem32Path(aModule, systemPath, MAX_PATH + 1)) {
|
|
|
|
return NULL;
|
2013-03-22 12:34:36 -07:00
|
|
|
}
|
2014-05-05 10:30:39 -07:00
|
|
|
return LoadLibraryW(systemPath);
|
|
|
|
}
|
2014-05-13 10:41:38 -07:00
|
|
|
|
2012-07-25 07:23:26 -07:00
|
|
|
}
|
|
|
|
|
2012-01-04 20:19:14 -08:00
|
|
|
#endif
|