blob: 09cb50512c2ff4d6959635ab66a53d268fbab0e3 [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
59 std::string errMsg;
Rafael Espindola4fbd3732014-02-24 18:20:21 +000060 llvm::raw_fd_ostream o(outPath.c_str(), errMsg, llvm::sys::fs::F_Text);
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000061 if (!errMsg.empty()) {
62 llvm::errs() << "error: could not create file: " << outPath << '\n';
63 return;
64 }
65
66 // Write the plist header.
Alp Tokerbdbcfbf2014-01-25 11:14:41 +000067 o << PlistHeader;
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000068
69 // Write the root object: a <dict> containing...
70 // - "files", an <array> mapping from FIDs to file names
71 // - "diagnostics", an <array> containing the diagnostics
72 o << "<dict>\n"
73 " <key>files</key>\n"
74 " <array>\n";
75
Alp Tokerdbb0c752014-07-06 06:09:20 +000076 for (FileID FID : Fids)
77 EmitString(o << " ", SM.getFileEntryForID(FID)->getName()) << '\n';
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000078
79 o << " </array>\n"
80 " <key>diagnostics</key>\n"
81 " <array>\n";
82
Chris Lattner54b16772011-07-23 17:14:25 +000083 for (ArrayRef<StoredDiagnostic>::iterator
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000084 DI = diags.begin(), DE = diags.end(); DI != DE; ++DI) {
85
86 const StoredDiagnostic &D = *DI;
87
David Blaikie9c902b52011-09-25 23:23:43 +000088 if (D.getLevel() == DiagnosticsEngine::Ignored)
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +000089 continue;
90
91 o << " <dict>\n";
92
93 // Output the diagnostic.
94 o << " <key>description</key>";
95 EmitString(o, D.getMessage()) << '\n';
96 o << " <key>category</key>";
97 EmitString(o, DiagIDs.getCategoryNameFromID(
98 DiagIDs.getCategoryNumberForDiag(D.getID()))) << '\n';
99 o << " <key>type</key>";
Alp Toker06973622014-07-06 04:27:03 +0000100 EmitString(o, getLevelName(D.getLevel())) << '\n';
Argyrios Kyrtzidisd5713632011-07-19 17:20:03 +0000101
102 // Output the location of the bug.
103 o << " <key>location</key>\n";
104 EmitLocation(o, SM, LangOpts, D.getLocation(), FM, 2);
105
106 // Output the ranges (if any).
107 StoredDiagnostic::range_iterator RI = D.range_begin(), RE = D.range_end();
108
109 if (RI != RE) {
110 o << " <key>ranges</key>\n";
111 o << " <array>\n";
112 for (; RI != RE; ++RI)
113 EmitRange(o, SM, LangOpts, *RI, FM, 4);
114 o << " </array>\n";
115 }
116
117 // Close up the entry.
118 o << " </dict>\n";
119 }
120
121 o << " </array>\n";
122
123 // Finish.
124 o << "</dict>\n</plist>";
125}