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 ...
随机推荐
- html中的特殊符号
html中的特殊符号 符号 说明 编码 符号 说明 编码 符号 说明 编码 " 双引号 " × 乘号 × ← 向左箭头 ← & AND符号 & ÷ 除号 ÷ ...
- bootstrap-datetimepicker在经过GC(Google Closure Compiler)压缩后无法使用的解决方案
将压缩级别由simple改成whitespace 问题就是这样之后压缩后的文件大了很多 <?xml version="1.0"?> <project name=& ...
- Masonry 固定宽度 等间距
-(void)makeEqualDisViews:(NSArray *)views inView:(UIView *)containerView LRpadding:(CGFloat)LRpaddin ...
- Android百度地图开发(三)范围搜索
// 1.新建项目 将地图API添加进classpath中: 2.在activity_main.xml中添加一个MapView,用来显示地图: <LinearLayout xmlns:andro ...
- Visual Studio 2010+Oracle 10g +NHibernate配置
南京酷都面试,考官问:你知道NHibernate吗?瞬间我就急了:只听说过Hibernate,NHibernate是什么?还有其他问题也是不知道,所以后果就悲剧了. 自己做一个小系统,总是想如果数据量 ...
- [转] Web前端优化之 Javascript篇
原文链接: http://lunax.info/archives/3099.html Web 前端优化最佳实践之 JavaScript 篇,这部分有 6 条规则,和 CSS 篇 重复的有几条.前端优化 ...
- [转]Python文件操作
前言 这里的“文件”不单单指磁盘上的普通文件,也指代任何抽象层面上的文件.例如:通过URL打开一个Web页面“文件”,Unix系统下进程间通讯也是通过抽象的进程“文件”进行的.由于使用了统一的接口,从 ...
- Hibernate中openSession() 与 getCurrentSession()的区别
1 getCurrentSession创建的session会和绑定到当前线程,而openSession每次创建新的session. 2 getCurrentSession创建的线程会在事务回滚或事物提 ...
- ionic 相关
基本操作 $cordova platform update android@5.0.0 $ npm install -g cordova ionic $ ionic start myApp tabs ...
- Maven 包命令
1.必须选中项目,然后单击Run As,选择Maven build. 2.在配置窗体中的Goals栏填写clean package. 注意:Installed JREs中配置的JREs的位置必须是JD ...