x11conn.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. /*
  2. X11 support for the Midnight Commander.
  3. Copyright (C) 2005, 2007, 2011
  4. The Free Software Foundation, Inc.
  5. Written by:
  6. Roland Illig <roland.illig@gmx.de>, 2005.
  7. This file is part of the Midnight Commander.
  8. The Midnight Commander is free software: you can redistribute it
  9. and/or modify it under the terms of the GNU General Public License as
  10. published by the Free Software Foundation, either version 3 of the License,
  11. or (at your option) any later version.
  12. The Midnight Commander is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. /** \file x11conn.c
  20. * \brief Source: X11 support
  21. * \warning This code uses setjmp() and longjmp(). Before you modify _anything_ here,
  22. * please read the relevant sections of the C standard.
  23. */
  24. #include <config.h>
  25. #ifndef HAVE_TEXTMODE_X11_SUPPORT
  26. typedef int dummy; /* C99 forbids empty compilation unit */
  27. #else
  28. #include <setjmp.h>
  29. #include <X11/Xlib.h>
  30. #ifdef HAVE_GMODULE
  31. #include <gmodule.h>
  32. #endif
  33. #include "lib/global.h"
  34. #include "x11conn.h"
  35. /*** global variables ****************************************************************************/
  36. /*** file scope macro definitions ****************************************************************/
  37. #ifndef HAVE_GMODULE
  38. #define func_XOpenDisplay XOpenDisplay
  39. #define func_XCloseDisplay XCloseDisplay
  40. #define func_XSetErrorHandler XSetErrorHandler
  41. #define func_XSetIOErrorHandler XSetIOErrorHandler
  42. #define func_XQueryPointer XQueryPointer
  43. #endif
  44. /*** file scope type declarations ****************************************************************/
  45. typedef int (*mc_XErrorHandler_callback) (Display *, XErrorEvent *);
  46. typedef int (*mc_XIOErrorHandler_callback) (Display *);
  47. /*** file scope variables ************************************************************************/
  48. #ifdef HAVE_GMODULE
  49. static Display *(*func_XOpenDisplay) (_Xconst char *);
  50. static int (*func_XCloseDisplay) (Display *);
  51. static mc_XErrorHandler_callback (*func_XSetErrorHandler) (mc_XErrorHandler_callback);
  52. static mc_XIOErrorHandler_callback (*func_XSetIOErrorHandler) (mc_XIOErrorHandler_callback);
  53. static Bool (*func_XQueryPointer) (Display *, Window, Window *, Window *,
  54. int *, int *, int *, int *, unsigned int *);
  55. static GModule *x11_module;
  56. #endif
  57. static gboolean handlers_installed = FALSE;
  58. /* This flag is set as soon as an X11 error is reported. Usually that
  59. * means that the DISPLAY is not available anymore. We do not try to
  60. * reconnect, as that would violate the X11 protocol. */
  61. static gboolean lost_connection = FALSE;
  62. static jmp_buf x11_exception; /* FIXME: get a better name */
  63. static gboolean longjmp_allowed = FALSE;
  64. /*** file scope functions ************************************************************************/
  65. /* --------------------------------------------------------------------------------------------- */
  66. static int
  67. x_io_error_handler (Display * dpy)
  68. {
  69. (void) dpy;
  70. lost_connection = TRUE;
  71. if (longjmp_allowed)
  72. {
  73. longjmp_allowed = FALSE;
  74. longjmp (x11_exception, 1);
  75. }
  76. return 0;
  77. }
  78. /* --------------------------------------------------------------------------------------------- */
  79. static int
  80. x_error_handler (Display * dpy, XErrorEvent * ee)
  81. {
  82. (void) ee;
  83. (void) func_XCloseDisplay (dpy);
  84. return x_io_error_handler (dpy);
  85. }
  86. /* --------------------------------------------------------------------------------------------- */
  87. static void
  88. install_error_handlers (void)
  89. {
  90. if (handlers_installed)
  91. return;
  92. (void) func_XSetErrorHandler (x_error_handler);
  93. (void) func_XSetIOErrorHandler (x_io_error_handler);
  94. handlers_installed = TRUE;
  95. }
  96. /* --------------------------------------------------------------------------------------------- */
  97. static gboolean
  98. x11_available (void)
  99. {
  100. #ifdef HAVE_GMODULE
  101. gchar *x11_module_fname;
  102. if (lost_connection)
  103. return FALSE;
  104. if (x11_module != NULL)
  105. return TRUE;
  106. x11_module_fname = g_module_build_path (NULL, "X11");
  107. x11_module = g_module_open (x11_module_fname, G_MODULE_BIND_LAZY);
  108. if (x11_module == NULL)
  109. x11_module = g_module_open ("libX11.so.6", G_MODULE_BIND_LAZY);
  110. g_free (x11_module_fname);
  111. if (x11_module == NULL)
  112. return FALSE;
  113. if (!g_module_symbol (x11_module, "XOpenDisplay", (void *) &func_XOpenDisplay))
  114. goto cleanup;
  115. if (!g_module_symbol (x11_module, "XCloseDisplay", (void *) &func_XCloseDisplay))
  116. goto cleanup;
  117. if (!g_module_symbol (x11_module, "XQueryPointer", (void *) &func_XQueryPointer))
  118. goto cleanup;
  119. if (!g_module_symbol (x11_module, "XSetErrorHandler", (void *) &func_XSetErrorHandler))
  120. goto cleanup;
  121. if (!g_module_symbol (x11_module, "XSetIOErrorHandler", (void *) &func_XSetIOErrorHandler))
  122. goto cleanup;
  123. install_error_handlers ();
  124. return TRUE;
  125. cleanup:
  126. func_XOpenDisplay = 0;
  127. func_XCloseDisplay = 0;
  128. func_XQueryPointer = 0;
  129. func_XSetErrorHandler = 0;
  130. func_XSetIOErrorHandler = 0;
  131. g_module_close (x11_module);
  132. x11_module = NULL;
  133. return FALSE;
  134. #else
  135. install_error_handlers ();
  136. return !(lost_connection);
  137. #endif
  138. }
  139. /* --------------------------------------------------------------------------------------------- */
  140. /*** public functions ****************************************************************************/
  141. /* --------------------------------------------------------------------------------------------- */
  142. Display *
  143. mc_XOpenDisplay (const char *displayname)
  144. {
  145. Display *retval;
  146. if (x11_available ())
  147. {
  148. if (setjmp (x11_exception) == 0)
  149. {
  150. longjmp_allowed = TRUE;
  151. retval = func_XOpenDisplay (displayname);
  152. longjmp_allowed = FALSE;
  153. return retval;
  154. }
  155. }
  156. return NULL;
  157. }
  158. /* --------------------------------------------------------------------------------------------- */
  159. int
  160. mc_XCloseDisplay (Display * display)
  161. {
  162. int retval;
  163. if (x11_available ())
  164. {
  165. if (setjmp (x11_exception) == 0)
  166. {
  167. longjmp_allowed = TRUE;
  168. retval = func_XCloseDisplay (display);
  169. longjmp_allowed = FALSE;
  170. return retval;
  171. }
  172. }
  173. return 0;
  174. }
  175. /* --------------------------------------------------------------------------------------------- */
  176. Bool
  177. mc_XQueryPointer (Display * display, Window win, Window * root_return,
  178. Window * child_return, int *root_x_return, int *root_y_return,
  179. int *win_x_return, int *win_y_return, unsigned int *mask_return)
  180. {
  181. Bool retval;
  182. if (x11_available ())
  183. {
  184. if (setjmp (x11_exception) == 0)
  185. {
  186. longjmp_allowed = TRUE;
  187. retval = func_XQueryPointer (display, win, root_return,
  188. child_return, root_x_return, root_y_return,
  189. win_x_return, win_y_return, mask_return);
  190. longjmp_allowed = FALSE;
  191. return retval;
  192. }
  193. }
  194. *root_return = None;
  195. *child_return = None;
  196. *root_x_return = 0;
  197. *root_y_return = 0;
  198. *win_x_return = 0;
  199. *win_y_return = 0;
  200. *mask_return = 0;
  201. return False;
  202. }
  203. /* --------------------------------------------------------------------------------------------- */
  204. #endif /* HAVE_TEXTMODE_X11_SUPPORT */