summaryrefslogtreecommitdiff
path: root/src/errors.c
blob: 9d241a27a4e98c8dc3cd6f914ac9cc6ab64dce7b (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
/* Metacity X error handling */

/* 
 * Copyright (C) 2001 Havoc Pennington, error trapping inspired by GDK
 * code copyrighted by the GTK team.
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program 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
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */

#include "errors.h"
#include <errno.h>

typedef struct _ErrorTrap  ErrorTrap;

struct _ErrorTrap
{
  int error_code;
};

static int x_error_handler    (Display     *display,
                               XErrorEvent *error);
static int x_io_error_handler (Display     *display);

void
meta_errors_init (void)
{
  XSetErrorHandler (x_error_handler);
  XSetIOErrorHandler (x_io_error_handler);
}

void
meta_error_trap_push (MetaDisplay *display)
{
  ErrorTrap *et;

  et = g_new (ErrorTrap, 1);

  et->error_code = Success;
  display->error_traps = g_slist_prepend (display->error_traps, et);  
}

int
meta_error_trap_pop (MetaDisplay *display)
{
  int result;
  ErrorTrap *et;
  GSList *next;
  
  if (display->error_traps == NULL)
    meta_bug ("No error trap to pop\n");

  XSync (display->xdisplay, False);
  
  et = display->error_traps->data;

  result = et->error_code;

  next = display->error_traps->next;
  g_slist_free_1 (display->error_traps);
  display->error_traps = next;

  g_free (et);

  if (result != Success)
    {
      gchar buf[64];
                
      XGetErrorText (display->xdisplay, result, buf, 63);

      meta_verbose ("Popping error code %d (%s)\n",
                    result, buf);
    }
  
  return result;
}


static int
x_error_handler (Display     *xdisplay,
                 XErrorEvent *error)
{
  if (error->error_code)
    {
      MetaDisplay *display;

      display = meta_display_for_x_display (xdisplay);

      if (display == NULL)
        meta_bug ("Error received for unknown display?\n");
      
      if (display->error_traps == NULL)
        {
          gchar buf[64];

	  XGetErrorText (xdisplay, error->error_code, buf, 63);
          
          meta_fatal ("Received an X Window System error without handling it.\n"
                      "The error was '%s'.\n"
                      "  (Details: serial %ld error_code %d request_code %d minor_code %d)\n",
                      buf,
                      error->serial, 
                      error->error_code, 
                      error->request_code,
                      error->minor_code);
	}
      else
        {
          ErrorTrap *et;

          et = display->error_traps->data;

          et->error_code = error->error_code;
        }
    }
  
  return 0;
}

static int
x_io_error_handler (Display *xdisplay)
{
  MetaDisplay *display;

  display = meta_display_for_x_display (xdisplay);

  if (display == NULL)
    meta_bug ("IO error received for unknown display?\n");
  
  if (errno == EPIPE)
    {
      meta_warning (_("Lost connection to the display '%s';\n"
                      "most likely the X server was shut down or you killed/destroyed\n"
                      "the window manager.\n"),
                    display->name);
    }
  else
    {
      meta_warning (_("Fatal IO error %d (%s) on display '%s'.\n"),
                    errno, g_strerror (errno),
                    display->name);
    }

  meta_display_close (display);
  
  /* I believe Xlib will force an exit after we return, which
   * seems sort of broken to me, but if true we should probably just
   * exit for ourselves. But for now I'm not doing it.
   */
  return 0;
}