summaryrefslogtreecommitdiff
path: root/wndproc.c
blob: d78e5bcb2c0a7734d8c4e31a724e95cb448730be (plain)
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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
/*
 *Copyright (C) 1994-2000 The XFree86 Project, Inc. All Rights Reserved.
 *Copyright (C) 2003-2004 Harold L Hunt II All Rights Reserved.
 *Copyright (C) Colin Harrison 2005-2008
 *
 *Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 *"Software"), to deal in the Software without restriction, including
 *without limitation the rights to use, copy, modify, merge, publish,
 *distribute, sublicense, and/or sell copies of the Software, and to
 *permit persons to whom the Software is furnished to do so, subject to
 *the following conditions:
 *
 *The above copyright notice and this permission notice shall be
 *included in all copies or substantial portions of the Software.
 *
 *THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
 *ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
 *CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 *Except as contained in this notice, the name of the copyright holder(s)
 *and author(s) shall not be used in advertising or otherwise to promote
 *the sale, use or other dealings in this Software without prior written
 *authorization from the copyright holder(s) and author(s).
 *
 * Authors:	Harold L Hunt II
 *              Colin Harrison
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <sys/types.h>
#include <sys/time.h>

#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/Xwindows.h>

#include "wndproc.h"
#include "xevents.h"
#include "debug.h"

/*
 * Constants
 */

#define WIN_POLL_TIMEOUT	1

/*
 * Process X events up to specified timeout
 */

static int
ProcessXEventsTimeout(HWND hwnd, Window iWindow, Display * pDisplay,
                      Bool fUseUnicode, int iTimeoutSec)
{
  int iConnNumber;
  struct timeval tv;
  int iReturn;
  DWORD dwStopTime = GetTickCount() + iTimeoutSec * 1000;

  winDebug("ProcessXEventsTimeout () - pumping X events for %d seconds\n",
           iTimeoutSec);

  /* Get our connection number */
  iConnNumber = XConnectionNumber(pDisplay);

  /* Loop for X events */
  while (1) {
    fd_set fdsRead;
    long remainingTime;

    /* We need to ensure that all pending events are processed */
    XSync(pDisplay, FALSE);

    /* Setup the file descriptor set */
    FD_ZERO(&fdsRead);
    FD_SET(iConnNumber, &fdsRead);

    /* Adjust timeout */
    remainingTime = dwStopTime - GetTickCount();
    tv.tv_sec = remainingTime / 1000;
    tv.tv_usec = (remainingTime % 1000) * 1000;
    winDebug("ProcessXEventsTimeout () - %d milliseconds left\n",
             remainingTime);

    /* Break out if no time left */
    if (remainingTime <= 0)
      return WIN_XEVENTS_SUCCESS;

    /* Wait for an X event */
    iReturn = select(iConnNumber + 1,       /* Highest fds number */
                     &fdsRead,      /* Read mask */
                     NULL,  /* No write mask */
                     NULL,  /* No exception mask */
                     &tv);  /* Timeout */
    if (iReturn < 0) {
      winError("ProcessXEventsTimeout - Call to select () failed: %d.  "
               "Bailing.\n", iReturn);
      break;
    }

    /* Branch on which descriptor became active */
    if (FD_ISSET(iConnNumber, &fdsRead)) {
      /* Process X events */
      /* Exit when we see that server is shutting down */
      iReturn = FlushXEvents(hwnd,
                             XInternAtom(pDisplay, "CYGX_CUT_BUFFER", False),
                             XInternAtom(pDisplay, "UTF8_STRING", False),
                             XInternAtom(pDisplay, "COMPOUND_TEXT", False),
                             XInternAtom(pDisplay, "TARGETS", False),
                             iWindow, pDisplay, fUseUnicode);

      winDebug
        ("ProcessXEventsTimeout () - FlushXEvents returned %d\n", iReturn);

      if (WIN_XEVENTS_NOTIFY == iReturn) {
        /* Bail out if notify processed */
        return iReturn;
      }
    }
    else {
      winDebug("ProcessXEventsTimeout - Spurious wake\n");
    }
  }

  return WIN_XEVENTS_SUCCESS;
}

