I am working on a program that uses keyboard hooks. However, when the PC that the program is running on is just slightly overloaded, it causes Windows to disconnect the hook from the program, causing it to no longer respond to keystrokes.

Is there a way to prevent this, or even better, propose a different way of solving the exact same problem, by using a different architecture, maybe involving a pipeline?

link|improve this question

1  
Which API call are you using to set up the hook? What evidence do you have that this keyboard hook gets disconnected on its own, as you are describing? Is this a documented issue, or does it only apply to your program? When you consume the keyboard hook, do you handle the incoming message quickly, by putting it in a buffer or something? – Brad Jul 18 '11 at 3:22
1  
@Brad: Definitely documented. Windows automatically uninstalls the hook if your app takes too long to respond. The asker has things a bit confused, though. Rather than figuring out a way to work around this, he needs to fix his application to be a good citizen. Fix the cause, rather than the symptom. – Cody Gray Jul 18 '11 at 6:40
feedback

3 Answers

up vote 1 down vote accepted

Cody Gray's response is excellent, but FWIW, and purely for testing purposes, you may be able to detect a disconnected hook.

When your hook proc is invoked, store the current tick count in a variable accessible to the main thread. In the main thread, periodically call GetLastInputInfo. It will give you the tick count for the last input event in the system (not just in your process). If the value provided by GetLastInputInfo is significantly later (newer) than your last hook proc tick count, it's a good guess that hook has been disconnected.

link|improve this answer
This is perfect! Thanks! Wow, how come I didn't think of that before? – Mathias Lykkegaard Lorenzen Feb 9 at 8:10
feedback

You can't "detect" this, and you absolutely shouldn't need to. What you're describing is a feature, specifically one introduced in Windows 7 to protect your system from rogue applications.

The applicable documentation describes it thusly (pay particular attention to the bolded section):

The hook procedure should process a message in less time than the data entry specified in the LowLevelHooksTimeout value in the following registry key:

HKEY_CURRENT_USER\Control Panel\Desktop

The value is in milliseconds. If the hook procedure times out, the system passes the message to the next hook. However, on Windows 7 and later, the hook is silently removed without being called. There is no way for the application to know whether the hook is removed.

The solution here is most certainly not to figure out a way to "detect" when the hook is uninstalled and reinstall it. You should have figured out that you're doing something wrong when the operating system uninstalled the hook the first time.

The actual solution is to redesign your application to return from the hook procedure more quickly. Ideally, you should return almost immediately. If you need to run some type of intensive calculation in response to the low level messages (and I can't really imagine why you would), then you should store the information you receive, return from the hook procedure, and do your processing at a later time (probably on a separate thread).

In fact, that's almost exactly what the documentation continues on to suggest:

Note: Debug hooks cannot track this type of low level keyboard hooks. If the application must use low level hooks, it should run the hooks on a dedicated thread that passes the work off to a worker thread and then immediately returns. In most cases where the application needs to use low level hooks, it should monitor raw input instead. This is because raw input can asynchronously monitor mouse and keyboard messages that are targeted for other threads more effectively than low level hooks can. For more information on raw input, see Raw Input.

link|improve this answer
The problem is that I display a Window when a specific keyboard combination is used. Now, when the CPU is under intense work, as an example rendering a 3D compilation in the background, the program fails, and the hook disconnects. – Mathias Lykkegaard Lorenzen Jul 18 '11 at 6:46
@Mathias: The important thing to note here is that returning from the hook procedure is orthogonal to your application's ability to respond to the message received in the hook procedure. You can still display the window upon receipt of that keyboard combination, you just can't delay returning from the hook procedure. As I mentioned, save the necessary information while you're in the hook proc and then return. Show the window on another thread at your and/or the computer's leisure. – Cody Gray Jul 18 '11 at 6:49
Cody is correct. Create a Queue data structure, then make the sole job of the hook to enqueue an item and quit. Make a separate thread in your process read that queue and do the associated action. – Paul Betts Jul 18 '11 at 16:00
Paul, even with that kind of approach, a heavy 3D render running in the background or something else breaks the hook. How can I prevent that? – Mathias Lykkegaard Lorenzen Jul 24 '11 at 22:48
@Mathias: How can that be? Windows is a pre-emptively scheduled operating system, and it takes an absolutely trivial amount of time to enqueue an item. – Cody Gray Jul 25 '11 at 3:17
feedback

I think there are some "bad-performance" code in your hook . that's the reason why makes slightly overload .

"it causes Windows to disconnect the hook from the program"

Does any error raise in your hook and you don't handle it ?

AFAIK, Windows wouldn't disconnect the hook if it works well by itself.

link|improve this answer
Windows will by default disconnect the hook if 1 keystroke takes longer than 200 ms to respond to. – Mathias Lykkegaard Lorenzen Jul 18 '11 at 5:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.