clang: include/clang/Tooling/DiagnosticsYaml.h Source File (original) (raw)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15#ifndef LLVM_CLANG_TOOLING_DIAGNOSTICSYAML_H

16#define LLVM_CLANG_TOOLING_DIAGNOSTICSYAML_H

17

20#include "llvm/Support/YAMLTraits.h"

21#include

22

26

27namespace llvm {

28namespace yaml {

29

30template <> struct MappingTraits<clang::tooling::FileByteRange> {

32 Io.mapRequired("FilePath", R.FilePath);

33 Io.mapRequired("FileOffset", R.FileOffset);

34 Io.mapRequired("Length", R.Length);

35 }

36};

37

38template <> struct MappingTraits<clang::tooling::DiagnosticMessage> {

40 Io.mapRequired("Message", M.Message);

41 Io.mapOptional("FilePath", M.FilePath);

42 Io.mapOptional("FileOffset", M.FileOffset);

43 std::vectorclang::tooling::Replacement Fixes;

44 for (auto &Replacements : M.Fix) {

45 llvm::append_range(Fixes, Replacements.second);

46 }

47 Io.mapRequired("Replacements", Fixes);

48 for (auto &Fix : Fixes) {

49 llvm::Error Err = M.Fix[Fix.getFilePath()].add(Fix);

50 if (Err) {

51

52 llvm::errs() << "Fix conflicts with existing fix: "

53 << llvm::toString(std::move(Err)) << "\n";

54 }

55 }

56 Io.mapOptional("Ranges", M.Ranges);

57 }

58};

59

60template <> struct MappingTraits<clang::tooling::Diagnostic> {

61

62

63 class NormalizedDiagnostic {

64 public:

66 : DiagLevel(clang::tooling::Diagnostic::Level::Warning) {}

67

69 : DiagnosticName(D.DiagnosticName), Message(D.Message), Notes(D.Notes),

70 DiagLevel(D.DiagLevel), BuildDirectory(D.BuildDirectory) {}

71

74 DiagLevel, BuildDirectory);

75 }

76

82 };

83

85 MappingNormalization<NormalizedDiagnostic, clang::tooling::Diagnostic> Keys(

86 Io, D);

87 Io.mapRequired("DiagnosticName", Keys->DiagnosticName);

88 Io.mapRequired("DiagnosticMessage", Keys->Message);

89 Io.mapOptional("Notes", Keys->Notes);

90 Io.mapOptional("Level", Keys->DiagLevel);

91 Io.mapOptional("BuildDirectory", Keys->BuildDirectory);

92 }

93};

94

95

96

97template <> struct MappingTraits<clang::tooling::TranslationUnitDiagnostics> {

100 Io.mapRequired("Diagnostics", Doc.Diagnostics);

101 }

102};

103

104template <> struct ScalarEnumerationTraits<clang::tooling::Diagnostic::Level> {

109 }

110};

111

112}

113}

114

115#endif

This file defines the structure of a YAML document for serializing replacements.

The JSON file list parser is used to communicate input to InstallAPI.

Diagnostic wrappers for TextAPI types for error reporting.