/*
 * Process a given Windows message
 */

LRESULT CALLBACK
WindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
  static HWND s_hwndNextViewer;
  static Bool s_fCBCInitialized;
  static Display *pDisplay;
  static Window iWindow;

  /* Branch on message type */
  switch (message) {
  case WM_DESTROY:
    {
      winDebug("WindowProc - WM_DESTROY\n");

      /* Remove ourselves from the clipboard chain */
      ChangeClipboardChain(hwnd, s_hwndNextViewer);

      s_hwndNextViewer = NULL;

      PostQuitMessage(0);
    }
    return 0;

  case WM_CREATE:
    {
      HWND first, next;
      DWORD error_code = 0;

      winDebug("WindowProc - WM_CREATE\n");

      WindowCreationParams *wcp = (WindowCreationParams *)((CREATESTRUCT *)lParam)->lpCreateParams;
      pDisplay = wcp->pClipboardDisplay;
      iWindow = wcp->iClipboardWindow;

      first = GetClipboardViewer();   /* Get handle to first viewer in chain. */
      if (first == hwnd)
        return 0;           /* Make sure it's not us! */

      /* Add ourselves to the clipboard viewer chain */
      next = SetClipboardViewer(hwnd);
      error_code = GetLastError();
      if (SUCCEEDED(error_code) && (next == first))   /* SetClipboardViewer must have succeeded, and the handle */
        s_hwndNextViewer = next;    /* it returned must have been the first window in the chain */
      else
        s_fCBCInitialized = FALSE;
    }
    return 0;

  case WM_CHANGECBCHAIN:
    {
      winDebug("WindowProc - WM_CHANGECBCHAIN: wParam(%x) "
               "lParam(%x) s_hwndNextViewer(%x)\n",
               wParam, lParam, s_hwndNextViewer);

      if ((HWND) wParam == s_hwndNextViewer) {
        s_hwndNextViewer = (HWND) lParam;
        if (s_hwndNextViewer == hwnd) {
          s_hwndNextViewer = NULL;
          winError("WindowProc - WM_CHANGECBCHAIN: "
                   "attempted to set next window to ourselves.");
        }
      }
      else if (s_hwndNextViewer)
        SendMessage(s_hwndNextViewer, message, wParam, lParam);

    }
    winDebug("WindowProc - WM_CHANGECBCHAIN: Exit\n");
    return 0;

  case WM_WM_REINIT:
    {
      /* Ensure that we're in the clipboard chain.  Some apps,
       * WinXP's remote desktop for one, don't play nice with the
       * chain.  This message is called whenever we receive a
       * WM_ACTIVATEAPP message to ensure that we continue to
       * receive clipboard messages.
       *
       * It might be possible to detect if we're still in the chain
       * by calling SendMessage (GetClipboardViewer(),
       * WM_DRAWCLIPBOARD, 0, 0); and then seeing if we get the
       * WM_DRAWCLIPBOARD message.  That, however, might be more
       * expensive than just putting ourselves back into the chain.
       */

      HWND first, next;
      DWORD error_code = 0;

      winDebug("WindowProc - WM_WM_REINIT: Enter\n");

      first = GetClipboardViewer();   /* Get handle to first viewer in chain. */
      if (first == hwnd)
        return 0;           /* Make sure it's not us! */
      winDebug("  WM_WM_REINIT: Replacing us(%x) with %x at head "
               "of chain\n", hwnd, s_hwndNextViewer);
      s_fCBCInitialized = FALSE;
      ChangeClipboardChain(hwnd, s_hwndNextViewer);
      s_hwndNextViewer = NULL;
      s_fCBCInitialized = FALSE;
      winDebug("  WM_WM_REINIT: Putting us back at head of chain.\n");
      first = GetClipboardViewer();   /* Get handle to first viewer in chain. */
      if (first == hwnd)
        return 0;           /* Make sure it's not us! */
      next = SetClipboardViewer(hwnd);
      error_code = GetLastError();
      if (SUCCEEDED(error_code) && (next == first))   /* SetClipboardViewer must have succeeded, and the handle */
        s_hwndNextViewer = next;    /* it returned must have been the first window in the chain */
      else
        s_fCBCInitialized = FALSE;
    }
    winDebug("WindowProc - WM_WM_REINIT: Exit\n");
    return 0;

  case WM_DRAWCLIPBOARD:
    {
      static Atom atomClipboard;
      static Bool s_fProcessingDrawClipboard = FALSE;
      int iReturn;

      winDebug("WindowProc - WM_DRAWCLIPBOARD: Enter\n");

      atomClipboard = XInternAtom(pDisplay, "CLIPBOARD", False);

      /*
       * We've occasionally seen a loop in the clipboard chain.
       * Try and fix it on the first hint of recursion.
       */
      if (!s_fProcessingDrawClipboard) {
        s_fProcessingDrawClipboard = TRUE;
      }
      else {
        /* Attempt to break the nesting by getting out of the chain, twice?, and then fix and bail */
        s_fCBCInitialized = FALSE;
        ChangeClipboardChain(hwnd, s_hwndNextViewer);
        PostMessage(hwnd, WM_WM_REINIT, 0, 0);
        winError("WindowProc - WM_DRAWCLIPBOARD - "
                 "Nested calls detected.  Re-initing.\n");
        winDebug("WindowProc - WM_DRAWCLIPBOARD: Exit\n");
        s_fProcessingDrawClipboard = FALSE;
        return 0;
      }

      /* Bail on first message */
      if (!s_fCBCInitialized) {
        s_fCBCInitialized = TRUE;
        s_fProcessingDrawClipboard = FALSE;
        winDebug("WindowProc - WM_DRAWCLIPBOARD: Exit\n");
        return 0;
      }

      /*
       * NOTE: We cannot bail out when NULL == GetClipboardOwner ()
       * because some applications deal with the clipboard in a manner
       * that causes the clipboard owner to be NULL when they are in
       * fact taking ownership.  One example of this is the Win32
       * native compile of emacs.
       */

      /* Bail when we still own the clipboard */
      if (hwnd == GetClipboardOwner()) {

        winDebug("WindowProc - WM_DRAWCLIPBOARD - "
                 "We own the clipboard, returning.\n");
        winDebug("WindowProc - WM_DRAWCLIPBOARD: Exit\n");
        s_fProcessingDrawClipboard = FALSE;
        if (s_hwndNextViewer)
          SendMessage(s_hwndNextViewer, message, wParam, lParam);
        return 0;
      }

      /*
       * Do not take ownership of the X11 selections when something
       * other than CF_TEXT or CF_UNICODETEXT has been copied
       * into the Win32 clipboard.
       */
      if (!IsClipboardFormatAvailable(CF_TEXT)
          && !IsClipboardFormatAvailable(CF_UNICODETEXT)) {
        Window iOwnerWindow;

        winDebug("WindowProc - WM_DRAWCLIPBOARD - "
                 "Clipboard does not contain CF_TEXT nor "
                 "CF_UNICODETEXT.\n");

        winDebug("WindowProc: %d formats\n",
                 CountClipboardFormats());

        if (OpenClipboard(hwnd))
          {
            unsigned int format = 0;

            do {
              format = EnumClipboardFormats(format);
              if (GetLastError() != ERROR_SUCCESS) {
                winDebug
                  ("WindowProc: EnumClipboardFormats failed %x\n",
                   GetLastError());
              }
              if (format > 0xc000) {
                char buff[256];

                GetClipboardFormatName(format, buff, 256);
                winDebug("WindowProc: %d %s\n", format,
                         buff);
              }
              else if (format > 0)
                winDebug("WindowProc: %d\n", format);
            } while (format != 0);
            CloseClipboard();
          }
        else
          {
            winDebug("WindowProc: could not open clipboard to enumerate formats\n");
          }

        /*
         * We need to make sure that the X Server has processed
         * previous XSetSelectionOwner messages.
         */
        XSync(pDisplay, FALSE);
        winDebug("WindowProc - XSync done.\n");

        /* Release PRIMARY selection if owned */
        iOwnerWindow = XGetSelectionOwner(pDisplay, XA_PRIMARY);
        if (iOwnerWindow == iWindow) {
          winDebug("WindowProc - WM_DRAWCLIPBOARD - "
                   "PRIMARY selection is owned by us, releasing\n");
          XSetSelectionOwner(pDisplay, XA_PRIMARY, None, CurrentTime);
        }
        else if (BadWindow == iOwnerWindow || BadAtom == iOwnerWindow)
          winError("WindowProc - WM_DRAWCLIPBOARD - "
                   "XGetSelectionOwner failed for PRIMARY: %d\n",
                   iOwnerWindow);

        /* Release CLIPBOARD selection if owned */
        iOwnerWindow = XGetSelectionOwner(pDisplay, atomClipboard);
        if (iOwnerWindow == iWindow) {
          winDebug("WindowProc - WM_DRAWCLIPBOARD - "
                   "CLIPBOARD selection is owned by us, releasing\n");
          XSetSelectionOwner(pDisplay, atomClipboard, None, CurrentTime);
        }
        else if (BadWindow == iOwnerWindow || BadAtom == iOwnerWindow)
          winError("WindowProc - WM_DRAWCLIPBOARD - "
                   "XGetSelectionOwner failed for CLIPBOARD: %d\n",
                   iOwnerWindow);

        winDebug("WindowProc - WM_DRAWCLIPBOARD: Exit\n");
        s_fProcessingDrawClipboard = FALSE;
        if (s_hwndNextViewer)
          SendMessage(s_hwndNextViewer, message, wParam, lParam);
        return 0;
      }

      /* Reassert ownership of PRIMARY */
      iReturn = XSetSelectionOwner(pDisplay,
                                   XA_PRIMARY, iWindow, CurrentTime);
      if (iReturn == BadAtom || iReturn == BadWindow ||
          XGetSelectionOwner(pDisplay, XA_PRIMARY) != iWindow) {
        winError("WindowProc - WM_DRAWCLIPBOARD - "
                 "Could not reassert ownership of PRIMARY\n");
      }
      else {
        winDebug("WindowProc - WM_DRAWCLIPBOARD - "
                 "Reasserted ownership of PRIMARY\n");
      }

      /* Reassert ownership of the CLIPBOARD */
      iReturn = XSetSelectionOwner(pDisplay,
                                   atomClipboard, iWindow, CurrentTime);

      if (iReturn == BadAtom || iReturn == BadWindow ||
          XGetSelectionOwner(pDisplay, atomClipboard) != iWindow) {
        winError("WindowProc - WM_DRAWCLIPBOARD - "
                 "Could not reassert ownership of CLIPBOARD\n");
      }
      else {
        winDebug("WindowProc - WM_DRAWCLIPBOARD - "
                 "Reasserted ownership of CLIPBOARD\n");
      }

      /* Flush the pending SetSelectionOwner event now */
      XFlush(pDisplay);

      s_fProcessingDrawClipboard = FALSE;
    }
    winDebug("WindowProc - WM_DRAWCLIPBOARD: Exit\n");
    /* Pass the message on the next window in the clipboard viewer chain */
    if (s_hwndNextViewer)
      SendMessage(s_hwndNextViewer, message, wParam, lParam);
    return 0;

  case WM_DESTROYCLIPBOARD:
    /*
     * NOTE: Intentionally do nothing.
     * Changes in the Win32 clipboard are handled by WM_DRAWCLIPBOARD
     * above.  We only process this message to conform to the specs
     * for delayed clipboard rendering in Win32.  You might think
     * that we need to release ownership of the X11 selections, but
     * we do not, because a WM_DRAWCLIPBOARD message will closely
     * follow this message and reassert ownership of the X11
     * selections, handling the issue for us.
     */
    winDebug("WindowProc - WM_DESTROYCLIPBOARD - Ignored.\n");
    return 0;

  case WM_RENDERFORMAT:
  case WM_RENDERALLFORMATS:
    {
      int iReturn;
      Bool fConvertToUnicode;

      if (message == WM_RENDERALLFORMATS)
        winDebug("WindowProc - WM_RENDERALLFORMATS - Hello.\n");
      else
        winDebug("WindowProc - WM_RENDERFORMAT %d - Hello.\n",
                 wParam);

      /* Flag whether to convert to Unicode or not */
      if (message == WM_RENDERALLFORMATS)
        fConvertToUnicode = FALSE;
      else
        fConvertToUnicode = (CF_UNICODETEXT == wParam);

      /* Request the selection contents */
      iReturn = XConvertSelection(pDisplay,
                                  GetLastOwnedSelectionAtom(),
                                  XInternAtom(pDisplay, "COMPOUND_TEXT", False),
                                  XInternAtom(pDisplay, "CYGX_CUT_BUFFER", False),
                                  iWindow, CurrentTime);
      if (iReturn == BadAtom || iReturn == BadWindow) {
        winError("WindowProc - WM_RENDER*FORMAT - "
                 "XConvertSelection () failed\n");
        break;
      }

      /* Special handling for WM_RENDERALLFORMATS */
      if (message == WM_RENDERALLFORMATS) {
        /* We must open and empty the clipboard */

        /* Close clipboard if we have it open already */
        if (GetOpenClipboardWindow() == hwnd) {
          CloseClipboard();
        }

        if (!OpenClipboard(hwnd)) {
          winError("WindowProc - WM_RENDER*FORMATS - "
                   "OpenClipboard () failed: %08x\n",
                   GetLastError());
          break;
        }

        if (!EmptyClipboard()) {
          winError("WindowProc - WM_RENDER*FORMATS - "
                   "EmptyClipboard () failed: %08x\n",
                   GetLastError());
          break;
        }
      }

      /* Process the SelectionNotify event */
      iReturn = ProcessXEventsTimeout(hwnd,
                                      iWindow,
                                      pDisplay,
                                      fConvertToUnicode, WIN_POLL_TIMEOUT);

      /*
       * The last call to ProcessXEventsTimeout
       * from above had better have seen a notify event, or else we
       * are dealing with a buggy or old X11 app.  In these cases we
       * have to paste some fake data to the Win32 clipboard to
       * satisfy the requirement that we write something to it.
       */
      if (WIN_XEVENTS_NOTIFY != iReturn) {
        /* Paste no data, to satisfy required call to SetClipboardData */
        SetClipboardData(CF_UNICODETEXT, NULL);
        SetClipboardData(CF_TEXT, NULL);

        winError("WindowProc - timed out waiting for WIN_XEVENTS_NOTIFY\n");
      }

      /* Special handling for WM_RENDERALLFORMATS */
      if (message == WM_RENDERALLFORMATS) {
        /* We must close the clipboard */

        if (!CloseClipboard()) {
          winError("WindowProc - WM_RENDERALLFORMATS - "
                   "CloseClipboard () failed: %08x\n",
                   GetLastError());
          break;
        }
      }

      winDebug("WindowProc - WM_RENDER*FORMAT - Returning.\n");
      return 0;
    }
  }

  /* Let Windows perform default processing for unhandled messages */
  return DefWindowProc(hwnd, message, wParam, lParam);
}

/*
 * Process any pending Windows messages
 */

WINBOOL
FlushWindowsMessageQueue(void)
{
  MSG msg;

  /* Flush the messaging window queue */
  /* NOTE: Do not pass the hwnd of our messaging window to PeekMessage,
   * as this will filter out many non-window-specific messages that
   * are sent to our thread, such as WM_QUIT.
   */
  while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
    /* Dispatch the message if not WM_QUIT */
    if (msg.message == WM_QUIT)
      return FALSE;
    else
      DispatchMessage(&msg);
  }

  return TRUE;
}