-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathJournalHook.cs
423 lines (384 loc) · 13.5 KB
/
JournalHook.cs
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
/*
* ManagedWinapi - A collection of .NET components that wrap PInvoke calls to
* access native API by managed code. http://mwinapi.sourceforge.net/
* Copyright (C) 2006, 2007 Michael Schierl
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; see the file COPYING. if not, visit
* http://www.gnu.org/licenses/lgpl.html or write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
using System.Runtime.InteropServices;
namespace ManagedWinapi.Hooks
{
/// <summary>
/// Abstract base class for hooks that can be used to create or playback
/// a log of keyboard and mouse events.
/// </summary>
public abstract class JournalHook : Hook
{
/// <summary>
/// Occurs when the journal activity has been cancelled by
/// CTRL+ALT+DEL or CTRL+ESC.
/// </summary>
public event EventHandler JournalCancelled;
private readonly LocalMessageHook lmh;
/// <summary>
/// Creates a new journal hook.
/// </summary>
public JournalHook(HookType type)
: base(type, true, false)
{
lmh = new LocalMessageHook();
lmh.MessageOccurred += new LocalMessageHook.MessageCallback(lmh_Callback);
}
private void lmh_Callback(System.Windows.Forms.Message msg)
{
if (msg.Msg == WM_CANCELJOURNAL)
{
hooked = false;
lmh.Unhook();
if (JournalCancelled != null)
{
JournalCancelled(this, new EventArgs());
}
}
}
/// <summary>
/// Hooks the hook.
/// </summary>
public override void StartHook()
{
if (Hooked) return;
lmh.StartHook();
base.StartHook();
}
/// <summary>
/// Unhooks the hook.
/// </summary>
public override void Unhook()
{
if (!Hooked) return;
base.Unhook();
lmh.Unhook();
}
#region PInvoke Declarations
private static readonly int WM_CANCELJOURNAL = 0x4B;
[StructLayout(LayoutKind.Sequential)]
internal struct EVENTMSG
{
public uint message;
public uint paramL;
public uint paramH;
public int time;
public IntPtr hWnd;
}
#endregion
}
/// <summary>
/// An event that has been recorded by a journal hook.
/// </summary>
public class JournalMessage
{
internal static JournalMessage Create(JournalHook.EVENTMSG msg)
{
return new JournalMessage(msg);
}
private JournalHook.EVENTMSG msg;
private JournalMessage(JournalHook.EVENTMSG msg)
{
this.msg = msg;
}
/// <summary>
/// Creates a new journal message.
/// </summary>
public JournalMessage(IntPtr hWnd, uint message, uint paramL, uint paramH, uint time)
{
msg = new JournalHook.EVENTMSG();
msg.hWnd = hWnd;
msg.message = message;
msg.paramL = paramL;
msg.paramH = paramH;
msg.time = 0;
}
/// <summary>
/// The window this message has been sent to.
/// </summary>
public IntPtr HWnd { get { return msg.hWnd; } }
/// <summary>
/// The message.
/// </summary>
public uint Message { get { return msg.message; } }
/// <summary>
/// The first parameter of the message.
/// </summary>
public uint ParamL { get { return msg.paramL; } }
/// <summary>
/// The second parameter of the message.
/// </summary>
public uint ParamH { get { return msg.paramH; } }
/// <summary>
/// The timestamp of the message.
/// </summary>
public int Time
{
get { return msg.time; }
set { msg.time = value; }
}
/// <summary>
/// Returns a System.String that represents the current System.Object.
/// </summary>
public override string ToString()
{
return "JournalMessage[hWnd=" + msg.hWnd + ",message=" + msg.message + ",L=" + msg.paramL +
",H=" + msg.paramH + ",time=" + msg.time + "]";
}
}
/// <summary>
/// Event data for a journal record event.
/// </summary>
public class JournalRecordEventArgs : EventArgs
{
private JournalMessage msg;
internal JournalRecordEventArgs(JournalMessage msg)
{
this.msg = msg;
}
/// <summary>
/// The recorded message.
/// </summary>
public JournalMessage RecordedMessage
{
get { return msg; }
}
}
/// <summary>
/// A hook that can be used to create a log of keyboard and mouse events.
/// </summary>
public class JournalRecordHook : JournalHook
{
/// <summary>
/// Occurs when a system modal dialog appears. This may be used
/// to stop recording.
/// </summary>
public event EventHandler SystemModalDialogAppeared;
/// <summary>
/// Occurs when a system modal dialog disappears. This may be used
/// to continue recording.
/// </summary>
public event EventHandler SystemModalDialogDisappeared;
/// <summary>
/// Occurs when an event can be recorded.
/// </summary>
public event EventHandler<JournalRecordEventArgs> RecordEvent;
/// <summary>
/// Creates a new journal record hook.
/// </summary>
public JournalRecordHook()
: base(HookType.WH_JOURNALRECORD)
{
base.Callback += JournalRecordHook_Callback;
}
private int JournalRecordHook_Callback(int code, IntPtr wParam, IntPtr lParam, ref bool callNext)
{
if (code == HC_ACTION)
{
EVENTMSG em = (EVENTMSG)Marshal.PtrToStructure(lParam, typeof(EVENTMSG));
JournalMessage jm = JournalMessage.Create(em);
if (RecordEvent != null)
{
RecordEvent(this, new JournalRecordEventArgs(jm));
}
}
else if (code == HC_SYSMODALON)
{
if (SystemModalDialogAppeared != null)
{
SystemModalDialogAppeared(this, new EventArgs());
}
}
else if (code == HC_SYSMODALOFF)
{
if (SystemModalDialogDisappeared != null)
{
SystemModalDialogDisappeared(this, new EventArgs());
}
}
return 0;
}
}
/// <summary>
/// A hook that can be used to playback a log of keyboard and mouse events.
/// </summary>
public class JournalPlaybackHook : JournalHook
{
/// <summary>
/// Occurs when a system modal dialog appears. This may be used to
/// stop playback.
/// </summary>
public event EventHandler SystemModalDialogAppeared;
/// <summary>
/// Occurs when a system modal dialog disappears. This may be used
/// to continue playback.
/// </summary>
public event EventHandler SystemModalDialogDisappeared;
/// <summary>
/// Occurs when the next journal message is needed. If the message is
/// <null/> and a timestamp in the future, it just waits for that time and
/// asks for a message again. If the message is <null/> and the timestamp is
/// in the past, playback stops.
/// </summary>
public event JournalQuery GetNextJournalMessage;
private int nextEventTime = 0;
private JournalMessage nextEvent = null;
/// <summary>
/// Represents a method that yields the next journal message.
/// </summary>
public delegate JournalMessage JournalQuery(ref int timestamp);
/// <summary>
/// Creates a new journal playback hook.
/// </summary>
public JournalPlaybackHook()
: base(HookType.WH_JOURNALPLAYBACK)
{
base.Callback += JournalPlaybackHook_Callback;
}
private int JournalPlaybackHook_Callback(int code, IntPtr wParam, IntPtr lParam, ref bool callNext)
{
if (code == HC_GETNEXT)
{
callNext = false;
int tick = Environment.TickCount;
if (nextEventTime > tick)
{
return nextEventTime - tick;
}
if (nextEvent == null)
{
nextEventTime = 0;
nextEvent = GetNextJournalMessage(ref nextEventTime);
if (nextEventTime <= tick)
{
if (nextEvent == null)
{
// shutdown the hook
Unhook();
return 1;
}
else
{
nextEventTime = nextEvent.Time;
}
}
if (nextEventTime > tick)
{
return nextEventTime - tick;
}
}
// now we have the next event, which should be sent
EVENTMSG em = (EVENTMSG)Marshal.PtrToStructure(lParam, typeof(EVENTMSG));
em.hWnd = nextEvent.HWnd;
em.time = nextEvent.Time;
em.message = nextEvent.Message;
em.paramH = nextEvent.ParamH;
em.paramL = nextEvent.ParamL;
Marshal.StructureToPtr(em, lParam, false);
return 0;
}
else if (code == HC_SKIP)
{
nextEvent = null;
nextEventTime = 0;
}
else if (code == HC_SYSMODALON)
{
if (SystemModalDialogAppeared != null)
SystemModalDialogAppeared(this, new EventArgs());
}
else if (code == HC_SYSMODALOFF)
{
if (SystemModalDialogDisappeared != null)
SystemModalDialogDisappeared(this, new EventArgs());
}
return 0;
}
}
/// <summary>
/// Convenience class that uses a journal playback hook to block keyboard
/// and mouse input for some time.
/// </summary>
public class InputLocker : IDisposable
{
private int interval, count;
private JournalPlaybackHook hook;
/// <summary>
/// Locks the input for <code>interval * count</code> milliseconds. The
/// lock can be canceled every <code>interval</code> milliseconds. If count is
/// negative, the lock will be active until cancelled.
/// </summary>
/// <param name="interval">The interval to lock the input.</param>
/// <param name="count">How often to lock the input.</param>
/// <param name="force">If <code>true</code>, the lock cannot be canceled
/// by pressing Control+Alt+Delete</param>
public InputLocker(int interval, int count, bool force)
{
this.interval = interval;
this.count = count;
hook = new JournalPlaybackHook();
hook.GetNextJournalMessage += new JournalPlaybackHook.JournalQuery(hook_GetNextJournalMessage);
if (force)
hook.JournalCancelled += new EventHandler(hook_JournalCancelled);
hook.StartHook();
}
private void hook_JournalCancelled(object sender, EventArgs e)
{
if (count >= 0) count++;
hook.StartHook();
}
private JournalMessage hook_GetNextJournalMessage(ref int timestamp)
{
if (count == 0) return null;
timestamp = Environment.TickCount + interval;
if (count > 0) count--;
return null;
}
/// <summary>
/// Unlocks the input.
/// </summary>
public void Unlock()
{
count = 0;
}
/// <summary>
/// Unlocks the input.
/// </summary>
public void Dispose()
{
Unlock();
hook.Dispose();
}
/// <summary>
/// Lock input for given number of milliseconds
/// </summary>
/// <param name="millis">Number of milliseconds to lock</param>
/// <param name="force">If <code>true</code>, the lock cannot be canceled
/// by pressing Control+Alt+Delete</param>
public static void LockInputFor(int millis, bool force)
{
new InputLocker(millis, 1, force);
}
}
}