2005-11-17 17:58:19 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2005, Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "EventDispatcher.h"
|
|
|
|
#include "EventStream.h"
|
|
|
|
#include "HWInterface.h"
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
#include "InputManager.h"
|
2005-11-17 17:58:19 +03:00
|
|
|
|
|
|
|
#include <Autolock.h>
|
|
|
|
#include <MessageFilter.h>
|
|
|
|
#include <View.h>
|
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
#include <new>
|
2005-11-17 17:58:19 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
//#define TRACE_EVENTS
|
|
|
|
#ifdef TRACE_EVENTS
|
|
|
|
# define ETRACE(x) printf x
|
|
|
|
#else
|
|
|
|
# define ETRACE(x) ;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
/*!
|
|
|
|
The differentiation between messenger and token looks odd, but it
|
|
|
|
really has a reason as well:
|
|
|
|
All events are sent to the window only - it may then use the token or
|
|
|
|
token list to identify the specific target view(s).
|
|
|
|
*/
|
|
|
|
struct EventDispatcher::event_target {
|
|
|
|
BMessenger messenger;
|
|
|
|
int32 token;
|
2005-11-21 19:25:23 +03:00
|
|
|
uint32 event_mask;
|
2005-11-17 21:46:55 +03:00
|
|
|
uint32 options;
|
2005-11-21 19:25:23 +03:00
|
|
|
uint32 temporary_event_mask;
|
2005-11-17 21:46:55 +03:00
|
|
|
uint32 temporary_options;
|
|
|
|
};
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
static const char* kTokenName = "_token";
|
2005-11-17 21:46:55 +03:00
|
|
|
|
2005-11-17 17:58:19 +03:00
|
|
|
static const float kMouseMovedImportance = 0.1f;
|
|
|
|
static const float kMouseTransitImportance = 1.0f;
|
|
|
|
static const float kStandardImportance = 0.9f;
|
2005-11-17 21:46:55 +03:00
|
|
|
static const float kListenerImportance = 0.8f;
|
2005-11-17 17:58:19 +03:00
|
|
|
|
|
|
|
|
|
|
|
EventDispatcher::EventDispatcher()
|
|
|
|
: BLocker("event dispatcher"),
|
|
|
|
fStream(NULL),
|
|
|
|
fThread(-1),
|
|
|
|
fCursorThread(-1),
|
2005-11-17 19:08:04 +03:00
|
|
|
fHasFocus(false),
|
|
|
|
fHasLastFocus(false),
|
2005-11-17 17:58:19 +03:00
|
|
|
fTransit(false),
|
2005-11-17 21:46:55 +03:00
|
|
|
fSuspendFocus(false),
|
2005-11-17 17:58:19 +03:00
|
|
|
fMouseFilter(NULL),
|
2005-11-18 16:51:32 +03:00
|
|
|
fKeyboardFilter(NULL),
|
2005-11-17 21:46:55 +03:00
|
|
|
fListeners(10, true),
|
|
|
|
// the list owns its items
|
2005-11-17 17:58:19 +03:00
|
|
|
fCursorLock("cursor loop lock"),
|
|
|
|
fHWInterface(NULL)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
EventDispatcher::~EventDispatcher()
|
|
|
|
{
|
|
|
|
_Unset();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
EventDispatcher::SetTo(EventStream* stream)
|
2005-11-17 17:58:19 +03:00
|
|
|
{
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
ETRACE(("event dispatcher: stream = %p\n", stream));
|
|
|
|
|
2005-11-17 17:58:19 +03:00
|
|
|
_Unset();
|
|
|
|
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
if (stream == NULL)
|
|
|
|
return B_OK;
|
|
|
|
|
|
|
|
fStream = stream;
|
2005-11-17 17:58:19 +03:00
|
|
|
return _Run();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t
|
|
|
|
EventDispatcher::InitCheck()
|
|
|
|
{
|
|
|
|
if (fStream != NULL) {
|
|
|
|
if (fThread < B_OK)
|
|
|
|
return fThread;
|
|
|
|
|
|
|
|
return B_OK;
|
|
|
|
}
|
|
|
|
return B_NO_INIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
EventDispatcher::_Unset()
|
|
|
|
{
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
if (fStream == NULL)
|
|
|
|
return;
|
|
|
|
|
2005-11-17 17:58:19 +03:00
|
|
|
fStream->SendQuit();
|
|
|
|
|
|
|
|
wait_for_thread(fThread, NULL);
|
|
|
|
wait_for_thread(fCursorThread, NULL);
|
|
|
|
|
|
|
|
fThread = fCursorThread = -1;
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
|
|
|
|
gInputManager->PutStream(fStream);
|
|
|
|
fStream = NULL;
|
2005-11-17 17:58:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t
|
|
|
|
EventDispatcher::_Run()
|
|
|
|
{
|
|
|
|
fThread = spawn_thread(_event_looper, "event loop",
|
|
|
|
B_REAL_TIME_DISPLAY_PRIORITY - 10, this);
|
|
|
|
if (fThread < B_OK)
|
|
|
|
return fThread;
|
|
|
|
|
|
|
|
if (fStream->SupportsCursorThread()) {
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
ETRACE(("event stream supports cursor thread!\n"));
|
|
|
|
|
2005-11-17 17:58:19 +03:00
|
|
|
fCursorThread = spawn_thread(_cursor_looper, "cursor loop",
|
|
|
|
B_REAL_TIME_DISPLAY_PRIORITY - 5, this);
|
|
|
|
if (resume_thread(fCursorThread) != B_OK) {
|
|
|
|
kill_thread(fCursorThread);
|
|
|
|
fCursorThread = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return resume_thread(fThread);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2005-11-18 16:21:07 +03:00
|
|
|
EventDispatcher::SetFocus(const BMessenger* messenger)
|
2005-11-17 17:58:19 +03:00
|
|
|
{
|
|
|
|
BAutolock _(this);
|
|
|
|
|
2005-11-18 16:21:07 +03:00
|
|
|
if ((messenger == NULL && !fHasFocus)
|
|
|
|
|| (messenger != NULL && fFocus == *messenger))
|
2005-11-17 17:58:19 +03:00
|
|
|
return;
|
|
|
|
|
2005-11-17 19:08:04 +03:00
|
|
|
fHasLastFocus = fHasFocus;
|
2005-11-17 21:46:55 +03:00
|
|
|
fLastFocusTokens.MakeEmpty();
|
|
|
|
|
|
|
|
if (fHasFocus) {
|
2005-11-17 19:08:04 +03:00
|
|
|
fLastFocus = fFocus;
|
2005-11-17 21:46:55 +03:00
|
|
|
fLastFocusTokens.AddList(&fFocusTokens);
|
|
|
|
}
|
2005-11-17 19:08:04 +03:00
|
|
|
|
|
|
|
fHasFocus = messenger != NULL;
|
2005-11-17 21:46:55 +03:00
|
|
|
fFocusTokens.MakeEmpty();
|
|
|
|
|
|
|
|
if (fHasFocus) {
|
2005-11-17 19:08:04 +03:00
|
|
|
fFocus = *messenger;
|
2005-11-18 16:21:07 +03:00
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
// add all tokens that target this messenger
|
2005-11-17 21:46:55 +03:00
|
|
|
for (int32 i = fListeners.CountItems(); i-- > 0;) {
|
|
|
|
event_target* target = fListeners.ItemAt(i);
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
if (target->messenger == fFocus)
|
2005-11-17 21:46:55 +03:00
|
|
|
fFocusTokens.AddItem((void *)target->token);
|
|
|
|
}
|
|
|
|
}
|
2005-11-17 19:08:04 +03:00
|
|
|
|
2005-11-17 17:58:19 +03:00
|
|
|
fTransit = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
EventDispatcher::event_target*
|
2005-11-18 18:50:30 +03:00
|
|
|
EventDispatcher::_FindListener(const BMessenger& messenger, int32 token,
|
|
|
|
int32* _index)
|
2005-11-17 21:46:55 +03:00
|
|
|
{
|
|
|
|
for (int32 i = fListeners.CountItems(); i-- > 0;) {
|
|
|
|
event_target* target = fListeners.ItemAt(i);
|
|
|
|
|
|
|
|
if (target->token == token && target->messenger == messenger) {
|
|
|
|
if (_index)
|
|
|
|
*_index = i;
|
|
|
|
return target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-18 18:50:30 +03:00
|
|
|
/*!
|
|
|
|
\brief Adds the specified listener or updates its event mask and options
|
|
|
|
if already added.
|
|
|
|
|
|
|
|
It follows the BView semantics in that specifiying an event mask of zero
|
|
|
|
leaves the event mask untouched and just updates the options.
|
|
|
|
*/
|
2005-11-17 21:46:55 +03:00
|
|
|
bool
|
2005-11-18 18:50:30 +03:00
|
|
|
EventDispatcher::_AddListener(const BMessenger& messenger, int32 token,
|
2005-11-21 19:25:23 +03:00
|
|
|
uint32 eventMask, uint32 options, bool temporary)
|
2005-11-17 21:46:55 +03:00
|
|
|
{
|
|
|
|
BAutolock _(this);
|
|
|
|
event_target* target = _FindListener(messenger, token);
|
|
|
|
if (target != NULL) {
|
|
|
|
// we already have this target, update its event mask
|
|
|
|
if (temporary) {
|
2005-11-21 19:25:23 +03:00
|
|
|
if (eventMask != 0)
|
|
|
|
target->temporary_event_mask = eventMask;
|
2005-11-17 21:46:55 +03:00
|
|
|
target->temporary_options = options;
|
|
|
|
} else {
|
2005-11-21 19:25:23 +03:00
|
|
|
if (eventMask != 0)
|
|
|
|
target->event_mask = eventMask;
|
2005-11-17 21:46:55 +03:00
|
|
|
target->options = options;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
if (eventMask == 0)
|
2005-11-18 18:50:30 +03:00
|
|
|
return false;
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
ETRACE(("events: add listener: token %ld, eventMask = %ld, options = %ld, %s\n",
|
|
|
|
token, eventMask, options, temporary ? "temporary" : "permanent"));
|
2005-11-20 19:03:11 +03:00
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
// we need a new target
|
|
|
|
|
|
|
|
target = new (std::nothrow) event_target;
|
|
|
|
if (target == NULL)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
target->messenger = messenger;
|
|
|
|
target->token = token;
|
|
|
|
|
|
|
|
if (temporary) {
|
2005-11-21 19:25:23 +03:00
|
|
|
target->event_mask = 0;
|
2005-11-17 21:46:55 +03:00
|
|
|
target->options = 0;
|
2005-11-21 19:25:23 +03:00
|
|
|
target->temporary_event_mask = eventMask;
|
2005-11-17 21:46:55 +03:00
|
|
|
target->temporary_options = options;
|
|
|
|
if (options & B_SUSPEND_VIEW_FOCUS)
|
|
|
|
fSuspendFocus = true;
|
|
|
|
} else {
|
2005-11-21 19:25:23 +03:00
|
|
|
target->event_mask = eventMask;
|
2005-11-17 21:46:55 +03:00
|
|
|
target->options = options;
|
2005-11-21 19:25:23 +03:00
|
|
|
target->temporary_event_mask = 0;
|
2005-11-17 21:46:55 +03:00
|
|
|
target->temporary_options = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool success = fListeners.AddItem(target);
|
|
|
|
if (success) {
|
2005-11-21 19:25:23 +03:00
|
|
|
if (fHasFocus && fFocus == messenger) {
|
2005-11-17 21:46:55 +03:00
|
|
|
// add this token to the current token list
|
2005-11-21 19:25:23 +03:00
|
|
|
ETRACE((" add token %ld to focus list\n", token));
|
2005-11-17 21:46:55 +03:00
|
|
|
fFocusTokens.AddItem((void *)token);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
delete target;
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
void
|
|
|
|
EventDispatcher::_RemoveTemporaryListener(event_target* target, int32 index)
|
|
|
|
{
|
|
|
|
if (target->event_mask == 0) {
|
|
|
|
// this is only a temporary target
|
|
|
|
fListeners.RemoveItemAt(index);
|
|
|
|
|
|
|
|
ETRACE(("events: remove temp. listener: token %ld, eventMask = %ld, options = %ld\n",
|
|
|
|
target->token, target->temporary_event_mask, target->temporary_options));
|
|
|
|
|
|
|
|
if (fHasFocus && fFocus == target->messenger) {
|
|
|
|
// remove this token from the current token list
|
|
|
|
ETRACE((" remove token %ld from focus list\n",
|
|
|
|
target->token));
|
|
|
|
fFocusTokens.RemoveItem((void *)target->token);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete target;
|
|
|
|
} else if (target->temporary_event_mask != 0) {
|
|
|
|
ETRACE(("events: clear temp. listener: token %ld, eventMask = %ld, options = %ld\n",
|
|
|
|
target->token, target->temporary_event_mask, target->temporary_options));
|
|
|
|
|
|
|
|
target->temporary_event_mask = 0;
|
|
|
|
target->temporary_options = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
void
|
|
|
|
EventDispatcher::_RemoveTemporaryListeners()
|
|
|
|
{
|
|
|
|
for (int32 i = fListeners.CountItems(); i-- > 0;) {
|
|
|
|
event_target* target = fListeners.ItemAt(i);
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
_RemoveTemporaryListener(target, i);
|
2005-11-17 21:46:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
2005-11-18 18:50:30 +03:00
|
|
|
EventDispatcher::AddListener(const BMessenger& messenger, int32 token,
|
2005-11-21 19:25:23 +03:00
|
|
|
uint32 eventMask, uint32 options)
|
2005-11-17 21:46:55 +03:00
|
|
|
{
|
2005-11-21 19:25:23 +03:00
|
|
|
options &= B_NO_POINTER_HISTORY;
|
|
|
|
// that's currently the only allowed option
|
|
|
|
|
|
|
|
return _AddListener(messenger, token, eventMask, options, false);
|
2005-11-17 21:46:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
2005-11-18 18:50:30 +03:00
|
|
|
EventDispatcher::AddTemporaryListener(const BMessenger& messenger,
|
2005-11-21 19:25:23 +03:00
|
|
|
int32 token, uint32 eventMask, uint32 options)
|
2005-11-17 21:46:55 +03:00
|
|
|
{
|
2005-11-21 19:25:23 +03:00
|
|
|
return _AddListener(messenger, token, eventMask, options, true);
|
2005-11-17 21:46:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2005-11-18 18:50:30 +03:00
|
|
|
EventDispatcher::RemoveListener(const BMessenger& messenger, int32 token)
|
|
|
|
{
|
|
|
|
BAutolock _(this);
|
2005-11-20 19:03:11 +03:00
|
|
|
ETRACE(("events: remove listener token %ld\n", token));
|
2005-11-18 18:50:30 +03:00
|
|
|
|
|
|
|
int32 index;
|
|
|
|
event_target* target = _FindListener(messenger, token, &index);
|
|
|
|
if (target == NULL)
|
|
|
|
return;
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
if (target->temporary_event_mask != 0) {
|
2005-11-18 18:50:30 +03:00
|
|
|
// we still need this event
|
2005-11-21 19:25:23 +03:00
|
|
|
target->event_mask = 0;
|
2005-11-18 18:50:30 +03:00
|
|
|
target->options = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
if (fHasFocus && fFocus == target->messenger) {
|
|
|
|
// remove this token from the current token list
|
|
|
|
ETRACE((" remove token %ld from focus list\n",
|
|
|
|
target->token));
|
|
|
|
fFocusTokens.RemoveItem((void *)target->token);
|
|
|
|
}
|
|
|
|
|
2005-11-18 18:50:30 +03:00
|
|
|
fListeners.RemoveItemAt(index);
|
|
|
|
delete target;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
EventDispatcher::RemoveTemporaryListener(const BMessenger& messenger, int32 token)
|
2005-11-17 21:46:55 +03:00
|
|
|
{
|
|
|
|
BAutolock _(this);
|
|
|
|
|
|
|
|
int32 index;
|
|
|
|
event_target* target = _FindListener(messenger, token, &index);
|
|
|
|
if (target == NULL)
|
|
|
|
return;
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
_RemoveTemporaryListener(target, index);
|
2005-11-17 21:46:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-17 17:58:19 +03:00
|
|
|
void
|
|
|
|
EventDispatcher::SetMouseFilter(BMessageFilter* filter)
|
|
|
|
{
|
|
|
|
BAutolock _(this);
|
|
|
|
|
|
|
|
if (fMouseFilter == filter)
|
|
|
|
return;
|
|
|
|
|
|
|
|
delete fMouseFilter;
|
|
|
|
fMouseFilter = filter;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2005-11-18 16:51:32 +03:00
|
|
|
EventDispatcher::SetKeyboardFilter(BMessageFilter* filter)
|
2005-11-17 17:58:19 +03:00
|
|
|
{
|
|
|
|
BAutolock _(this);
|
|
|
|
|
2005-11-18 16:51:32 +03:00
|
|
|
if (fKeyboardFilter == filter)
|
2005-11-17 17:58:19 +03:00
|
|
|
return;
|
|
|
|
|
2005-11-18 16:51:32 +03:00
|
|
|
delete fKeyboardFilter;
|
|
|
|
fKeyboardFilter = filter;
|
2005-11-17 17:58:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
EventDispatcher::HasCursorThread()
|
|
|
|
{
|
|
|
|
return fCursorThread >= B_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Sets the HWInterface to use when moving the mouse cursor.
|
|
|
|
\a interface is allowed to be NULL.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
EventDispatcher::SetHWInterface(HWInterface* interface)
|
|
|
|
{
|
|
|
|
BAutolock _(fCursorLock);
|
|
|
|
|
|
|
|
fHWInterface = interface;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
/*!
|
|
|
|
\brief Sends \a message to the provided \a messenger.
|
|
|
|
|
|
|
|
TODO: the following feature is not yet implemented:
|
|
|
|
If the message could not be delivered immediately, it is included
|
|
|
|
in a waiting message queue with a fixed length - the least important
|
|
|
|
messages are removed first when that gets full.
|
|
|
|
|
|
|
|
Returns "false" if the target port does not exist anymore, "true"
|
|
|
|
if it doesn't.
|
|
|
|
*/
|
|
|
|
bool
|
2005-11-17 19:08:04 +03:00
|
|
|
EventDispatcher::_SendMessage(BMessenger& messenger, BMessage* message,
|
2005-11-17 17:58:19 +03:00
|
|
|
float importance)
|
|
|
|
{
|
|
|
|
// TODO: add failed messages to a queue, and start dropping them by importance
|
|
|
|
|
2005-11-17 19:08:04 +03:00
|
|
|
status_t status = messenger.SendMessage(message, (BHandler*)NULL, 100000);
|
2005-11-17 17:58:19 +03:00
|
|
|
if (status != B_OK)
|
|
|
|
printf("failed to send message to target: %lx\n", message->what);
|
2005-11-17 21:46:55 +03:00
|
|
|
|
|
|
|
if (status == B_BAD_PORT_ID) {
|
|
|
|
// the target port is gone
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2005-11-17 17:58:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
EventDispatcher::_SetTransit(BMessage* message, int32 transit)
|
|
|
|
{
|
|
|
|
if (message->ReplaceInt32("be:transit", transit) != B_OK)
|
|
|
|
message->AddInt32("be:transit", transit);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
void
|
|
|
|
EventDispatcher::_UnsetTransit(BMessage* message)
|
|
|
|
{
|
|
|
|
message->RemoveName("be:transit");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
EventDispatcher::_AddTokens(BMessage* message, BList& tokens)
|
|
|
|
{
|
|
|
|
_RemoveTokens(message);
|
|
|
|
|
|
|
|
int32 count = tokens.CountItems();
|
|
|
|
for (int32 i = count; i-- > 0;) {
|
|
|
|
int32 token = (int32)tokens.ItemAt(i);
|
2005-11-21 19:25:23 +03:00
|
|
|
ETRACE((" add token %ld\n", token));
|
2005-11-17 21:46:55 +03:00
|
|
|
|
|
|
|
if (message->AddInt32(kTokenName, token) != B_OK)
|
|
|
|
count--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return count != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
EventDispatcher::_RemoveTokens(BMessage* message)
|
|
|
|
{
|
|
|
|
message->RemoveName(kTokenName);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
EventDispatcher::_SetToken(BMessage* message, int32 token)
|
|
|
|
{
|
|
|
|
if (message->ReplaceInt32(kTokenName, token) != B_OK)
|
|
|
|
message->AddInt32(kTokenName, token);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-17 17:58:19 +03:00
|
|
|
void
|
|
|
|
EventDispatcher::_EventLoop()
|
|
|
|
{
|
|
|
|
BMessage* event;
|
|
|
|
while (fStream->GetNextEvent(&event)) {
|
|
|
|
if (event == NULL) {
|
|
|
|
// may happen in out of memory situations or junk at the port
|
|
|
|
// we can't do anything about those yet
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
BAutolock _(this);
|
2005-11-17 21:46:55 +03:00
|
|
|
|
2005-11-17 19:08:04 +03:00
|
|
|
bool sendToLastFocus = false;
|
2005-11-17 21:46:55 +03:00
|
|
|
bool pointerEvent = false;
|
|
|
|
bool keyboardEvent = false;
|
|
|
|
bool addedTransit = false;
|
|
|
|
bool addedTokens = false;
|
2005-11-17 17:58:19 +03:00
|
|
|
|
|
|
|
switch (event->what) {
|
|
|
|
case B_MOUSE_MOVED:
|
|
|
|
if (!HasCursorThread()) {
|
|
|
|
// there is no cursor thread, we need to move the cursor ourselves
|
|
|
|
BAutolock _(fCursorLock);
|
|
|
|
|
|
|
|
BPoint where;
|
|
|
|
if (fHWInterface != NULL && event->FindPoint("where", &where) == B_OK)
|
|
|
|
fHWInterface->MoveCursorTo(where.x, where.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fTransit) {
|
|
|
|
// target has changed, we need to add the be:transit field
|
|
|
|
// to the message
|
2005-11-17 19:08:04 +03:00
|
|
|
if (fHasLastFocus) {
|
2005-11-17 17:58:19 +03:00
|
|
|
_SetTransit(event, B_EXITED_VIEW);
|
2005-11-17 21:46:55 +03:00
|
|
|
addedTokens = _AddTokens(event, fLastFocusTokens);
|
2005-11-17 17:58:19 +03:00
|
|
|
_SendMessage(fLastFocus, event, kMouseTransitImportance);
|
2005-11-17 19:08:04 +03:00
|
|
|
sendToLastFocus = true;
|
2005-11-17 17:58:19 +03:00
|
|
|
|
|
|
|
// we no longer need the last focus messenger
|
2005-11-17 19:08:04 +03:00
|
|
|
fHasLastFocus = false;
|
2005-11-17 21:46:55 +03:00
|
|
|
fLastFocusTokens.MakeEmpty();
|
2005-11-17 17:58:19 +03:00
|
|
|
}
|
2005-11-17 19:08:04 +03:00
|
|
|
if (fHasFocus)
|
2005-11-17 17:58:19 +03:00
|
|
|
_SetTransit(event, B_ENTERED_VIEW);
|
2005-11-17 21:46:55 +03:00
|
|
|
|
|
|
|
fTransit = false;
|
|
|
|
addedTransit = true;
|
2005-11-17 17:58:19 +03:00
|
|
|
}
|
|
|
|
// supposed to fall through
|
|
|
|
case B_MOUSE_DOWN:
|
|
|
|
case B_MOUSE_UP:
|
|
|
|
if (fMouseFilter != NULL
|
2005-11-21 19:25:23 +03:00
|
|
|
&& fMouseFilter->Filter(event, NULL) == B_SKIP_MESSAGE) {
|
|
|
|
// this is a work-around if the wrong B_MOUSE_UP
|
|
|
|
// event is filtered out
|
|
|
|
if (event->what == B_MOUSE_UP) {
|
|
|
|
fSuspendFocus = false;
|
|
|
|
_RemoveTemporaryListeners();
|
|
|
|
}
|
2005-11-17 17:58:19 +03:00
|
|
|
break;
|
2005-11-21 19:25:23 +03:00
|
|
|
}
|
2005-11-17 17:58:19 +03:00
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
pointerEvent = true;
|
|
|
|
|
2005-11-17 19:08:04 +03:00
|
|
|
if (fHasFocus) {
|
2005-11-17 21:46:55 +03:00
|
|
|
addedTokens |= _AddTokens(event, fFocusTokens);
|
2005-11-17 19:08:04 +03:00
|
|
|
_SendMessage(fFocus, event, event->what == B_MOUSE_MOVED
|
|
|
|
? kMouseMovedImportance : kStandardImportance);
|
|
|
|
}
|
2005-11-17 17:58:19 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case B_KEY_DOWN:
|
|
|
|
case B_KEY_UP:
|
|
|
|
case B_UNMAPPED_KEY_DOWN:
|
|
|
|
case B_UNMAPPED_KEY_UP:
|
|
|
|
case B_MODIFIERS_CHANGED:
|
2005-11-18 16:51:32 +03:00
|
|
|
if (fKeyboardFilter != NULL
|
|
|
|
&& fKeyboardFilter->Filter(event, NULL) == B_SKIP_MESSAGE)
|
2005-11-17 17:58:19 +03:00
|
|
|
break;
|
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
keyboardEvent = true;
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
if (fHasFocus && _AddTokens(event, fFocusTokens)) {
|
|
|
|
// if tokens were added, we need to explicetly suspend
|
|
|
|
// focus in the event - if not, the event is simply not
|
|
|
|
// forwarded to the target
|
|
|
|
addedTokens = true;
|
|
|
|
|
|
|
|
if (fSuspendFocus)
|
|
|
|
event->AddBool("_suspend_focus", true);
|
|
|
|
}
|
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
// supposed to fall through
|
|
|
|
|
2005-11-17 17:58:19 +03:00
|
|
|
default:
|
2005-11-21 19:25:23 +03:00
|
|
|
if (fHasFocus && (!fSuspendFocus || addedTokens))
|
2005-11-17 19:08:04 +03:00
|
|
|
_SendMessage(fFocus, event, kStandardImportance);
|
2005-11-17 17:58:19 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-11-17 21:46:55 +03:00
|
|
|
if (keyboardEvent || pointerEvent) {
|
|
|
|
// send the event to the additional listeners
|
|
|
|
|
|
|
|
if (addedTransit)
|
|
|
|
_UnsetTransit(event);
|
|
|
|
if (addedTokens)
|
|
|
|
_RemoveTokens(event);
|
|
|
|
|
|
|
|
for (int32 i = fListeners.CountItems(); i-- > 0;) {
|
|
|
|
event_target* target = fListeners.ItemAt(i);
|
|
|
|
|
|
|
|
// we already sent the event to the all focus and last focus tokens
|
|
|
|
if ((fHasFocus && target->messenger == fFocus)
|
|
|
|
|| (sendToLastFocus && target->messenger == fLastFocus))
|
|
|
|
continue;
|
|
|
|
|
2005-11-21 19:25:23 +03:00
|
|
|
uint32 effectiveEvents = target->event_mask | target->temporary_event_mask;
|
2005-11-17 21:46:55 +03:00
|
|
|
|
|
|
|
// make sure only those interested listeners get the message
|
|
|
|
if ((keyboardEvent && (effectiveEvents & B_KEYBOARD_EVENTS) == 0)
|
|
|
|
|| (pointerEvent && (effectiveEvents & B_POINTER_EVENTS) == 0))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
_SetToken(event, target->token);
|
|
|
|
if (!_SendMessage(target->messenger, event, event->what == B_MOUSE_MOVED
|
|
|
|
? kMouseMovedImportance : kListenerImportance)) {
|
|
|
|
// the target doesn't seem to exist anymore, let's remove this target
|
|
|
|
fListeners.RemoveItemAt(i);
|
|
|
|
delete target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event->what == B_MOUSE_UP) {
|
|
|
|
fSuspendFocus = false;
|
|
|
|
_RemoveTemporaryListeners();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-17 17:58:19 +03:00
|
|
|
delete event;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
EventDispatcher::_CursorLoop()
|
|
|
|
{
|
|
|
|
BPoint where;
|
|
|
|
while (fStream->GetNextCursorPosition(where)) {
|
|
|
|
BAutolock _(fCursorLock);
|
|
|
|
|
|
|
|
if (fHWInterface != NULL)
|
|
|
|
fHWInterface->MoveCursorTo(where.x, where.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
fCursorThread = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*static*/
|
|
|
|
status_t
|
|
|
|
EventDispatcher::_event_looper(void* _dispatcher)
|
|
|
|
{
|
|
|
|
EventDispatcher* dispatcher = (EventDispatcher*)_dispatcher;
|
|
|
|
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
ETRACE(("Start event loop\n"));
|
2005-11-17 17:58:19 +03:00
|
|
|
dispatcher->_EventLoop();
|
|
|
|
return B_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*static*/
|
|
|
|
status_t
|
|
|
|
EventDispatcher::_cursor_looper(void* _dispatcher)
|
|
|
|
{
|
|
|
|
EventDispatcher* dispatcher = (EventDispatcher*)_dispatcher;
|
|
|
|
|
* the new input event dispatcher is now actually used, although it doesn't
distribute any messages to the clients yet.
* removed the working thread from RootLayer - for now, its event handlers are
still called using input filters in the new event dispatcher, though (to
get things started).
* ServerApp is now using a BMessenger to identify its client, and no longer
stores the port/token separately.
* the input_server handshake is a bit simpler now, as it can now just reply
to the app_server message, removed unused code from ServerProtocol.h
* calmed down the MultiLocker (it always printed thread statistics on startup,
because it's compiled in debug mode).
* removed the cursor thread stuff from AppServer.cpp
* the new event dispatcher now uses a cursor thread when supported (only in
native mode, not in the test environment), although it improves cursor
movement under Qemu, the effect is not as good as expected - this might
need some more investigations (might just be a thread priority problem).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-11-18 14:30:06 +03:00
|
|
|
ETRACE(("Start cursor loop\n"));
|
2005-11-17 17:58:19 +03:00
|
|
|
dispatcher->_CursorLoop();
|
|
|
|
return B_OK;
|
|
|
|
}
|