Skip gcc.dg/guality/example.c on hppa-linux.
[official-gcc.git] / gcc / diagnostic-format-json.cc
blobeff1907652354ad071f65be659729910136e088f
1 /* JSON output for diagnostics
2 Copyright (C) 2018-2021 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "diagnostic.h"
26 #include "selftest-diagnostic.h"
27 #include "diagnostic-metadata.h"
28 #include "json.h"
29 #include "selftest.h"
31 /* The top-level JSON array of pending diagnostics. */
33 static json::array *toplevel_array;
35 /* The JSON object for the current diagnostic group. */
37 static json::object *cur_group;
39 /* The JSON array for the "children" array within the current diagnostic
40 group. */
42 static json::array *cur_children_array;
44 /* Generate a JSON object for LOC. */
46 json::value *
47 json_from_expanded_location (diagnostic_context *context, location_t loc)
49 expanded_location exploc = expand_location (loc);
50 json::object *result = new json::object ();
51 if (exploc.file)
52 result->set ("file", new json::string (exploc.file));
53 result->set ("line", new json::integer_number (exploc.line));
55 const enum diagnostics_column_unit orig_unit = context->column_unit;
56 struct
58 const char *name;
59 enum diagnostics_column_unit unit;
60 } column_fields[] = {
61 {"display-column", DIAGNOSTICS_COLUMN_UNIT_DISPLAY},
62 {"byte-column", DIAGNOSTICS_COLUMN_UNIT_BYTE}
64 int the_column = INT_MIN;
65 for (int i = 0; i != sizeof column_fields / sizeof (*column_fields); ++i)
67 context->column_unit = column_fields[i].unit;
68 const int col = diagnostic_converted_column (context, exploc);
69 result->set (column_fields[i].name, new json::integer_number (col));
70 if (column_fields[i].unit == orig_unit)
71 the_column = col;
73 gcc_assert (the_column != INT_MIN);
74 result->set ("column", new json::integer_number (the_column));
75 context->column_unit = orig_unit;
76 return result;
79 /* Generate a JSON object for LOC_RANGE. */
81 static json::object *
82 json_from_location_range (diagnostic_context *context,
83 const location_range *loc_range, unsigned range_idx)
85 location_t caret_loc = get_pure_location (loc_range->m_loc);
87 if (caret_loc == UNKNOWN_LOCATION)
88 return NULL;
90 location_t start_loc = get_start (loc_range->m_loc);
91 location_t finish_loc = get_finish (loc_range->m_loc);
93 json::object *result = new json::object ();
94 result->set ("caret", json_from_expanded_location (context, caret_loc));
95 if (start_loc != caret_loc
96 && start_loc != UNKNOWN_LOCATION)
97 result->set ("start", json_from_expanded_location (context, start_loc));
98 if (finish_loc != caret_loc
99 && finish_loc != UNKNOWN_LOCATION)
100 result->set ("finish", json_from_expanded_location (context, finish_loc));
102 if (loc_range->m_label)
104 label_text text;
105 text = loc_range->m_label->get_text (range_idx);
106 if (text.m_buffer)
107 result->set ("label", new json::string (text.m_buffer));
108 text.maybe_free ();
111 return result;
114 /* Generate a JSON object for HINT. */
116 static json::object *
117 json_from_fixit_hint (diagnostic_context *context, const fixit_hint *hint)
119 json::object *fixit_obj = new json::object ();
121 location_t start_loc = hint->get_start_loc ();
122 fixit_obj->set ("start", json_from_expanded_location (context, start_loc));
123 location_t next_loc = hint->get_next_loc ();
124 fixit_obj->set ("next", json_from_expanded_location (context, next_loc));
125 fixit_obj->set ("string", new json::string (hint->get_string ()));
127 return fixit_obj;
130 /* Generate a JSON object for METADATA. */
132 static json::object *
133 json_from_metadata (const diagnostic_metadata *metadata)
135 json::object *metadata_obj = new json::object ();
137 if (metadata->get_cwe ())
138 metadata_obj->set ("cwe",
139 new json::integer_number (metadata->get_cwe ()));
141 return metadata_obj;
144 /* No-op implementation of "begin_diagnostic" for JSON output. */
146 static void
147 json_begin_diagnostic (diagnostic_context *, diagnostic_info *)
151 /* Implementation of "end_diagnostic" for JSON output.
152 Generate a JSON object for DIAGNOSTIC, and store for output
153 within current diagnostic group. */
155 static void
156 json_end_diagnostic (diagnostic_context *context, diagnostic_info *diagnostic,
157 diagnostic_t orig_diag_kind)
159 json::object *diag_obj = new json::object ();
161 /* Get "kind" of diagnostic. */
163 static const char *const diagnostic_kind_text[] = {
164 #define DEFINE_DIAGNOSTIC_KIND(K, T, C) (T),
165 #include "diagnostic.def"
166 #undef DEFINE_DIAGNOSTIC_KIND
167 "must-not-happen"
169 /* Lose the trailing ": ". */
170 const char *kind_text = diagnostic_kind_text[diagnostic->kind];
171 size_t len = strlen (kind_text);
172 gcc_assert (len > 2);
173 gcc_assert (kind_text[len - 2] == ':');
174 gcc_assert (kind_text[len - 1] == ' ');
175 char *rstrip = xstrdup (kind_text);
176 rstrip[len - 2] = '\0';
177 diag_obj->set ("kind", new json::string (rstrip));
178 free (rstrip);
181 // FIXME: encoding of the message (json::string requires UTF-8)
182 diag_obj->set ("message",
183 new json::string (pp_formatted_text (context->printer)));
184 pp_clear_output_area (context->printer);
186 char *option_text;
187 option_text = context->option_name (context, diagnostic->option_index,
188 orig_diag_kind, diagnostic->kind);
189 if (option_text)
191 diag_obj->set ("option", new json::string (option_text));
192 free (option_text);
195 if (context->get_option_url)
197 char *option_url = context->get_option_url (context,
198 diagnostic->option_index);
199 if (option_url)
201 diag_obj->set ("option_url", new json::string (option_url));
202 free (option_url);
206 /* If we've already emitted a diagnostic within this auto_diagnostic_group,
207 then add diag_obj to its "children" array. */
208 if (cur_group)
210 gcc_assert (cur_children_array);
211 cur_children_array->append (diag_obj);
213 else
215 /* Otherwise, make diag_obj be the top-level object within the group;
216 add a "children" array and record the column origin. */
217 toplevel_array->append (diag_obj);
218 cur_group = diag_obj;
219 cur_children_array = new json::array ();
220 diag_obj->set ("children", cur_children_array);
221 diag_obj->set ("column-origin",
222 new json::integer_number (context->column_origin));
225 const rich_location *richloc = diagnostic->richloc;
227 json::array *loc_array = new json::array ();
228 diag_obj->set ("locations", loc_array);
230 for (unsigned int i = 0; i < richloc->get_num_locations (); i++)
232 const location_range *loc_range = richloc->get_range (i);
233 json::object *loc_obj = json_from_location_range (context, loc_range, i);
234 if (loc_obj)
235 loc_array->append (loc_obj);
238 if (richloc->get_num_fixit_hints ())
240 json::array *fixit_array = new json::array ();
241 diag_obj->set ("fixits", fixit_array);
242 for (unsigned int i = 0; i < richloc->get_num_fixit_hints (); i++)
244 const fixit_hint *hint = richloc->get_fixit_hint (i);
245 json::object *fixit_obj = json_from_fixit_hint (context, hint);
246 fixit_array->append (fixit_obj);
250 /* TODO: tree-ish things:
251 TODO: functions
252 TODO: inlining information
253 TODO: macro expansion information. */
255 if (diagnostic->metadata)
257 json::object *metadata_obj = json_from_metadata (diagnostic->metadata);
258 diag_obj->set ("metadata", metadata_obj);
261 const diagnostic_path *path = richloc->get_path ();
262 if (path && context->make_json_for_path)
264 json::value *path_value = context->make_json_for_path (context, path);
265 diag_obj->set ("path", path_value);
268 diag_obj->set ("escape-source",
269 new json::literal (richloc->escape_on_output_p ()));
272 /* No-op implementation of "begin_group_cb" for JSON output. */
274 static void
275 json_begin_group (diagnostic_context *)
279 /* Implementation of "end_group_cb" for JSON output. */
281 static void
282 json_end_group (diagnostic_context *)
284 cur_group = NULL;
285 cur_children_array = NULL;
288 /* Callback for final cleanup for JSON output. */
290 static void
291 json_final_cb (diagnostic_context *)
293 /* Flush the top-level array. */
294 toplevel_array->dump (stderr);
295 fprintf (stderr, "\n");
296 delete toplevel_array;
297 toplevel_array = NULL;
300 /* Set the output format for CONTEXT to FORMAT. */
302 void
303 diagnostic_output_format_init (diagnostic_context *context,
304 enum diagnostics_output_format format)
306 switch (format)
308 default:
309 gcc_unreachable ();
310 case DIAGNOSTICS_OUTPUT_FORMAT_TEXT:
311 /* The default; do nothing. */
312 break;
314 case DIAGNOSTICS_OUTPUT_FORMAT_JSON:
316 /* Set up top-level JSON array. */
317 if (toplevel_array == NULL)
318 toplevel_array = new json::array ();
320 /* Override callbacks. */
321 context->begin_diagnostic = json_begin_diagnostic;
322 context->end_diagnostic = json_end_diagnostic;
323 context->begin_group_cb = json_begin_group;
324 context->end_group_cb = json_end_group;
325 context->final_cb = json_final_cb;
326 context->print_path = NULL; /* handled in json_end_diagnostic. */
328 /* The metadata is handled in JSON format, rather than as text. */
329 context->show_cwe = false;
331 /* The option is handled in JSON format, rather than as text. */
332 context->show_option_requested = false;
334 /* Don't colorize the text. */
335 pp_show_color (context->printer) = false;
337 break;
341 #if CHECKING_P
343 namespace selftest {
345 /* We shouldn't call json_from_expanded_location on UNKNOWN_LOCATION,
346 but verify that we handle this gracefully. */
348 static void
349 test_unknown_location ()
351 test_diagnostic_context dc;
352 delete json_from_expanded_location (&dc, UNKNOWN_LOCATION);
355 /* Verify that we gracefully handle attempts to serialize bad
356 compound locations. */
358 static void
359 test_bad_endpoints ()
361 location_t bad_endpoints
362 = make_location (BUILTINS_LOCATION,
363 UNKNOWN_LOCATION, UNKNOWN_LOCATION);
365 location_range loc_range;
366 loc_range.m_loc = bad_endpoints;
367 loc_range.m_range_display_kind = SHOW_RANGE_WITH_CARET;
368 loc_range.m_label = NULL;
370 test_diagnostic_context dc;
371 json::object *obj = json_from_location_range (&dc, &loc_range, 0);
372 /* We should have a "caret" value, but no "start" or "finish" values. */
373 ASSERT_TRUE (obj != NULL);
374 ASSERT_TRUE (obj->get ("caret") != NULL);
375 ASSERT_TRUE (obj->get ("start") == NULL);
376 ASSERT_TRUE (obj->get ("finish") == NULL);
377 delete obj;
380 /* Run all of the selftests within this file. */
382 void
383 diagnostic_format_json_cc_tests ()
385 test_unknown_location ();
386 test_bad_endpoints ();
389 } // namespace selftest
391 #endif /* #if CHECKING_P */