blob: 6910af74d06d1664bb1ab22ea50b013fad0dedc2 [file] [log] [blame]
Ted Kremenekfd75e312008-03-27 06:17:42 +00001//===--- HTMLDiagnostics.cpp - HTML Diagnostics for Paths ----*- 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// This file defines the HTMLDiagnostics object.
11//
12//===----------------------------------------------------------------------===//
13
14#include "HTMLDiagnostics.h"
15#include "clang/Basic/SourceManager.h"
Ted Kremenekdfb08d42008-03-27 07:35:49 +000016#include "clang/Basic/FileManager.h"
Ted Kremenekfd75e312008-03-27 06:17:42 +000017#include "clang/AST/ASTContext.h"
18#include "clang/Analysis/PathDiagnostic.h"
19#include "clang/Rewrite/Rewriter.h"
20#include "clang/Rewrite/HTMLRewrite.h"
21#include "clang/Lex/Lexer.h"
22#include "llvm/Support/Compiler.h"
23#include "llvm/Support/MemoryBuffer.h"
24#include "llvm/Support/Streams.h"
25#include "llvm/System/Path.h"
26#include <fstream>
27#include <sstream>
28
29using namespace clang;
30
31//===----------------------------------------------------------------------===//
32// Boilerplate.
33//===----------------------------------------------------------------------===//
34
35namespace {
36
37class VISIBILITY_HIDDEN HTMLDiagnostics : public PathDiagnosticClient {
38 llvm::sys::Path Directory, FilePrefix;
39 bool createdDir, noDir;
40public:
41 HTMLDiagnostics(const std::string& prefix);
42
43 virtual ~HTMLDiagnostics() {}
44
45 virtual void HandlePathDiagnostic(const PathDiagnostic& D);
46
Ted Kremenek72879792008-03-31 23:30:12 +000047 void HandlePiece(Rewriter& R, const PathDiagnosticPiece& P,
48 unsigned num, unsigned max);
49
Ted Kremenekfd75e312008-03-27 06:17:42 +000050 void HighlightRange(Rewriter& R, SourceRange Range, unsigned MainFileID);
51};
52
53} // end anonymous namespace
54
55HTMLDiagnostics::HTMLDiagnostics(const std::string& prefix)
56 : Directory(prefix), FilePrefix(prefix), createdDir(false), noDir(false) {
57
58 // All html files begin with "report"
59 FilePrefix.appendComponent("report");
60}
61
62PathDiagnosticClient*
63clang::CreateHTMLDiagnosticClient(const std::string& prefix) {
64
65 return new HTMLDiagnostics(prefix);
66}
67
68//===----------------------------------------------------------------------===//
69// Report processing.
70//===----------------------------------------------------------------------===//
71
72void HTMLDiagnostics::HandlePathDiagnostic(const PathDiagnostic& D) {
73
74 if (D.empty())
75 return;
76
77 // Create the HTML directory if it is missing.
78
79 if (!createdDir) {
80 createdDir = true;
Ted Kremenek14369902008-04-03 17:55:57 +000081 std::string ErrorMsg;
82 Directory.createDirectoryOnDisk(true, &ErrorMsg);
Ted Kremenekfd75e312008-03-27 06:17:42 +000083
84 if (!Directory.isDirectory()) {
85 llvm::cerr << "warning: could not create directory '"
Ted Kremenek14369902008-04-03 17:55:57 +000086 << Directory.toString() << "'\n"
87 << "reason: " << ErrorMsg << '\n';
Ted Kremenekfd75e312008-03-27 06:17:42 +000088
89 noDir = true;
90
91 return;
92 }
93 }
94
95 if (noDir)
96 return;
97
98 // Create a new rewriter to generate HTML.
99 SourceManager& SMgr = D.begin()->getLocation().getManager();
100 Rewriter R(SMgr);
101
102 // Process the path.
103
104 unsigned n = D.size();
Ted Kremenek72879792008-03-31 23:30:12 +0000105 unsigned max = n;
Ted Kremenekfd75e312008-03-27 06:17:42 +0000106
107 for (PathDiagnostic::const_reverse_iterator I=D.rbegin(), E=D.rend();
108 I!=E; ++I, --n) {
109
Ted Kremenek72879792008-03-31 23:30:12 +0000110 HandlePiece(R, *I, n, max);
Ted Kremenekfd75e312008-03-27 06:17:42 +0000111 }
112
113 // Add line numbers, header, footer, etc.
Ted Kremenekdfb08d42008-03-27 07:35:49 +0000114
Ted Kremenekfd75e312008-03-27 06:17:42 +0000115 unsigned FileID = R.getSourceMgr().getMainFileID();
116 html::EscapeText(R, FileID);
117 html::AddLineNumbers(R, FileID);
118
Ted Kremenekfe9b00f2008-04-02 20:44:16 +0000119 // Get the full directory name of the analyzed file.
120
121 const FileEntry* Entry = SMgr.getFileEntryForID(FileID);
122 std::string DirName(Entry->getDir()->getName());
Ted Kremenekdfb08d42008-03-27 07:35:49 +0000123
Ted Kremenekfe9b00f2008-04-02 20:44:16 +0000124 if (DirName == ".")
125 DirName = llvm::sys::Path::GetCurrentDirectory().toString();
126
127 // Add the name of the file as an <h1> tag.
128
Ted Kremenekdfb08d42008-03-27 07:35:49 +0000129 {
130 std::ostringstream os;
Ted Kremenekdfb08d42008-03-27 07:35:49 +0000131
Ted Kremenekfe9b00f2008-04-02 20:44:16 +0000132 os << "<h1>" << html::EscapeText(DirName)
133 << "/" << html::EscapeText(Entry->getName()) << "</h1>\n";
Ted Kremenekdfb08d42008-03-27 07:35:49 +0000134
135 R.InsertStrBefore(SourceLocation::getFileLoc(FileID, 0), os.str());
Ted Kremenek44a70e12008-04-02 07:04:46 +0000136 }
137
Ted Kremenekfe9b00f2008-04-02 20:44:16 +0000138 // Embed meta-data tags.
Ted Kremenek44a70e12008-04-02 07:04:46 +0000139
140 const std::string& BugDesc = D.getDescription();
141
142 if (!BugDesc.empty()) {
143 std::ostringstream os;
Ted Kremenek1cae1f42008-04-02 18:03:20 +0000144 os << "\n<!-- BUGDESC " << BugDesc << " -->\n";
Ted Kremenek44a70e12008-04-02 07:04:46 +0000145 R.InsertStrBefore(SourceLocation::getFileLoc(FileID, 0), os.str());
Ted Kremenekfe9b00f2008-04-02 20:44:16 +0000146 }
147
148 {
149 std::ostringstream os;
150 os << "\n<!-- BUGFILE " << DirName << "/" << Entry->getName() << " -->\n";
151 R.InsertStrBefore(SourceLocation::getFileLoc(FileID, 0), os.str());
152 }
153
154 {
155 std::ostringstream os;
Ted Kremenek14369902008-04-03 17:55:57 +0000156 os << "\n<!-- BUGLINE " << D.back()->getLocation().getLogicalLineNumber()
Ted Kremenekfe9b00f2008-04-02 20:44:16 +0000157 << " -->\n";
158 R.InsertStrBefore(SourceLocation::getFileLoc(FileID, 0), os.str());
159 }
160
161 {
162 std::ostringstream os;
163 os << "\n<!-- BUGPATHLENGTH " << D.size() << " -->\n";
164 R.InsertStrBefore(SourceLocation::getFileLoc(FileID, 0), os.str());
165 }
Ted Kremenekfd75e312008-03-27 06:17:42 +0000166
167 // Add CSS, header, and footer.
168
169 html::AddHeaderFooterInternalBuiltinCSS(R, FileID);
170
171 // Get the rewrite buffer.
172 const RewriteBuffer *Buf = R.getRewriteBufferFor(FileID);
173
174 if (!Buf) {
175 llvm::cerr << "warning: no diagnostics generated for main file.\n";
176 return;
177 }
178
179 // Create the stream to write out the HTML.
180 std::ofstream os;
181
182 {
183 // Create a path for the target HTML file.
184 llvm::sys::Path F(FilePrefix);
185 F.makeUnique(false, NULL);
186
187 // Rename the file with an HTML extension.
188 llvm::sys::Path H(F);
189 H.appendSuffix("html");
190 F.renamePathOnDisk(H, NULL);
191
192 os.open(H.toString().c_str());
193
194 if (!os) {
195 llvm::cerr << "warning: could not create file '" << F.toString() << "'\n";
196 return;
197 }
198 }
199
200 // Emit the HTML to disk.
201
Ted Kremenek88aeff92008-04-08 22:37:58 +0000202 for (RewriteBuffer::iterator I = Buf->begin(), E = Buf->end(); I!=E; ++I) {
203 // Expand tabs.
204 if (*I == '\t')
205 os << " ";
206 else
207 os << *I;
208 }
Ted Kremenekfd75e312008-03-27 06:17:42 +0000209}
210
211void HTMLDiagnostics::HandlePiece(Rewriter& R,
212 const PathDiagnosticPiece& P,
Ted Kremenek72879792008-03-31 23:30:12 +0000213 unsigned num, unsigned max) {
Ted Kremenekfd75e312008-03-27 06:17:42 +0000214
215 // For now, just draw a box above the line in question, and emit the
216 // warning.
217
218 FullSourceLoc Pos = P.getLocation();
219
220 if (!Pos.isValid())
221 return;
222
223 SourceManager& SM = R.getSourceMgr();
224 FullSourceLoc LPos = Pos.getLogicalLoc();
225 unsigned FileID = LPos.getLocation().getFileID();
226
227 assert (&LPos.getManager() == &SM && "SourceManagers are different!");
228
229 unsigned MainFileID = SM.getMainFileID();
230
231 if (FileID != MainFileID)
232 return;
233
234 // Compute the column number. Rewind from the current position to the start
235 // of the line.
236
237 unsigned ColNo = LPos.getColumnNumber();
238 const char *TokLogicalPtr = LPos.getCharacterData();
239 const char *LineStart = TokLogicalPtr-ColNo;
240
Ted Kremenekdbdb01e2008-03-31 21:40:14 +0000241 // Compute the margin offset by counting tabs and non-tabs.
242
243 unsigned PosNo = 0;
244
245 for (const char* c = LineStart; c != TokLogicalPtr; ++c)
Ted Kremenekcd2eb9b2008-03-31 23:14:05 +0000246 PosNo += *c == '\t' ? 4 : 1;
Ted Kremenekdbdb01e2008-03-31 21:40:14 +0000247
Ted Kremenekfd75e312008-03-27 06:17:42 +0000248 // Create the html for the message.
249
250 std::ostringstream os;
251
252 os << "\n<tr><td class=\"num\"></td><td class=\"line\">"
Ted Kremenek72879792008-03-31 23:30:12 +0000253 << "<div id=\"";
254
255 if (num == max)
256 os << "EndPath";
257 else
258 os << "Path" << num;
259
260 os << "\" class=\"msg\" style=\"margin-left:"
Ted Kremenekdbdb01e2008-03-31 21:40:14 +0000261 << PosNo << "ex\">";
Ted Kremenekfd75e312008-03-27 06:17:42 +0000262
Ted Kremenekd8a68b22008-04-02 21:04:20 +0000263 if (max > 1)
264 os << "<span class=\"PathIndex\">[" << num << "]</span> ";
265
Ted Kremenek57ba65c2008-03-27 17:15:29 +0000266 os << html::EscapeText(P.getString()) << "</div></td></tr>";
Ted Kremenekfd75e312008-03-27 06:17:42 +0000267
268 // Insert the new html.
269
270 const llvm::MemoryBuffer *Buf = SM.getBuffer(FileID);
271 const char* FileStart = Buf->getBufferStart();
272
273 R.InsertStrBefore(SourceLocation::getFileLoc(FileID, LineStart - FileStart),
274 os.str());
275
276 // Now highlight the ranges.
277
278 for (const SourceRange *I = P.ranges_begin(), *E = P.ranges_end();
279 I != E; ++I)
280 HighlightRange(R, *I, MainFileID);
281}
282
283void HTMLDiagnostics::HighlightRange(Rewriter& R, SourceRange Range,
284 unsigned MainFileID) {
285
286 SourceManager& SourceMgr = R.getSourceMgr();
287
288 SourceLocation LogicalStart = SourceMgr.getLogicalLoc(Range.getBegin());
289 unsigned StartLineNo = SourceMgr.getLineNumber(LogicalStart);
290
291 SourceLocation LogicalEnd = SourceMgr.getLogicalLoc(Range.getEnd());
292 unsigned EndLineNo = SourceMgr.getLineNumber(LogicalEnd);
293
294 if (EndLineNo < StartLineNo)
295 return;
296
297 if (LogicalStart.getFileID() != MainFileID ||
298 LogicalEnd.getFileID() != MainFileID)
299 return;
300
301 // Compute the column number of the end.
302 unsigned EndColNo = SourceMgr.getColumnNumber(LogicalEnd);
303 unsigned OldEndColNo = EndColNo;
304
305 if (EndColNo) {
306 // Add in the length of the token, so that we cover multi-char tokens.
307 EndColNo += Lexer::MeasureTokenLength(Range.getEnd(), SourceMgr);
308 }
309
310 // Highlight the range. Make the span tag the outermost tag for the
311 // selected range.
312
313 SourceLocation E =
314 LogicalEnd.getFileLocWithOffset(OldEndColNo > EndColNo
315 ? -(OldEndColNo - EndColNo)
316 : EndColNo - OldEndColNo);
317
318 R.InsertCStrBefore(LogicalStart, "<span class=\"mrange\">");
319 R.InsertCStrAfter(E, "</span>");
Ted Kremenek352bc0c2008-04-08 21:29:14 +0000320
321 if (EndLineNo == StartLineNo)
322 return;
323
324 // Add in </span><span> tags for intermediate lines.
325
326 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(MainFileID);
327
328 unsigned Pos = SourceMgr.getFullFilePos(LogicalStart);
329 unsigned EndPos = SourceMgr.getFullFilePos(E);
330 const char* buf = Buf->getBufferStart();
331
332 for (; Pos != EndPos; ++Pos) {
333
334 SourceLocation L = SourceLocation::getFileLoc(MainFileID, Pos);
335 unsigned Col = SourceMgr.getColumnNumber(L);
336
337 if (Col == 1) {
338
339 // Start if a new line. Scan to see if we hit anything that is not
340 // whitespace or a newline.
341
342 unsigned PosTmp = Pos;
343 bool NewLine = false;
344
345 for ( ; PosTmp != EndPos ; ++PosTmp) {
346 switch (buf[PosTmp]) {
347 case ' ':
348 case '\t': continue;
349 case '\n':
350 NewLine = true;
351 break;
352 default:
353 break;
354 }
355
356 break;
357 }
358
359 if (PosTmp == EndPos)
360 break;
361
362 Pos = PosTmp;
363
364 // Don't highlight a blank line.
365 if (NewLine)
366 continue;
367
368 // This line contains text that we should highlight.
369 // Ignore leading whitespace.
370 L = SourceLocation::getFileLoc(MainFileID, Pos);
371 R.InsertCStrAfter(L, "<span class=\"mrange\">");
372 }
373 else if (buf[Pos] == '\n')
374 R.InsertCStrBefore(L, "</span>");
375 }
Ted Kremenekfd75e312008-03-27 06:17:42 +0000376}