1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* 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/. */
#include "WindowHook.h"
#include "nsWindow.h"
namespace mozilla {
namespace widget {
nsresult
WindowHook::AddHook(UINT nMsg, Callback callback, void *context) {
MessageData *data = LookupOrCreate(nMsg);
if (!data)
return NS_ERROR_OUT_OF_MEMORY;
// Ensure we don't overwrite another hook
NS_ENSURE_TRUE(nullptr == data->hook.cb, NS_ERROR_UNEXPECTED);
data->hook = CallbackData(callback, context);
return NS_OK;
}
nsresult
WindowHook::RemoveHook(UINT nMsg, Callback callback, void *context) {
CallbackData cbdata(callback, context);
MessageData *data = Lookup(nMsg);
if (!data)
return NS_ERROR_UNEXPECTED;
if (data->hook != cbdata)
return NS_ERROR_UNEXPECTED;
data->hook = CallbackData();
DeleteIfEmpty(data);
return NS_OK;
}
nsresult
WindowHook::AddMonitor(UINT nMsg, Callback callback, void *context) {
MessageData *data = LookupOrCreate(nMsg);
return (data && data->monitors.AppendElement(CallbackData(callback, context)))
? NS_OK : NS_ERROR_OUT_OF_MEMORY;
}
nsresult
WindowHook::RemoveMonitor(UINT nMsg, Callback callback, void *context) {
CallbackData cbdata(callback, context);
MessageData *data = Lookup(nMsg);
if (!data)
return NS_ERROR_UNEXPECTED;
CallbackDataArray::index_type idx = data->monitors.IndexOf(cbdata);
if (idx == CallbackDataArray::NoIndex)
return NS_ERROR_UNEXPECTED;
data->monitors.RemoveElementAt(idx);
DeleteIfEmpty(data);
return NS_OK;
}
WindowHook::MessageData *
WindowHook::Lookup(UINT nMsg) {
MessageDataArray::index_type idx;
for (idx = 0; idx < mMessageData.Length(); idx++) {
MessageData &data = mMessageData[idx];
if (data.nMsg == nMsg)
return &data;
}
return nullptr;
}
WindowHook::MessageData *
WindowHook::LookupOrCreate(UINT nMsg) {
MessageData *data = Lookup(nMsg);
if (!data) {
data = mMessageData.AppendElement();
if (!data)
return nullptr;
data->nMsg = nMsg;
}
return data;
}
void
WindowHook::DeleteIfEmpty(MessageData *data) {
// Never remove a MessageData that has still a hook or monitor entries.
if (data->hook || !data->monitors.IsEmpty())
return;
MessageDataArray::index_type idx;
idx = data - mMessageData.Elements();
NS_ASSERTION(idx >= 0 && idx < mMessageData.Length(), "Attempted to delete MessageData that doesn't belong to this array!");
mMessageData.RemoveElementAt(idx);
}
bool
WindowHook::Notify(HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam,
LRESULT *aResult) {
MessageData *data = Lookup(nMsg);
if (!data)
return false;
uint32_t length = data->monitors.Length();
for (uint32_t midx = 0; midx < length; midx++) {
data->monitors[midx].Invoke(hWnd, nMsg, wParam, lParam, aResult);
}
return data->hook.Invoke(hWnd, nMsg, wParam, lParam, aResult);
}
bool
WindowHook::CallbackData::Invoke(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam,
LRESULT *aResult) {
if (!cb)
return false;
return cb(context, hWnd, msg, wParam, lParam, aResult);
}
} // namespace widget
} // namespace mozilla
|