blob: 9a51690c0ce7bb4cd3af30adb022844b5fe535d1 [file] [log] [blame]
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +00001//===--- PlistReporter.cpp - ARC Migrate Tool Plist Reporter ----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "Internals.h"
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000011#include "clang/Basic/FileManager.h"
Alp Tokerbdbcfbf2014-01-25 11:14:41 +000012#include "clang/Basic/PlistSupport.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000013#include "clang/Basic/SourceManager.h"
14#include "clang/Lex/Lexer.h"
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000015using namespace clang;
16using namespace arcmt;
Alp Toker48047f52014-01-25 14:38:41 +000017using namespace markup;
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000018
Alp Toker06973622014-07-06 04:27:03 +000019static StringRef getLevelName(DiagnosticsEngine::Level Level) {
20 switch (Level) {
21 case DiagnosticsEngine::Ignored:
22 llvm_unreachable("ignored");
23 case DiagnosticsEngine::Note:
24 return "note";
25 case DiagnosticsEngine::Remark:
26 case DiagnosticsEngine::Warning:
27 return "warning";
28 case DiagnosticsEngine::Fatal:
29 case DiagnosticsEngine::Error:
30 return "error";
31 }
32 llvm_unreachable("Invalid DiagnosticsEngine level!");
33}
34
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000035void arcmt::writeARCDiagsToPlist(const std::string &outPath,
Chris Lattner54b16772011-07-23 17:14:25 +000036 ArrayRef<StoredDiagnostic> diags,
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000037 SourceManager &SM,
38 const LangOptions &LangOpts) {
39 DiagnosticIDs DiagIDs;
40
41 // Build up a set of FIDs that we use by scanning the locations and
42 // ranges of the diagnostics.
43 FIDMap FM;
Chris Lattner0e62c1c2011-07-23 10:55:15 +000044 SmallVector<FileID, 10> Fids;
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000045
Chris Lattner54b16772011-07-23 17:14:25 +000046 for (ArrayRef<StoredDiagnostic>::iterator
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000047 I = diags.begin(), E = diags.end(); I != E; ++I) {
48 const StoredDiagnostic &D = *I;
49
50 AddFID(FM, Fids, SM, D.getLocation());
51
52 for (StoredDiagnostic::range_iterator
53 RI = D.range_begin(), RE = D.range_end(); RI != RE; ++RI) {
54 AddFID(FM, Fids, SM, RI->getBegin());
55 AddFID(FM, Fids, SM, RI->getEnd());
56 }
57 }
58
Rafael Espindoladae941a2014-08-25 18:17:04 +000059 std::error_code EC;
60 llvm::raw_fd_ostream o(outPath, EC, llvm::sys::fs::F_Text);
61 if (EC) {
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000062 llvm::errs() << "error: could not create file: " << outPath << '\n';
63 return;
64 }
65
Alp Toker452bfcf2014-07-06 07:59:14 +000066 EmitPlistHeader(o);
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000067
68 // Write the root object: a <dict> containing...
69 // - "files", an <array> mapping from FIDs to file names
70 // - "diagnostics", an <array> containing the diagnostics
71 o << "<dict>\n"
72 " <key>files</key>\n"
73 " <array>\n";
74
Alp Tokerdbb0c752014-07-06 06:09:20 +000075 for (FileID FID : Fids)
76 EmitString(o << " ", SM.getFileEntryForID(FID)->getName()) << '\n';
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000077
78 o << " </array>\n"
79 " <key>diagnostics</key>\n"
80 " <array>\n";
81
Chris Lattner54b16772011-07-23 17:14:25 +000082 for (ArrayRef<StoredDiagnostic>::iterator
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000083 DI = diags.begin(), DE = diags.end(); DI != DE; ++DI) {
84
85 const StoredDiagnostic &D = *DI;
86
David Blaikie9c902b52011-09-25 23:23:43 +000087 if (D.getLevel() == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000088 continue;
89
90 o << " <dict>\n";
91
92 // Output the diagnostic.
93 o << " <key>description</key>";
94 EmitString(o, D.getMessage()) << '\n';
95 o << " <key>category</key>";
96 EmitString(o, DiagIDs.getCategoryNameFromID(
97 DiagIDs.getCategoryNumberForDiag(D.getID()))) << '\n';
98 o << " <key>type</key>";
Alp Toker06973622014-07-06 04:27:03 +000099 EmitString(o, getLevelName(D.getLevel())) << '\n';
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +0000100
101 // Output the location of the bug.
102 o << " <key>location</key>\n";
Richard Smithfee9e202015-01-28 20:14:54 +0000103 EmitLocation(o, SM, D.getLocation(), FM, 2);
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +0000104
105 // Output the ranges (if any).
Richard Smithfee9e202015-01-28 20:14:54 +0000106 if (!D.getRanges().empty()) {
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +0000107 o << " <key>ranges</key>\n";
108 o << " <array>\n";
Richard Smithfee9e202015-01-28 20:14:54 +0000109 for (auto &R : D.getRanges()) {
110 CharSourceRange ExpansionRange(SM.getExpansionRange(R.getAsRange()),
111 R.isTokenRange());
112 EmitRange(o, SM, Lexer::getAsCharRange(ExpansionRange, SM, LangOpts),
113 FM, 4);
114 }
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +0000115 o << " </array>\n";
116 }
117
118 // Close up the entry.
119 o << " </dict>\n";
120 }
121
122 o << " </array>\n";
123
124 // Finish.
125 o << "</dict>\n</plist>";
126}