forked from sabrogden/Ditto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClipboardViewer.cpp
450 lines (379 loc) · 9.77 KB
/
ClipboardViewer.cpp
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
// ClipboardViewer.cpp : implementation file
//
#include "stdafx.h"
#include "cp_main.h"
#include "ClipboardViewer.h"
#include "Misc.h"
#include "shared/Tokenizer.h"
#include "WildCardMatch.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CClipboardViewer
CClipboardViewer::CClipboardViewer(CCopyThread* pHandler) :
m_hNextClipboardViewer(0),
m_bCalling_SetClipboardViewer(false),
m_pHandler(pHandler),
m_bPinging(false),
m_bIsConnected(false),
m_bConnect(false),
m_dwLastCopy(0),
m_connectOnStartup(true)
{
m_activeWindowTitle = _T("");
m_activeWindow = _T("");
}
CClipboardViewer::~CClipboardViewer()
{
}
BEGIN_MESSAGE_MAP(CClipboardViewer, CWnd)
//{{AFX_MSG_MAP(CClipboardViewer)
ON_WM_CREATE()
ON_WM_CHANGECBCHAIN()
ON_WM_DRAWCLIPBOARD()
ON_WM_TIMER()
ON_WM_DESTROY()
//}}AFX_MSG_MAP
ON_MESSAGE(WM_SETCONNECT, OnSetConnect)
ON_MESSAGE(WM_CLIPBOARDUPDATE, OnClipboardChange)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CClipboardViewer message handlers
void CClipboardViewer::Create()
{
CString strParentClass = AfxRegisterWndClass(0);
CWnd::CreateEx(0, strParentClass, _T("Ditto Clipboard Viewer"), 0, -1, -1, 0, 0, 0, 0);
if(m_connectOnStartup)
{
SetConnect(true);
}
}
// connects as a clipboard viewer
void CClipboardViewer::Connect()
{
Log(_T("Connect to Clipboard"));
m_bCalling_SetClipboardViewer = true;
bool useSetClipboardWnd = true;
if(IsVista())
{
HMODULE hUser32 = LoadLibrary(_T("USER32.dll"));
if (hUser32)
{
typedef BOOL (__stdcall *AddClipFormatListener)( HWND hwnd );
AddClipFormatListener addListener = (AddClipFormatListener) GetProcAddress(hUser32, "AddClipboardFormatListener");
if(addListener)
{
Log(_T("Connecting to clipboard with function AddClipboardFormatListener"));
useSetClipboardWnd = false;
addListener(m_hWnd);
}
}
}
if(useSetClipboardWnd)
{
Log(_T("Connecting to clipboard with function SetClipboardViewer"));
m_hNextClipboardViewer = CWnd::SetClipboardViewer();
}
m_bCalling_SetClipboardViewer = false;
m_bIsConnected = true;
m_bConnect = true;
SetEnsureConnectedTimer();
}
void CClipboardViewer::SetEnsureConnectedTimer()
{
SetTimer(TIMER_ENSURE_VIEWER_IN_CHAIN, ONE_MINUTE*5, NULL);
}
// disconnects as a clipboard viewer
void CClipboardViewer::Disconnect(bool bSendPing)
{
Log(_T("Disconnect From Clipboard"));
KillTimer(TIMER_ENSURE_VIEWER_IN_CHAIN);
bool removeOldWay = true;
if(IsVista())
{
HMODULE hUser32 = LoadLibrary(_T("USER32.dll"));
if (hUser32)
{
typedef BOOL (__stdcall *RemoveClipFormatListener)( HWND hwnd );
RemoveClipFormatListener removeListener = (RemoveClipFormatListener) GetProcAddress(hUser32, "RemoveClipboardFormatListener");
if(removeListener)
{
Log(_T("Disconnecting from clipboard with function RemoveClipboardFormatListener"));
removeOldWay = false;
removeListener(m_hWnd);
}
}
}
if(removeOldWay)
{
Log(_T("Disconnecting from clipboard with function ChangeClipboardChain"));
BOOL bRet = CWnd::ChangeClipboardChain(m_hNextClipboardViewer);
if(!bRet)
{
Log(_T("Error disconnecting from clipboard"));
bRet = CWnd::ChangeClipboardChain(m_hNextClipboardViewer);
if(!bRet)
{
Log(_T("Error disconnecting from clipboard2"));
}
}
}
m_hNextClipboardViewer = 0;
m_bConnect = false;
m_bIsConnected = false;
if(bSendPing)
SendPing();
}
void CClipboardViewer::SendPing()
{
if(g_Opt.m_bEnsureConnectToClipboard)
{
if(OpenClipboard())
{
m_bPinging = true;
SetClipboardData(theApp.m_PingFormat, NewGlobalP("Ditto Ping", sizeof("Ditto Ping")));
SetClipboardData(theApp.m_cfIgnoreClipboard , NewGlobalP("Ignore", sizeof("Ignore")));
SetTimer(TIMER_PING, 2000, NULL);
CloseClipboard();
}
}
}
void CClipboardViewer::SetConnect(bool bConnect)
{
m_bConnect = bConnect;
if(bConnect)
{
if(m_bIsConnected == false)
{
Connect();
}
else
{
SendPing();
}
}
else
{
Disconnect();
}
}
/////////////////////////////////////////////////////////////////////////////
// CClipboardViewer message handlers
int CClipboardViewer::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if(CWnd::OnCreate(lpCreateStruct) == -1)
return -1;
//Set up the clip board viewer
if(m_connectOnStartup)
{
Connect();
}
return 0;
}
void CClipboardViewer::OnDestroy()
{
Disconnect();
CWnd::OnDestroy();
}
void CClipboardViewer::OnChangeCbChain(HWND hWndRemove, HWND hWndAfter)
{
Log(_T("OnChangeCbChain"));
// If the next window is closing, repair the chain.
if(m_hNextClipboardViewer == hWndRemove)
{
m_hNextClipboardViewer = hWndAfter;
}
// Otherwise, pass the message to the next link.
else if (m_hNextClipboardViewer != NULL)
{
if(m_hNextClipboardViewer != m_hWnd)
{
::SendMessage(m_hNextClipboardViewer, WM_CHANGECBCHAIN, (WPARAM) hWndRemove, (LPARAM) hWndAfter);
}
else
{
m_hNextClipboardViewer = NULL;
}
}
}
LRESULT CClipboardViewer::OnClipboardChange(WPARAM wParam, LPARAM lPara)
{
Log(StrF(_T("OnClipboardChange - Start")));
OnDrawClipboard();
Log(StrF(_T("OnClipboardChange - End")));
return TRUE;
}
//Message that the clipboard data has changed
void CClipboardViewer::OnDrawClipboard()
{
if(::IsClipboardFormatAvailable(theApp.m_PingFormat))
{
m_bPinging = false;
return;
}
// don't process the event when we first attach
if(m_pHandler && !m_bCalling_SetClipboardViewer)
{
if(m_bIsConnected)
{
if(!::IsClipboardFormatAvailable(theApp.m_cfIgnoreClipboard))
{
if(ValidActiveWnd())
{
Log(StrF(_T("OnDrawClipboard:: *** SetTimer *** %d"), GetTickCount()));
KillTimer(TIMER_DRAW_CLIPBOARD);
SetTimer(TIMER_DRAW_CLIPBOARD, g_Opt.m_lProcessDrawClipboardDelay, NULL);
}
}
}
else
{
Log(_T("Not connected, ignore clipboard change"));
}
}
// pass the event to the next Clipboard viewer in the chain
if(m_hNextClipboardViewer != NULL)
{
if(m_hNextClipboardViewer != m_hWnd)
{
::SendMessage(m_hNextClipboardViewer, WM_DRAWCLIPBOARD, 0, 0);
}
else
{
m_hNextClipboardViewer = NULL;
}
}
}
bool CClipboardViewer::ValidActiveWnd()
{
m_activeWindow = _T("");
m_activeWindowTitle = _T("";)
HWND owner = ::GetClipboardOwner();
if (owner != NULL)
{
DWORD PID = 0;
::GetWindowThreadProcessId(owner, &PID);
if (PID != 0)
{
m_activeWindow = GetProcessName(NULL, PID);
m_activeWindowTitle = TopLevelWindowText(PID);
}
}
//L"RuntimeBroker.exe" is what all modern apps report as
if (m_activeWindow == _T(""))
{
HWND active = ::GetForegroundWindow();
m_activeWindow = GetProcessName(active, 0);
m_activeWindowTitle = GetWndText(active);
}
m_activeWindow = m_activeWindow.MakeLower();
CString includeApps = CGetSetOptions::GetCopyAppInclude().MakeLower();
Log(StrF(_T("INCLUDE app names: %s, Active App: %s"), includeApps, m_activeWindow));
bool tokenMatch = false;
CTokenizer token(includeApps, CGetSetOptions::GetCopyAppSeparator());
CString line;
while(token.Next(line))
{
if(line != "")
{
if(CWildCardMatch::WildMatch(line.Trim(), m_activeWindow, ""))
{
Log(StrF(_T("Inlclude app names Found Match %s - %s"), line, m_activeWindow));
tokenMatch = true;
break;
}
}
}
if(tokenMatch)
{
CString excludeApps = CGetSetOptions::GetCopyAppExclude().MakeLower();
if(excludeApps != "")
{
Log(StrF(_T("EXCLUDE app names %s, Active App: %s"), excludeApps, m_activeWindow));
CTokenizer token2(excludeApps, CGetSetOptions::GetCopyAppSeparator());
CString line2;
while(token2.Next(line2))
{
if(line2 != "")
{
if(CWildCardMatch::WildMatch(line2.Trim(), m_activeWindow, ""))
{
Log(StrF(_T("Exclude app names Found Match %s - %s - NOT SAVING COPY"), line2, m_activeWindow));
return false;
}
}
}
}
}
else
{
Log(StrF(_T("Didn't find a match to INCLUDE match %s, NOT SAVING COPY"), includeApps));
return false;
}
return true;
}
void CClipboardViewer::OnTimer(UINT_PTR nIDEvent)
{
switch(nIDEvent)
{
case TIMER_ENSURE_VIEWER_IN_CHAIN:
SendPing();
break;
case TIMER_DRAW_CLIPBOARD:
{
KillTimer(nIDEvent);
DWORD dwNow = GetTickCount();
if(dwNow - m_dwLastCopy > g_Opt.m_dwSaveClipDelay || m_dwLastCopy > dwNow)
{
if(!::IsClipboardFormatAvailable(theApp.m_cfIgnoreClipboard))
{
Log(StrF(_T("OnDrawClipboard::OnTimer %d"), dwNow));
m_pHandler->OnClipboardChange(m_activeWindow, m_activeWindowTitle);
m_dwLastCopy = dwNow;
}
}
else
{
Log(StrF(_T("Clip copy to fast difference from last copy = %d"), (dwNow - m_dwLastCopy)));
}
m_activeWindow = _T("");
m_activeWindowTitle = _T("");
}
break;
case TIMER_PING:
KillTimer(TIMER_PING);
//If we haven't received the change clipboard message then we are disconnected
//if so reconnect
if(m_bPinging)
{
if(m_bConnect)
{
Log(_T("Ping Failed Reconnecting to clipboard"));
Disconnect(false);
Connect();
}
else
{
Log(_T("Ping Failed but Connected set to FALSE so this is ok"));
}
}
else
{
if(m_bConnect)
{
m_bIsConnected = true;
}
}
break;
}
CWnd::OnTimer(nIDEvent);
}
LRESULT CClipboardViewer::OnSetConnect(WPARAM wParam, LPARAM lParam)
{
bool bConnect = wParam == TRUE;
SetConnect(bConnect);
return TRUE;
}