Sending messages to non-windowed applications -- AllocateHWnd, DeallocateHWnd
http://delphi.about.com/od/windowsshellapi/l/aa093003a.htm
Page 1: How Delphi dispatches messages in windowed applications
Article submitted by Catalin Ionescu for the Delphi Programming Quickies Contest - Round #2 Winner!
Learn how to send signals to non-windowed applications by using AllocateHWND and DefWindowProc.
In this article we also briefly describe what Delphi does in the background to intercept Windows messages,
how can we write our own message handler for a windowed application and
how to obtain a unique message identifier that we can safely use in our applications.
We'll also discover and fix a small bug in the Delphi DeallocateHWND procedure along the route.
How Delphi dispatches messages in windowed applications
In the Windows environment a lot of messages flow in the background.
Each time the mouse is moved, a key is pressed, a window is moved or needs to be redrawn and in many other cases
one or more messages is generated and hopefully finds it's way to the appropriate message handler code
that understands and reacts appropriately to that very specific message.
To see some of the messages that are generated automatically by Windows or as a response to your input you can fire up WinSight and peek around.
If we need to receive and react to one of these messages in our application we need to write a message handler.
For example if we need to respond to Windows signaling our main form that it needs to erase the background
(WM_ERASEBKGND message) the typical code that we should place in the interface may be:
procedure WMEraseBkgnd(var Message: TWMEraseBkgnd); message WM_ERASEBKGND;
Then in the implementation part we would write the actual code that erases the form background.
This is called a message handler.
Delphi needs to do a lot of work in the background to call the above code for each WM_ERASEBKGND message generated by Windows.
First it needs to intercept all Windows messages targeted at our particular form.
Then it needs to sort them out based on the message identifier (WM_ERASEBKGND in the above example)
and find if we implemented a message handler for any of them.
In our above code we signal Delphi that we're only interested in receiving background erase notifications and not,
for instance, mouse clicks.
So Delphi calls our message handler for all background erase notifications and one of its own message handlers
for all other messages received by the form.
Fortunately Windows has a very convenient way of intercepting all messages passed to a form.
Each form has a window procedure that gets called for each and every message the form receives.
As a new form is created the operating system provides a default window procedure
that can be changed later by the application that owns the form if it needs to react on one or more messages.
This is exactly what Delphi does.
As each new form is created Delphi overrides the default window procedure with its own message interceptor and dispatcher.
It is then a simple matter of comparison to find the appropriate message handler,
either internal or written by us, for each specific message identifier.
Non-windowed?
If we write a non-windowed application, for instance a console application or a non-interactive service,
then Delphi doesn't have a default window procedure to intercept and thus we can't rely on him to call our message handler.
We need to write our own window procedure.
But, as our application doesn't have a window, neither do Windows provide us with a window procedure to intercept.
Isn't there a way to trick Windows in thinking we have a window? Find the answer on the next page...
Page 2: How to send messages to non-windowed applications
Now that you know how Delphi dispatches messages in windowed applications,
it's time to trick Windows in thinking we have a window in a non-windowed application
How to send messages to non-windowed applications
Isn't there a way to trick Windows in thinking we have a window?
We could create one but having tens of windows displayed all across the screen
just for the purpose of intercepting Windows messages is inaesthetical and unpractical.
What if we could create a window but mark it in such way so it is not displayed on the screen?
We could reach our goal of having a window procedure and
at the same time don't fill the screen with dummy empty windows.
Again Delphi VCL addresses this very specific need by providing a convenient wrapper that handles all the low-level API calls.
It provides two functions that must be used in pairs:
AllocateHWND and DeallocateHWND.
First one accepts a single parameter that is our window procedure
and the second one does the cleanup when we no longer need the invisible window.

