Clang Project

clang_source_code/include/clang/Frontend/SerializedDiagnosticReader.h
1//===- SerializedDiagnosticReader.h - Reads diagnostics ---------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_FRONTEND_SERIALIZEDDIAGNOSTICREADER_H
10#define LLVM_CLANG_FRONTEND_SERIALIZEDDIAGNOSTICREADER_H
11
12#include "clang/Basic/LLVM.h"
13#include "llvm/Bitcode/BitstreamReader.h"
14#include "llvm/ADT/StringRef.h"
15#include "llvm/Support/ErrorOr.h"
16#include <system_error>
17
18namespace clang {
19namespace serialized_diags {
20
21enum class SDError {
22  CouldNotLoad = 1,
23  InvalidSignature,
24  InvalidDiagnostics,
25  MalformedTopLevelBlock,
26  MalformedSubBlock,
27  MalformedBlockInfoBlock,
28  MalformedMetadataBlock,
29  MalformedDiagnosticBlock,
30  MalformedDiagnosticRecord,
31  MissingVersion,
32  VersionMismatch,
33  UnsupportedConstruct,
34  /// A generic error for subclass handlers that don't want or need to define
35  /// their own error_category.
36  HandlerFailed
37};
38
39const std::error_category &SDErrorCategory();
40
41inline std::error_code make_error_code(SDError E) {
42  return std::error_code(static_cast<int>(E), SDErrorCategory());
43}
44
45/// A location that is represented in the serialized diagnostics.
46struct Location {
47  unsigned FileID;
48  unsigned Line;
49  unsigned Col;
50  unsigned Offset;
51
52  Location(unsigned FileIDunsigned Lineunsigned Colunsigned Offset)
53      : FileID(FileID), Line(Line), Col(Col), Offset(Offset) {}
54};
55
56/// A base class that handles reading serialized diagnostics from a file.
57///
58/// Subclasses should override the visit* methods with their logic for handling
59/// the various constructs that are found in serialized diagnostics.
60class SerializedDiagnosticReader {
61public:
62  SerializedDiagnosticReader() = default;
63  virtual ~SerializedDiagnosticReader() = default;
64
65  /// Read the diagnostics in \c File
66  std::error_code readDiagnostics(StringRef File);
67
68private:
69  enum class Cursor;
70
71  /// Read to the next record or block to process.
72  llvm::ErrorOr<Cursor> skipUntilRecordOrBlock(llvm::BitstreamCursor &Stream,
73                                               unsigned &BlockOrRecordId);
74
75  /// Read a metadata block from \c Stream.
76  std::error_code readMetaBlock(llvm::BitstreamCursor &Stream);
77
78  /// Read a diagnostic block from \c Stream.
79  std::error_code readDiagnosticBlock(llvm::BitstreamCursor &Stream);
80
81protected:
82  /// Visit the start of a diagnostic block.
83  virtual std::error_code visitStartOfDiagnostic() { return {}; }
84
85  /// Visit the end of a diagnostic block.
86  virtual std::error_code visitEndOfDiagnostic() { return {}; }
87
88  /// Visit a category. This associates the category \c ID to a \c Name.
89  virtual std::error_code visitCategoryRecord(unsigned IDStringRef Name) {
90    return {};
91  }
92
93  /// Visit a flag. This associates the flag's \c ID to a \c Name.
94  virtual std::error_code visitDiagFlagRecord(unsigned IDStringRef Name) {
95    return {};
96  }
97
98  /// Visit a diagnostic.
99  virtual std::error_code
100  visitDiagnosticRecord(unsigned Severityconst Location &Location,
101                        unsigned Categoryunsigned FlagStringRef Message) {
102    return {};
103  }
104
105  /// Visit a filename. This associates the file's \c ID to a \c Name.
106  virtual std::error_code visitFilenameRecord(unsigned IDunsigned Size,
107                                              unsigned Timestamp,
108                                              StringRef Name) {
109    return {};
110  }
111
112  /// Visit a fixit hint.
113  virtual std::error_code
114  visitFixitRecord(const Location &Startconst Location &EndStringRef Text) {
115    return {};
116  }
117
118  /// Visit a source range.
119  virtual std::error_code visitSourceRangeRecord(const Location &Start,
120                                                 const Location &End) {
121    return {};
122  }
123
124  /// Visit the version of the set of diagnostics.
125  virtual std::error_code visitVersionRecord(unsigned Version) { return {}; }
126};
127
128// namespace serialized_diags
129// namespace clang
130
131namespace std {
132
133template <>
134struct is_error_code_enum<clang::serialized_diags::SDError> : std::true_type {};
135
136// namespace std
137
138#endif // LLVM_CLANG_FRONTEND_SERIALIZEDDIAGNOSTICREADER_H
139
clang::serialized_diags::Location::FileID
clang::serialized_diags::Location::Line
clang::serialized_diags::Location::Col
clang::serialized_diags::Location::Offset
clang::serialized_diags::SerializedDiagnosticReader::readDiagnostics
clang::serialized_diags::SerializedDiagnosticReader::skipUntilRecordOrBlock
clang::serialized_diags::SerializedDiagnosticReader::readMetaBlock
clang::serialized_diags::SerializedDiagnosticReader::readDiagnosticBlock
clang::serialized_diags::SerializedDiagnosticReader::visitStartOfDiagnostic
clang::serialized_diags::SerializedDiagnosticReader::visitEndOfDiagnostic
clang::serialized_diags::SerializedDiagnosticReader::visitCategoryRecord
clang::serialized_diags::SerializedDiagnosticReader::visitDiagFlagRecord
clang::serialized_diags::SerializedDiagnosticReader::visitDiagnosticRecord
clang::serialized_diags::SerializedDiagnosticReader::visitFilenameRecord
clang::serialized_diags::SerializedDiagnosticReader::visitFixitRecord
clang::serialized_diags::SerializedDiagnosticReader::visitSourceRangeRecord
clang::serialized_diags::SerializedDiagnosticReader::visitVersionRecord