GDB (xrefs)
/tmp/gdb-8.1/gdb/exceptions.c
Go to the documentation of this file.
1 /* Exception (throw catch) mechanism, for GDB, the GNU debugger.
2 
3  Copyright (C) 1986-2018 Free Software Foundation, Inc.
4 
5  This file is part of GDB.
6 
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 3 of the License, or
10  (at your option) any later version.
11 
12  This program 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 
17  You should have received a copy of the GNU General Public License
18  along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 
20 #include "defs.h"
21 #include "exceptions.h"
22 #include "breakpoint.h"
23 #include "target.h"
24 #include "inferior.h"
25 #include "annotate.h"
26 #include "ui-out.h"
27 #include "serial.h"
28 #include "gdbthread.h"
29 #include "top.h"
30 #include "common/gdb_optional.h"
31 
32 static void
34 {
35  struct ui *ui = current_ui;
36  struct serial *gdb_stdout_serial;
37 
40 
43  {
44  term_state.emplace ();
46  }
47 
48  /* We want all output to appear now, before we print the error. We
49  have 3 levels of buffering we have to flush (it's possible that
50  some of these should be changed to flush the lower-level ones
51  too): */
52 
53  /* 1. The _filtered buffer. */
55  wrap_here ("");
56 
57  /* 2. The stdio buffer. */
60 
61  /* 3. The system-level buffer. */
62  gdb_stdout_serial = serial_fdopen (fileno (ui->outstream));
63  if (gdb_stdout_serial)
64  {
65  serial_drain_output (gdb_stdout_serial);
66  serial_un_fdopen (gdb_stdout_serial);
67  }
68 
70 }
71 
72 static void
73 print_exception (struct ui_file *file, struct gdb_exception e)
74 {
75  /* KLUGE: cagney/2005-01-13: Write the string out one line at a time
76  as that way the MI's behavior is preserved. */
77  const char *start;
78  const char *end;
79 
80  for (start = e.message; start != NULL; start = end)
81  {
82  end = strchr (start, '\n');
83  if (end == NULL)
84  fputs_filtered (start, file);
85  else
86  {
87  end++;
88  ui_file_write (file, start, end - start);
89  }
90  }
91  fprintf_filtered (file, "\n");
92 
93  /* Now append the annotation. */
94  switch (e.reason)
95  {
96  case RETURN_QUIT:
97  annotate_quit ();
98  break;
99  case RETURN_ERROR:
100  /* Assume that these are all errors. */
101  annotate_error ();
102  break;
103  default:
104  internal_error (__FILE__, __LINE__, _("Bad switch."));
105  }
106 }
107 
108 void
109 exception_print (struct ui_file *file, struct gdb_exception e)
110 {
111  if (e.reason < 0 && e.message != NULL)
112  {
113  print_flush ();
114  print_exception (file, e);
115  }
116 }
117 
118 void
119 exception_fprintf (struct ui_file *file, struct gdb_exception e,
120  const char *prefix, ...)
121 {
122  if (e.reason < 0 && e.message != NULL)
123  {
124  va_list args;
125 
126  print_flush ();
127 
128  /* Print the prefix. */
129  va_start (args, prefix);
130  vfprintf_filtered (file, prefix, args);
131  va_end (args);
132 
133  print_exception (file, e);
134  }
135 }
136 
137 /* See exceptions.h. */
138 
139 int
141 {
142  const char *msg1 = e1.message;
143  const char *msg2 = e2.message;
144 
145  if (msg1 == NULL)
146  msg1 = "";
147  if (msg2 == NULL)
148  msg2 = "";
149 
150  return (e1.reason == e2.reason
151  && e1.error == e2.error
152  && strcmp (msg1, msg2) == 0);
153 }
int serial_drain_output(struct serial *scb)
Definition: serial.c:457
int target_supports_terminal_ours(void)
Definition: target.c:526
static void print_flush(void)
Definition: exceptions.c:33
struct ui * current_ui
Definition: event-top.c:453
int exception_print_same(struct gdb_exception e1, struct gdb_exception e2)
Definition: exceptions.c:140
enum errors error
void internal_error(const char *file, int line, const char *fmt,...)
Definition: errors.c:50
#define _(String)
Definition: gdb_locale.h:35
struct serial * serial_fdopen(const int fd)
Definition: serial.c:302
FILE * outstream
Definition: top.h:117
void fprintf_filtered(struct ui_file *stream, const char *format,...)
Definition: utils.c:2008
void serial_un_fdopen(struct serial *scb)
Definition: serial.c:354
void vfprintf_filtered(struct ui_file *stream, const char *format, va_list args)
Definition: utils.c:1963
void exception_print(struct ui_file *file, struct gdb_exception e)
Definition: exceptions.c:109
void fputs_filtered(const char *linebuffer, struct ui_file *stream)
Definition: utils.c:1811
static void print_exception(struct ui_file *file, struct gdb_exception e)
Definition: exceptions.c:73
Definition: top.h:56
void exception_fprintf(struct ui_file *file, struct gdb_exception e, const char *prefix,...)
Definition: exceptions.c:119
Definition: serial.h:224
int filtered_printing_initialized(void)
Definition: utils.c:1399
void annotate_error_begin(void)
Definition: annotate.c:291
static void ours_for_output()
Definition: target.c:501
void(* deprecated_error_begin_hook)(void)
Definition: utils.c:84
void wrap_here(const char *indent)
Definition: utils.c:1596
T & emplace(Args &&... args)
Definition: gdb_optional.h:152
#define gdb_stderr
Definition: utils.h:344
void ui_file_write(struct ui_file *file, const char *buf, long length_buf)
Definition: ui-file.c:105
void annotate_quit(void)
Definition: annotate.c:277
const char * message
void annotate_error(void)
Definition: annotate.c:284
void gdb_flush(struct ui_file *file)
Definition: ui-file.c:93
enum return_reason reason
#define gdb_stdout
Definition: utils.h:340