We have created a sample application that shows the usage of AllocateHWND/DeallocateHWND functions.
To simulate a non-windowed application we will use a TThread descendent, defined as follows:
TTestThread = class(TThread)
private
FSignalShutdown: boolean;
{ hidden window handle }
FWinHandle: HWND;
protected
procedure Execute; override;
{ our window procedure }
procedure WndProc(var msg: TMessage);
public
constructor Create;
destructor Destroy; override;
procedure PrintMsg;
end;
Creating the hidden window
In the TTestThread constructor we create our hidden window which is destroyed in the TTestThread destructor:
constructor TTestThread.Create;
begin
FSignalShutdown := False;
{ create the hidden window, store it's handle and change the default window procedure provided by Windows with our window procedure }
FWinHandle := AllocateHWND(WndProc);
inherited Create(False);
end; destructor TTestThread.Destroy;
begin
{ destroy the hidden window and free up memory }
DeallocateHWnd(FWinHandle);
inherited;
end;
To test for the message routing we use a simple boolean (FSignalShutdown)
that we initially set to False in the constructor and
will hopefully be set to True in the window procedure (WndProc) upon receiving our message.
The window procedure
In order to keep things simple we have implemented a bare-bone window procedure as follows:
procedure TTestThread.WndProc(var msg: TMessage);
begin
if Msg.Msg = WM_SHUTDOWN_THREADS then
{ if the message id is WM_SHUTDOWN_THREADS do our own processing }
FSignalShutdown := True
else
{ for all other messages call the default window procedure }
Msg.Result := DefWindowProc(FWinHandle, Msg.Msg, Msg.wParam, Msg.lParam);
end;
This procedure is called for each and every Windows message,
so we need to filter out only those that are interesting,
in this case WM_SHUTDOWN_THREADS.
For all other messages that are not handled by our application remember to call the default Windows procedure.
Even if this is not so important for our non-visible non-interactive window
it is a good practice and missing this step may yield to unpredictable behaviors.
Message identifier?
If applications were to use arbitrary message id's their operation would soon interfere
and messages meant for one application would be interpreted in unknown and unwanted ways by others.
To prevent this Windows provides a way for each application or related applications to obtain a unique message identifier.
How? Find on the next page...
Page 3: Obtaining a unique message identifier. The DeallocateHWND bug.
Until now, we've covered how Delphi dispatches messages in windowed applications,
and how to send messages to non-windowed applications,
we move on to obtaining a unique message identifier.
Obtaining a unique message identifier
As stated on the previous page, if applications were to use arbitrary message id's their operation would soon interfere
and messages meant for one application would be interpreted in unknown and unwanted ways by others.
To prevent this Windows provides a way for each application or related applications to obtain a unique message identifier.
var
WM_SHUTDOWN_THREADS: Cardinal; procedure TfrmSgnThreads.FormCreate(Sender: TObject);
begin
WM_SHUTDOWN_THREADS := RegisterWindowMessage('TVS_Threads');
end;
We pass a unique string identifier to the RegisterWindowMessage and it returns a message identifier that is guaranteed to be unique across a Windows session.
The application
All that remains is to put all the above code together. You can download the full source code.
To test the application we create a few threads by pressing the New Thread button,
then notice how all of them correctly receive the WM_SHUTDOWN_THREADS message
when we press the Send Signal button.
To view the internal flow of code we printed a message when each thread is created and another message
when the thread receives the message and is destroyed.
Everything works as expected.
But as the threads and the hidden windows are destroyed
we will soon notice a lot of exceptions popping up.
DeallocateHWND bug
We tried to narrow down the source of the problem.
From the exception message we concluded there's probably a reference to unallocated memory at some point.
The only places where we deallocate memory are when the threads themselves are destroyed
and when the hidden window is destroyed.
First we moved the DeallocateHWND call to the Execute procedure and comment the FreeOnTerminate line,
so the threads don't destroy automatically:
procedure TTestThread.Execute;
begin
{ FreeOnTerminate := True; }
while NOT FSignalShutdown do
begin
Sleep();
end;
Synchronize(PrintMsg);
{ destroy the hidden window and free up memory }
DeallocateHWnd(FWinHandle);
end;
The errors still show up.
So it must be something related to the DeallocateHWND call
so we look at the Delphi DeallocateHWnd implementation which is in the Classes unit:
procedure DeallocateHWnd(Wnd: HWND);
var
Instance: Pointer;
begin
Instance := Pointer(GetWindowLong(Wnd, GWL_WNDPROC));
DestroyWindow(Wnd);
if Instance <> @DefWindowProc then FreeObjectInstance(Instance);
end;
At first glance everything looks fine.
The window is destroyed and the memory occupied by our window procedure is freed.
But... after we free up the memory occupied by our window procedure a few messages
are still routed to the hidden window
(yes, there are still messages routed to that window, including a bunch of WM_DESTROY and its relatives).
So Windows will try to reference an unallocated memory space
when trying to execute our window procedure and thus an exception will pop up.
The solution we have found is to slightly alter the DeallocateHWnd code to change back the window procedure
to the default one provided by Windows before we free up the memory for the code.
procedure TTestThread.DeallocateHWnd(Wnd: HWND);
var
Instance: Pointer;
begin
Instance := Pointer(GetWindowLong(Wnd, GWL_WNDPROC));
if Instance <> @DefWindowProc then
begin
{ make sure we restore the default
windows procedure before freeing memory }
SetWindowLong(Wnd, GWL_WNDPROC, Longint(@DefWindowProc));
FreeObjectInstance(Instance);
end;
DestroyWindow(Wnd);
end;
You can download the full source code of the application with the fix here.
We notice that all errors are gone and conclude the error was indeed in the DeallocateHWnd code.
If you have any questions or comments I would like to receive them in the Delphi Programming Forum
and I'll try to answer all to the best of my knowledge and abilities.
Sending messages to non-windowed applications -- AllocateHWnd, DeallocateHWnd的更多相关文章
- Socket.io 0.7 – Sending messages to individual clients
Note that this is just for Socket.io version 0.7, and possibly higher if they don’t change the API a ...
- Receive Windows Messages In Your Custom Delphi Class - NonWindowed Control - AllocateHWnd
http://delphi.about.com/od/windowsshellapi/a/receive-windows-messages-in-custom-delphi-class-nonwind ...
- Thread message loop for a thread with a hidden window? Make AllocateHwnd safe
Thread message loop for a thread with a hidden window? I have a Delphi 6 application that has a thre ...
- AllocateHwnd is not Thread-Safe
http://www.thedelphigeek.com/2007/06/allocatehwnd-is-not-thread-safe.html http://gp.17slon.com/gp/fi ...
- Fedora 24中的日志管理
Introduction Log files are files that contain messages about the system, including the kernel, servi ...
- Elixir - Hey, two great tastes that go great together!
这是Elixir的作者 José Valim 参与的一次技术访谈,很有料,我们可以了解Elixir的一些设计初衷,目标等等. 原文在: http://rubyrogues.com/114-rr-eli ...
- windows消息机制详解(转载)
消息,就是指Windows发出的一个通知,告诉应用程序某个事情发生了.例如,单击鼠标.改变窗口尺寸.按下键盘上的一个键都会使Windows发送一个消息给应用程序.消息本身是作为一个记录传递给应用程序的 ...
- actor concurrency
The hardware we rely on is changing rapidly as ever-faster chips are replaced by ever-increasing num ...
- GO语言的开源库
Indexes and search engines These sites provide indexes and search engines for Go packages: godoc.org ...
随机推荐
- blender2.7.4安装three.js插件
将three.js-master\utils\exporters\blender\addons 下面的io_three文件夹,拷贝到blender安装目录:blender-2.74-windows64 ...
- Lists
List类主要提供了对List类的子类构造以及操作的静态方法.在类中支持构造ArrayList.LinkedList以及newCopyOnWriteArrayList对象的方法.其中提供了以下构造Ar ...
- js画线
<body> <div id="main"> </div> <div id="fd" style="filt ...
- 1、android源代码下载与跟踪
学习Android源代码的目的 理解Android API查找API(Activity.Content Provider等) 高级应用开发(ROM定制) 在不同平台下载Android源代码 W ...
- Shapefile文件中的坐标绘制到屏幕时的映射模式设置
pDC->SetMapMode(MM_ANISOTROPIC ); //首先选择MM_ANISOTROPIC映射模式,其它映射模式都不合适 pDC->SetWindowExt( max(a ...
- git 换行符问题
git 换行符问题 在windows环境中 对于autocrlf = false 不会激发 关于换行符的处理 对于autocrlf = true 会在提交是将LF替换成CRLF 切出时时CRLF 对于 ...
- 【LeetCode】189 - Rotate Array
Rotate an array of n elements to the right by k steps. For example, with n = 7 and k = 3, the array ...
- vmware设置centos虚拟机nat联网(转载)
今天在vmware虚拟主机中安装hearbeat,为了使用最新的版本,选用编译安装了.在编译过程中,需要连接被墙的网站下载文件,那只能用vpn,但我使用的是桥接方式联网,使用不了真实主机的vpn,于是 ...
- C_functions
1.C常用函数分为如下几大类!! 1,字符测试函数. 2,字符串操作 3,内存管理函数 4,日期与时间函数 5,数学函数 6,文件操作函数 7,进程管理函数 8,文件权限控制 9,信号处理 10,接口 ...
- LINQ标准查询操作符(一)——select、SelectMany、Where、OrderBy、OrderByDescending、ThenBy、ThenByDescending和Reverse
一.投影操作符 1. Select Select操作符对单个序列或集合中的值进行投影.下面的示例中使用select从序列中返回Employee表的所有列: //查询语法 var query = fro ...