1 //===- HTMLDiagnostics.cpp - HTML Diagnostics for Paths -------------------===//
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 //  This file defines the HTMLDiagnostics object.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "clang/AST/Decl.h"
14 #include "clang/AST/DeclBase.h"
15 #include "clang/AST/Stmt.h"
16 #include "clang/Basic/FileManager.h"
17 #include "clang/Basic/LLVM.h"
18 #include "clang/Basic/SourceLocation.h"
19 #include "clang/Basic/SourceManager.h"
20 #include "clang/Lex/Lexer.h"
21 #include "clang/Lex/Preprocessor.h"
22 #include "clang/Lex/Token.h"
23 #include "clang/Rewrite/Core/HTMLRewrite.h"
24 #include "clang/Rewrite/Core/Rewriter.h"
25 #include "clang/StaticAnalyzer/Core/AnalyzerOptions.h"
26 #include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
27 #include "clang/StaticAnalyzer/Core/IssueHash.h"
28 #include "clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h"
29 #include "llvm/ADT/ArrayRef.h"
30 #include "llvm/ADT/SmallString.h"
31 #include "llvm/ADT/StringRef.h"
32 #include "llvm/ADT/iterator_range.h"
33 #include "llvm/Support/Casting.h"
34 #include "llvm/Support/Errc.h"
35 #include "llvm/Support/ErrorHandling.h"
36 #include "llvm/Support/FileSystem.h"
37 #include "llvm/Support/MemoryBuffer.h"
38 #include "llvm/Support/Path.h"
39 #include "llvm/Support/raw_ostream.h"
40 #include <algorithm>
41 #include <cassert>
42 #include <map>
43 #include <memory>
44 #include <set>
45 #include <sstream>
46 #include <string>
47 #include <system_error>
48 #include <utility>
49 #include <vector>
50 
51 using namespace clang;
52 using namespace ento;
53 
54 //===----------------------------------------------------------------------===//
55 // Boilerplate.
56 //===----------------------------------------------------------------------===//
57 
58 namespace {
59 
60 class HTMLDiagnostics : public PathDiagnosticConsumer {
61   std::string Directory;
62   bool createdDir = false;
63   bool noDir = false;
64   const Preprocessor &PP;
65   AnalyzerOptions &AnalyzerOpts;
66   const bool SupportsCrossFileDiagnostics;
67 
68 public:
69   HTMLDiagnostics(AnalyzerOptions &AnalyzerOpts,
70                   const std::string& prefix,
71                   const Preprocessor &pp,
72                   bool supportsMultipleFiles)
73       : Directory(prefix), PP(pp), AnalyzerOpts(AnalyzerOpts),
74         SupportsCrossFileDiagnostics(supportsMultipleFiles) {}
75 
76   ~HTMLDiagnostics() override { FlushDiagnostics(nullptr); }
77 
78   void FlushDiagnosticsImpl(std::vector<const PathDiagnostic *> &Diags,
79                             FilesMade *filesMade) override;
80 
81   StringRef getName() const override {
82     return "HTMLDiagnostics";
83   }
84 
85   bool supportsCrossFileDiagnostics() const override {
86     return SupportsCrossFileDiagnostics;
87   }
88 
89   unsigned ProcessMacroPiece(raw_ostream &os,
90                              const PathDiagnosticMacroPiece& P,
91                              unsigned num);
92 
93   void HandlePiece(Rewriter &R, FileID BugFileID, const PathDiagnosticPiece &P,
94                    const std::vector<SourceRange> &PopUpRanges, unsigned num,
95                    unsigned max);
96 
97   void HighlightRange(Rewriter& R, FileID BugFileID, SourceRange Range,
98                       const char *HighlightStart = "<span class=\"mrange\">",
99                       const char *HighlightEnd = "</span>");
100 
101   void ReportDiag(const PathDiagnostic& D,
102                   FilesMade *filesMade);
103 
104   // Generate the full HTML report
105   std::string GenerateHTML(const PathDiagnostic& D, Rewriter &R,
106                            const SourceManager& SMgr, const PathPieces& path,
107                            const char *declName);
108 
109   // Add HTML header/footers to file specified by FID
110   void FinalizeHTML(const PathDiagnostic& D, Rewriter &R,
111                     const SourceManager& SMgr, const PathPieces& path,
112                     FileID FID, const FileEntry *Entry, const char *declName);
113 
114   // Rewrite the file specified by FID with HTML formatting.
115   void RewriteFile(Rewriter &R, const PathPieces& path, FileID FID);
116 
117 
118 private:
119   /// \return Javascript for displaying shortcuts help;
120   StringRef showHelpJavascript();
121 
122   /// \return Javascript for navigating the HTML report using j/k keys.
123   StringRef generateKeyboardNavigationJavascript();
124 
125   /// \return JavaScript for an option to only show relevant lines.
126   std::string showRelevantLinesJavascript(
127     const PathDiagnostic &D, const PathPieces &path);
128 
129   /// Write executed lines from \p D in JSON format into \p os.
130   void dumpCoverageData(const PathDiagnostic &D,
131                         const PathPieces &path,
132                         llvm::raw_string_ostream &os);
133 };
134 
135 } // namespace
136 
137 void ento::createHTMLDiagnosticConsumer(
138     AnalyzerOptions &AnalyzerOpts, PathDiagnosticConsumers &C,
139     const std::string &prefix, const Preprocessor &PP,
140     const cross_tu::CrossTranslationUnitContext &) {
141   C.push_back(new HTMLDiagnostics(AnalyzerOpts, prefix, PP, true));
142 }
143 
144 void ento::createHTMLSingleFileDiagnosticConsumer(
145     AnalyzerOptions &AnalyzerOpts, PathDiagnosticConsumers &C,
146     const std::string &prefix, const Preprocessor &PP,
147     const cross_tu::CrossTranslationUnitContext &) {
148   C.push_back(new HTMLDiagnostics(AnalyzerOpts, prefix, PP, false));
149 }
150 
151 //===----------------------------------------------------------------------===//
152 // Report processing.
153 //===----------------------------------------------------------------------===//
154 
155 void HTMLDiagnostics::FlushDiagnosticsImpl(
156   std::vector<const PathDiagnostic *> &Diags,
157   FilesMade *filesMade) {
158   for (const auto Diag : Diags)
159     ReportDiag(*Diag, filesMade);
160 }
161 
162 void HTMLDiagnostics::ReportDiag(const PathDiagnostic& D,
163                                  FilesMade *filesMade) {
164   // Create the HTML directory if it is missing.
165   if (!createdDir) {
166     createdDir = true;
167     if (std::error_code ec = llvm::sys::fs::create_directories(Directory)) {
168       llvm::errs() << "warning: could not create directory '"
169                    << Directory << "': " << ec.message() << '\n';
170       noDir = true;
171       return;
172     }
173   }
174 
175   if (noDir)
176     return;
177 
178   // First flatten out the entire path to make it easier to use.
179   PathPieces path = D.path.flatten(/*ShouldFlattenMacros=*/false);
180 
181   // The path as already been prechecked that the path is non-empty.
182   assert(!path.empty());
183   const SourceManager &SMgr = path.front()->getLocation().getManager();
184 
185   // Create a new rewriter to generate HTML.
186   Rewriter R(const_cast<SourceManager&>(SMgr), PP.getLangOpts());
187 
188   // The file for the first path element is considered the main report file, it
189   // will usually be equivalent to SMgr.getMainFileID(); however, it might be a
190   // header when -analyzer-opt-analyze-headers is used.
191   FileID ReportFile = path.front()->getLocation().asLocation().getExpansionLoc().getFileID();
192 
193   // Get the function/method name
194   SmallString<128> declName("unknown");
195   int offsetDecl = 0;
196   if (const Decl *DeclWithIssue = D.getDeclWithIssue()) {
197       if (const auto *ND = dyn_cast<NamedDecl>(DeclWithIssue))
198           declName = ND->getDeclName().getAsString();
199 
200       if (const Stmt *Body = DeclWithIssue->getBody()) {
201           // Retrieve the relative position of the declaration which will be used
202           // for the file name
203           FullSourceLoc L(
204               SMgr.getExpansionLoc(path.back()->getLocation().asLocation()),
205               SMgr);
206           FullSourceLoc FunL(SMgr.getExpansionLoc(Body->getBeginLoc()), SMgr);
207           offsetDecl = L.getExpansionLineNumber() - FunL.getExpansionLineNumber();
208       }
209   }
210 
211   std::string report = GenerateHTML(D, R, SMgr, path, declName.c_str());
212   if (report.empty()) {
213     llvm::errs() << "warning: no diagnostics generated for main file.\n";
214     return;
215   }
216 
217   // Create a path for the target HTML file.
218   int FD;
219   SmallString<128> Model, ResultPath;
220 
221   if (!AnalyzerOpts.ShouldWriteStableReportFilename) {
222       llvm::sys::path::append(Model, Directory, "report-%%%%%%.html");
223       if (std::error_code EC =
224           llvm::sys::fs::make_absolute(Model)) {
225           llvm::errs() << "warning: could not make '" << Model
226                        << "' absolute: " << EC.message() << '\n';
227         return;
228       }
229       if (std::error_code EC =
230           llvm::sys::fs::createUniqueFile(Model, FD, ResultPath)) {
231           llvm::errs() << "warning: could not create file in '" << Directory
232                        << "': " << EC.message() << '\n';
233           return;
234       }
235   } else {
236       int i = 1;
237       std::error_code EC;
238       do {
239           // Find a filename which is not already used
240           const FileEntry* Entry = SMgr.getFileEntryForID(ReportFile);
241           std::stringstream filename;
242           Model = "";
243           filename << "report-"
244                    << llvm::sys::path::filename(Entry->getName()).str()
245                    << "-" << declName.c_str()
246                    << "-" << offsetDecl
247                    << "-" << i << ".html";
248           llvm::sys::path::append(Model, Directory,
249                                   filename.str());
250           EC = llvm::sys::fs::openFileForReadWrite(
251               Model, FD, llvm::sys::fs::CD_CreateNew, llvm::sys::fs::OF_None);
252           if (EC && EC != llvm::errc::file_exists) {
253               llvm::errs() << "warning: could not create file '" << Model
254                            << "': " << EC.message() << '\n';
255               return;
256           }
257           i++;
258       } while (EC);
259   }
260 
261   llvm::raw_fd_ostream os(FD, true);
262 
263   if (filesMade)
264     filesMade->addDiagnostic(D, getName(),
265                              llvm::sys::path::filename(ResultPath));
266 
267   // Emit the HTML to disk.
268   os << report;
269 }
270 
271 std::string HTMLDiagnostics::GenerateHTML(const PathDiagnostic& D, Rewriter &R,
272     const SourceManager& SMgr, const PathPieces& path, const char *declName) {
273   // Rewrite source files as HTML for every new file the path crosses
274   std::vector<FileID> FileIDs;
275   for (auto I : path) {
276     FileID FID = I->getLocation().asLocation().getExpansionLoc().getFileID();
277     if (llvm::is_contained(FileIDs, FID))
278       continue;
279 
280     FileIDs.push_back(FID);
281     RewriteFile(R, path, FID);
282   }
283 
284   if (SupportsCrossFileDiagnostics && FileIDs.size() > 1) {
285     // Prefix file names, anchor tags, and nav cursors to every file
286     for (auto I = FileIDs.begin(), E = FileIDs.end(); I != E; I++) {
287       std::string s;
288       llvm::raw_string_ostream os(s);
289 
290       if (I != FileIDs.begin())
291         os << "<hr class=divider>\n";
292 
293       os << "<div id=File" << I->getHashValue() << ">\n";
294 
295       // Left nav arrow
296       if (I != FileIDs.begin())
297         os << "<div class=FileNav><a href=\"#File" << (I - 1)->getHashValue()
298            << "\">&#x2190;</a></div>";
299 
300       os << "<h4 class=FileName>" << SMgr.getFileEntryForID(*I)->getName()
301          << "</h4>\n";
302 
303       // Right nav arrow
304       if (I + 1 != E)
305         os << "<div class=FileNav><a href=\"#File" << (I + 1)->getHashValue()
306            << "\">&#x2192;</a></div>";
307 
308       os << "</div>\n";
309 
310       R.InsertTextBefore(SMgr.getLocForStartOfFile(*I), os.str());
311     }
312 
313     // Append files to the main report file in the order they appear in the path
314     for (auto I : llvm::make_range(FileIDs.begin() + 1, FileIDs.end())) {
315       std::string s;
316       llvm::raw_string_ostream os(s);
317 
318       const RewriteBuffer *Buf = R.getRewriteBufferFor(I);
319       for (auto BI : *Buf)
320         os << BI;
321 
322       R.InsertTextAfter(SMgr.getLocForEndOfFile(FileIDs[0]), os.str());
323     }
324   }
325 
326   const RewriteBuffer *Buf = R.getRewriteBufferFor(FileIDs[0]);
327   if (!Buf)
328     return {};
329 
330   // Add CSS, header, and footer.
331   FileID FID =
332       path.back()->getLocation().asLocation().getExpansionLoc().getFileID();
333   const FileEntry* Entry = SMgr.getFileEntryForID(FID);
334   FinalizeHTML(D, R, SMgr, path, FileIDs[0], Entry, declName);
335 
336   std::string file;
337   llvm::raw_string_ostream os(file);
338   for (auto BI : *Buf)
339     os << BI;
340 
341   return os.str();
342 }
343 
344 void HTMLDiagnostics::dumpCoverageData(
345     const PathDiagnostic &D,
346     const PathPieces &path,
347     llvm::raw_string_ostream &os) {
348 
349   const FilesToLineNumsMap &ExecutedLines = D.getExecutedLines();
350 
351   os << "var relevant_lines = {";
352   for (auto I = ExecutedLines.begin(),
353             E = ExecutedLines.end(); I != E; ++I) {
354     if (I != ExecutedLines.begin())
355       os << ", ";
356 
357     os << "\"" << I->first.getHashValue() << "\": {";
358     for (unsigned LineNo : I->second) {
359       if (LineNo != *(I->second.begin()))
360         os << ", ";
361 
362       os << "\"" << LineNo << "\": 1";
363     }
364     os << "}";
365   }
366 
367   os << "};";
368 }
369 
370 std::string HTMLDiagnostics::showRelevantLinesJavascript(
371       const PathDiagnostic &D, const PathPieces &path) {
372   std::string s;
373   llvm::raw_string_ostream os(s);
374   os << "<script type='text/javascript'>\n";
375   dumpCoverageData(D, path, os);
376   os << R"<<<(
377 
378 var filterCounterexample = function (hide) {
379   var tables = document.getElementsByClassName("code");
380   for (var t=0; t<tables.length; t++) {
381     var table = tables[t];
382     var file_id = table.getAttribute("data-fileid");
383     var lines_in_fid = relevant_lines[file_id];
384     if (!lines_in_fid) {
385       lines_in_fid = {};
386     }
387     var lines = table.getElementsByClassName("codeline");
388     for (var i=0; i<lines.length; i++) {
389         var el = lines[i];
390         var lineNo = el.getAttribute("data-linenumber");
391         if (!lines_in_fid[lineNo]) {
392           if (hide) {
393             el.setAttribute("hidden", "");
394           } else {
395             el.removeAttribute("hidden");
396           }
397         }
398     }
399   }
400 }
401 
402 window.addEventListener("keydown", function (event) {
403   if (event.defaultPrevented) {
404     return;
405   }
406   if (event.key == "S") {
407     var checked = document.getElementsByName("showCounterexample")[0].checked;
408     filterCounterexample(!checked);
409     document.getElementsByName("showCounterexample")[0].checked = !checked;
410   } else {
411     return;
412   }
413   event.preventDefault();
414 }, true);
415 
416 document.addEventListener("DOMContentLoaded", function() {
417     document.querySelector('input[name="showCounterexample"]').onchange=
418         function (event) {
419       filterCounterexample(this.checked);
420     };
421 });
422 </script>
423 
424 <form>
425     <input type="checkbox" name="showCounterexample" id="showCounterexample" />
426     <label for="showCounterexample">
427        Show only relevant lines
428     </label>
429 </form>
430 )<<<";
431 
432   return os.str();
433 }
434 
435 void HTMLDiagnostics::FinalizeHTML(const PathDiagnostic& D, Rewriter &R,
436     const SourceManager& SMgr, const PathPieces& path, FileID FID,
437     const FileEntry *Entry, const char *declName) {
438   // This is a cludge; basically we want to append either the full
439   // working directory if we have no directory information.  This is
440   // a work in progress.
441 
442   llvm::SmallString<0> DirName;
443 
444   if (llvm::sys::path::is_relative(Entry->getName())) {
445     llvm::sys::fs::current_path(DirName);
446     DirName += '/';
447   }
448 
449   int LineNumber = path.back()->getLocation().asLocation().getExpansionLineNumber();
450   int ColumnNumber = path.back()->getLocation().asLocation().getExpansionColumnNumber();
451 
452   R.InsertTextBefore(SMgr.getLocForStartOfFile(FID), showHelpJavascript());
453 
454   R.InsertTextBefore(SMgr.getLocForStartOfFile(FID),
455                      generateKeyboardNavigationJavascript());
456 
457   // Checkbox and javascript for filtering the output to the counterexample.
458   R.InsertTextBefore(SMgr.getLocForStartOfFile(FID),
459                      showRelevantLinesJavascript(D, path));
460 
461   // Add the name of the file as an <h1> tag.
462   {
463     std::string s;
464     llvm::raw_string_ostream os(s);
465 
466     os << "<!-- REPORTHEADER -->\n"
467        << "<h3>Bug Summary</h3>\n<table class=\"simpletable\">\n"
468           "<tr><td class=\"rowname\">File:</td><td>"
469        << html::EscapeText(DirName)
470        << html::EscapeText(Entry->getName())
471        << "</td></tr>\n<tr><td class=\"rowname\">Warning:</td><td>"
472           "<a href=\"#EndPath\">line "
473        << LineNumber
474        << ", column "
475        << ColumnNumber
476        << "</a><br />"
477        << D.getVerboseDescription() << "</td></tr>\n";
478 
479     // The navigation across the extra notes pieces.
480     unsigned NumExtraPieces = 0;
481     for (const auto &Piece : path) {
482       if (const auto *P = dyn_cast<PathDiagnosticNotePiece>(Piece.get())) {
483         int LineNumber =
484             P->getLocation().asLocation().getExpansionLineNumber();
485         int ColumnNumber =
486             P->getLocation().asLocation().getExpansionColumnNumber();
487         os << "<tr><td class=\"rowname\">Note:</td><td>"
488            << "<a href=\"#Note" << NumExtraPieces << "\">line "
489            << LineNumber << ", column " << ColumnNumber << "</a><br />"
490            << P->getString() << "</td></tr>";
491         ++NumExtraPieces;
492       }
493     }
494 
495     // Output any other meta data.
496 
497     for (PathDiagnostic::meta_iterator I = D.meta_begin(), E = D.meta_end();
498          I != E; ++I) {
499       os << "<tr><td></td><td>" << html::EscapeText(*I) << "</td></tr>\n";
500     }
501 
502     os << R"<<<(
503 </table>
504 <!-- REPORTSUMMARYEXTRA -->
505 <h3>Annotated Source Code</h3>
506 <p>Press <a href="#" onclick="toggleHelp(); return false;">'?'</a>
507    to see keyboard shortcuts</p>
508 <input type="checkbox" class="spoilerhider" id="showinvocation" />
509 <label for="showinvocation" >Show analyzer invocation</label>
510 <div class="spoiler">clang -cc1 )<<<";
511     os << html::EscapeText(AnalyzerOpts.FullCompilerInvocation);
512     os << R"<<<(
513 </div>
514 <div id='tooltiphint' hidden="true">
515   <p>Keyboard shortcuts: </p>
516   <ul>
517     <li>Use 'j/k' keys for keyboard navigation</li>
518     <li>Use 'Shift+S' to show/hide relevant lines</li>
519     <li>Use '?' to toggle this window</li>
520   </ul>
521   <a href="#" onclick="toggleHelp(); return false;">Close</a>
522 </div>
523 )<<<";
524     R.InsertTextBefore(SMgr.getLocForStartOfFile(FID), os.str());
525   }
526 
527   // Embed meta-data tags.
528   {
529     std::string s;
530     llvm::raw_string_ostream os(s);
531 
532     StringRef BugDesc = D.getVerboseDescription();
533     if (!BugDesc.empty())
534       os << "\n<!-- BUGDESC " << BugDesc << " -->\n";
535 
536     StringRef BugType = D.getBugType();
537     if (!BugType.empty())
538       os << "\n<!-- BUGTYPE " << BugType << " -->\n";
539 
540     PathDiagnosticLocation UPDLoc = D.getUniqueingLoc();
541     FullSourceLoc L(SMgr.getExpansionLoc(UPDLoc.isValid()
542                                              ? UPDLoc.asLocation()
543                                              : D.getLocation().asLocation()),
544                     SMgr);
545     const Decl *DeclWithIssue = D.getDeclWithIssue();
546 
547     StringRef BugCategory = D.getCategory();
548     if (!BugCategory.empty())
549       os << "\n<!-- BUGCATEGORY " << BugCategory << " -->\n";
550 
551     os << "\n<!-- BUGFILE " << DirName << Entry->getName() << " -->\n";
552 
553     os << "\n<!-- FILENAME " << llvm::sys::path::filename(Entry->getName()) << " -->\n";
554 
555     os  << "\n<!-- FUNCTIONNAME " <<  declName << " -->\n";
556 
557     os << "\n<!-- ISSUEHASHCONTENTOFLINEINCONTEXT "
558        << GetIssueHash(SMgr, L, D.getCheckName(), D.getBugType(), DeclWithIssue,
559                        PP.getLangOpts()) << " -->\n";
560 
561     os << "\n<!-- BUGLINE "
562        << LineNumber
563        << " -->\n";
564 
565     os << "\n<!-- BUGCOLUMN "
566       << ColumnNumber
567       << " -->\n";
568 
569     os << "\n<!-- BUGPATHLENGTH " << path.size() << " -->\n";
570 
571     // Mark the end of the tags.
572     os << "\n<!-- BUGMETAEND -->\n";
573 
574     // Insert the text.
575     R.InsertTextBefore(SMgr.getLocForStartOfFile(FID), os.str());
576   }
577 
578   html::AddHeaderFooterInternalBuiltinCSS(R, FID, Entry->getName());
579 }
580 
581 StringRef HTMLDiagnostics::showHelpJavascript() {
582   return R"<<<(
583 <script type='text/javascript'>
584 
585 var toggleHelp = function() {
586     var hint = document.querySelector("#tooltiphint");
587     var attributeName = "hidden";
588     if (hint.hasAttribute(attributeName)) {
589       hint.removeAttribute(attributeName);
590     } else {
591       hint.setAttribute("hidden", "true");
592     }
593 };
594 window.addEventListener("keydown", function (event) {
595   if (event.defaultPrevented) {
596     return;
597   }
598   if (event.key == "?") {
599     toggleHelp();
600   } else {
601     return;
602   }
603   event.preventDefault();
604 });
605 </script>
606 )<<<";
607 }
608 
609 static void
610 HandlePopUpPieceStartTag(Rewriter &R,
611                          const std::vector<SourceRange> &PopUpRanges) {
612   for (const auto &Range : PopUpRanges) {
613     html::HighlightRange(R, Range.getBegin(), Range.getEnd(), "",
614                          "<table class='variable_popup'><tbody>",
615                          /*IsTokenRange=*/true);
616   }
617 }
618 
619 static void HandlePopUpPieceEndTag(Rewriter &R,
620                                    const PathDiagnosticPopUpPiece &Piece,
621                                    std::vector<SourceRange> &PopUpRanges,
622                                    unsigned int LastReportedPieceIndex,
623                                    unsigned int PopUpPieceIndex) {
624   SmallString<256> Buf;
625   llvm::raw_svector_ostream Out(Buf);
626 
627   SourceRange Range(Piece.getLocation().asRange());
628 
629   // Write out the path indices with a right arrow and the message as a row.
630   Out << "<tr><td valign='top'><div class='PathIndex PathIndexPopUp'>"
631       << LastReportedPieceIndex;
632 
633   // Also annotate the state transition with extra indices.
634   Out << '.' << PopUpPieceIndex;
635 
636   Out << "</div></td><td>" << Piece.getString() << "</td></tr>";
637 
638   // If no report made at this range mark the variable and add the end tags.
639   if (std::find(PopUpRanges.begin(), PopUpRanges.end(), Range) ==
640       PopUpRanges.end()) {
641     // Store that we create a report at this range.
642     PopUpRanges.push_back(Range);
643 
644     Out << "</tbody></table></span>";
645     html::HighlightRange(R, Range.getBegin(), Range.getEnd(),
646                          "<span class='variable'>", Buf.c_str(),
647                          /*IsTokenRange=*/true);
648   } else {
649     // Otherwise inject just the new row at the end of the range.
650     html::HighlightRange(R, Range.getBegin(), Range.getEnd(), "", Buf.c_str(),
651                          /*IsTokenRange=*/true);
652   }
653 }
654 
655 void HTMLDiagnostics::RewriteFile(Rewriter &R,
656                                   const PathPieces& path, FileID FID) {
657   // Process the path.
658   // Maintain the counts of extra note pieces separately.
659   unsigned TotalPieces = path.size();
660   unsigned TotalNotePieces = std::count_if(
661       path.begin(), path.end(), [](const PathDiagnosticPieceRef &p) {
662         return isa<PathDiagnosticNotePiece>(*p);
663       });
664   unsigned PopUpPieceCount = std::count_if(
665       path.begin(), path.end(), [](const PathDiagnosticPieceRef &p) {
666         return isa<PathDiagnosticPopUpPiece>(*p);
667       });
668 
669   unsigned TotalRegularPieces = TotalPieces - TotalNotePieces - PopUpPieceCount;
670   unsigned NumRegularPieces = TotalRegularPieces;
671   unsigned NumNotePieces = TotalNotePieces;
672   // Stores the count of the regular piece indices.
673   std::map<int, int> IndexMap;
674 
675   // Stores the different ranges where we have reported something.
676   std::vector<SourceRange> PopUpRanges;
677   for (auto I = path.rbegin(), E = path.rend(); I != E; ++I) {
678     const auto &Piece = *I->get();
679 
680     if (isa<PathDiagnosticPopUpPiece>(Piece)) {
681       ++IndexMap[NumRegularPieces];
682     } else if (isa<PathDiagnosticNotePiece>(Piece)) {
683       // This adds diagnostic bubbles, but not navigation.
684       // Navigation through note pieces would be added later,
685       // as a separate pass through the piece list.
686       HandlePiece(R, FID, Piece, PopUpRanges, NumNotePieces, TotalNotePieces);
687       --NumNotePieces;
688     } else {
689       HandlePiece(R, FID, Piece, PopUpRanges, NumRegularPieces,
690                   TotalRegularPieces);
691       --NumRegularPieces;
692     }
693   }
694 
695   // Secondary indexing if we are having multiple pop-ups between two notes.
696   // (e.g. [(13) 'a' is 'true'];  [(13.1) 'b' is 'false'];  [(13.2) 'c' is...)
697   NumRegularPieces = TotalRegularPieces;
698   for (auto I = path.rbegin(), E = path.rend(); I != E; ++I) {
699     const auto &Piece = *I->get();
700 
701     if (const auto *PopUpP = dyn_cast<PathDiagnosticPopUpPiece>(&Piece)) {
702       int PopUpPieceIndex = IndexMap[NumRegularPieces];
703 
704       // Pop-up pieces needs the index of the last reported piece and its count
705       // how many times we report to handle multiple reports on the same range.
706       // This marks the variable, adds the </table> end tag and the message
707       // (list element) as a row. The <table> start tag will be added after the
708       // rows has been written out. Note: It stores every different range.
709       HandlePopUpPieceEndTag(R, *PopUpP, PopUpRanges, NumRegularPieces,
710                              PopUpPieceIndex);
711 
712       if (PopUpPieceIndex > 0)
713         --IndexMap[NumRegularPieces];
714 
715     } else if (!isa<PathDiagnosticNotePiece>(Piece)) {
716       --NumRegularPieces;
717     }
718   }
719 
720   // Add the <table> start tag of pop-up pieces based on the stored ranges.
721   HandlePopUpPieceStartTag(R, PopUpRanges);
722 
723   // Add line numbers, header, footer, etc.
724   html::EscapeText(R, FID);
725   html::AddLineNumbers(R, FID);
726 
727   // If we have a preprocessor, relex the file and syntax highlight.
728   // We might not have a preprocessor if we come from a deserialized AST file,
729   // for example.
730   html::SyntaxHighlight(R, FID, PP);
731   html::HighlightMacros(R, FID, PP);
732 }
733 
734 void HTMLDiagnostics::HandlePiece(Rewriter &R, FileID BugFileID,
735                                   const PathDiagnosticPiece &P,
736                                   const std::vector<SourceRange> &PopUpRanges,
737                                   unsigned num, unsigned max) {
738   // For now, just draw a box above the line in question, and emit the
739   // warning.
740   FullSourceLoc Pos = P.getLocation().asLocation();
741 
742   if (!Pos.isValid())
743     return;
744 
745   SourceManager &SM = R.getSourceMgr();
746   assert(&Pos.getManager() == &SM && "SourceManagers are different!");
747   std::pair<FileID, unsigned> LPosInfo = SM.getDecomposedExpansionLoc(Pos);
748 
749   if (LPosInfo.first != BugFileID)
750     return;
751 
752   const llvm::MemoryBuffer *Buf = SM.getBuffer(LPosInfo.first);
753   const char* FileStart = Buf->getBufferStart();
754 
755   // Compute the column number.  Rewind from the current position to the start
756   // of the line.
757   unsigned ColNo = SM.getColumnNumber(LPosInfo.first, LPosInfo.second);
758   const char *TokInstantiationPtr =Pos.getExpansionLoc().getCharacterData();
759   const char *LineStart = TokInstantiationPtr-ColNo;
760 
761   // Compute LineEnd.
762   const char *LineEnd = TokInstantiationPtr;
763   const char* FileEnd = Buf->getBufferEnd();
764   while (*LineEnd != '\n' && LineEnd != FileEnd)
765     ++LineEnd;
766 
767   // Compute the margin offset by counting tabs and non-tabs.
768   unsigned PosNo = 0;
769   for (const char* c = LineStart; c != TokInstantiationPtr; ++c)
770     PosNo += *c == '\t' ? 8 : 1;
771 
772   // Create the html for the message.
773 
774   const char *Kind = nullptr;
775   bool IsNote = false;
776   bool SuppressIndex = (max == 1);
777   switch (P.getKind()) {
778   case PathDiagnosticPiece::Event: Kind = "Event"; break;
779   case PathDiagnosticPiece::ControlFlow: Kind = "Control"; break;
780     // Setting Kind to "Control" is intentional.
781   case PathDiagnosticPiece::Macro: Kind = "Control"; break;
782   case PathDiagnosticPiece::Note:
783     Kind = "Note";
784     IsNote = true;
785     SuppressIndex = true;
786     break;
787   case PathDiagnosticPiece::Call:
788   case PathDiagnosticPiece::PopUp:
789     llvm_unreachable("Calls and extra notes should already be handled");
790   }
791 
792   std::string sbuf;
793   llvm::raw_string_ostream os(sbuf);
794 
795   os << "\n<tr><td class=\"num\"></td><td class=\"line\"><div id=\"";
796 
797   if (IsNote)
798     os << "Note" << num;
799   else if (num == max)
800     os << "EndPath";
801   else
802     os << "Path" << num;
803 
804   os << "\" class=\"msg";
805   if (Kind)
806     os << " msg" << Kind;
807   os << "\" style=\"margin-left:" << PosNo << "ex";
808 
809   // Output a maximum size.
810   if (!isa<PathDiagnosticMacroPiece>(P)) {
811     // Get the string and determining its maximum substring.
812     const auto &Msg = P.getString();
813     unsigned max_token = 0;
814     unsigned cnt = 0;
815     unsigned len = Msg.size();
816 
817     for (char C : Msg)
818       switch (C) {
819       default:
820         ++cnt;
821         continue;
822       case ' ':
823       case '\t':
824       case '\n':
825         if (cnt > max_token) max_token = cnt;
826         cnt = 0;
827       }
828 
829     if (cnt > max_token)
830       max_token = cnt;
831 
832     // Determine the approximate size of the message bubble in em.
833     unsigned em;
834     const unsigned max_line = 120;
835 
836     if (max_token >= max_line)
837       em = max_token / 2;
838     else {
839       unsigned characters = max_line;
840       unsigned lines = len / max_line;
841 
842       if (lines > 0) {
843         for (; characters > max_token; --characters)
844           if (len / characters > lines) {
845             ++characters;
846             break;
847           }
848       }
849 
850       em = characters / 2;
851     }
852 
853     if (em < max_line/2)
854       os << "; max-width:" << em << "em";
855   }
856   else
857     os << "; max-width:100em";
858 
859   os << "\">";
860 
861   if (!SuppressIndex) {
862     os << "<table class=\"msgT\"><tr><td valign=\"top\">";
863     os << "<div class=\"PathIndex";
864     if (Kind) os << " PathIndex" << Kind;
865     os << "\">" << num << "</div>";
866 
867     if (num > 1) {
868       os << "</td><td><div class=\"PathNav\"><a href=\"#Path"
869          << (num - 1)
870          << "\" title=\"Previous event ("
871          << (num - 1)
872          << ")\">&#x2190;</a></div></td>";
873     }
874 
875     os << "</td><td>";
876   }
877 
878   if (const auto *MP = dyn_cast<PathDiagnosticMacroPiece>(&P)) {
879     os << "Within the expansion of the macro '";
880 
881     // Get the name of the macro by relexing it.
882     {
883       FullSourceLoc L = MP->getLocation().asLocation().getExpansionLoc();
884       assert(L.isFileID());
885       StringRef BufferInfo = L.getBufferData();
886       std::pair<FileID, unsigned> LocInfo = L.getDecomposedLoc();
887       const char* MacroName = LocInfo.second + BufferInfo.data();
888       Lexer rawLexer(SM.getLocForStartOfFile(LocInfo.first), PP.getLangOpts(),
889                      BufferInfo.begin(), MacroName, BufferInfo.end());
890 
891       Token TheTok;
892       rawLexer.LexFromRawLexer(TheTok);
893       for (unsigned i = 0, n = TheTok.getLength(); i < n; ++i)
894         os << MacroName[i];
895     }
896 
897     os << "':\n";
898 
899     if (!SuppressIndex) {
900       os << "</td>";
901       if (num < max) {
902         os << "<td><div class=\"PathNav\"><a href=\"#";
903         if (num == max - 1)
904           os << "EndPath";
905         else
906           os << "Path" << (num + 1);
907         os << "\" title=\"Next event ("
908         << (num + 1)
909         << ")\">&#x2192;</a></div></td>";
910       }
911 
912       os << "</tr></table>";
913     }
914 
915     // Within a macro piece.  Write out each event.
916     ProcessMacroPiece(os, *MP, 0);
917   }
918   else {
919     os << html::EscapeText(P.getString());
920 
921     if (!SuppressIndex) {
922       os << "</td>";
923       if (num < max) {
924         os << "<td><div class=\"PathNav\"><a href=\"#";
925         if (num == max - 1)
926           os << "EndPath";
927         else
928           os << "Path" << (num + 1);
929         os << "\" title=\"Next event ("
930            << (num + 1)
931            << ")\">&#x2192;</a></div></td>";
932       }
933 
934       os << "</tr></table>";
935     }
936   }
937 
938   os << "</div></td></tr>";
939 
940   // Insert the new html.
941   unsigned DisplayPos = LineEnd - FileStart;
942   SourceLocation Loc =
943     SM.getLocForStartOfFile(LPosInfo.first).getLocWithOffset(DisplayPos);
944 
945   R.InsertTextBefore(Loc, os.str());
946 
947   // Now highlight the ranges.
948   ArrayRef<SourceRange> Ranges = P.getRanges();
949   for (const auto &Range : Ranges) {
950     // If we have already highlighted the range as a pop-up there is no work.
951     if (std::find(PopUpRanges.begin(), PopUpRanges.end(), Range) !=
952         PopUpRanges.end())
953       continue;
954 
955     HighlightRange(R, LPosInfo.first, Range);
956   }
957 }
958 
959 static void EmitAlphaCounter(raw_ostream &os, unsigned n) {
960   unsigned x = n % ('z' - 'a');
961   n /= 'z' - 'a';
962 
963   if (n > 0)
964     EmitAlphaCounter(os, n);
965 
966   os << char('a' + x);
967 }
968 
969 unsigned HTMLDiagnostics::ProcessMacroPiece(raw_ostream &os,
970                                             const PathDiagnosticMacroPiece& P,
971                                             unsigned num) {
972   for (const auto &subPiece : P.subPieces) {
973     if (const auto *MP = dyn_cast<PathDiagnosticMacroPiece>(subPiece.get())) {
974       num = ProcessMacroPiece(os, *MP, num);
975       continue;
976     }
977 
978     if (const auto *EP = dyn_cast<PathDiagnosticEventPiece>(subPiece.get())) {
979       os << "<div class=\"msg msgEvent\" style=\"width:94%; "
980             "margin-left:5px\">"
981             "<table class=\"msgT\"><tr>"
982             "<td valign=\"top\"><div class=\"PathIndex PathIndexEvent\">";
983       EmitAlphaCounter(os, num++);
984       os << "</div></td><td valign=\"top\">"
985          << html::EscapeText(EP->getString())
986          << "</td></tr></table></div>\n";
987     }
988   }
989 
990   return num;
991 }
992 
993 void HTMLDiagnostics::HighlightRange(Rewriter& R, FileID BugFileID,
994                                      SourceRange Range,
995                                      const char *HighlightStart,
996                                      const char *HighlightEnd) {
997   SourceManager &SM = R.getSourceMgr();
998   const LangOptions &LangOpts = R.getLangOpts();
999 
1000   SourceLocation InstantiationStart = SM.getExpansionLoc(Range.getBegin());
1001   unsigned StartLineNo = SM.getExpansionLineNumber(InstantiationStart);
1002 
1003   SourceLocation InstantiationEnd = SM.getExpansionLoc(Range.getEnd());
1004   unsigned EndLineNo = SM.getExpansionLineNumber(InstantiationEnd);
1005 
1006   if (EndLineNo < StartLineNo)
1007     return;
1008 
1009   if (SM.getFileID(InstantiationStart) != BugFileID ||
1010       SM.getFileID(InstantiationEnd) != BugFileID)
1011     return;
1012 
1013   // Compute the column number of the end.
1014   unsigned EndColNo = SM.getExpansionColumnNumber(InstantiationEnd);
1015   unsigned OldEndColNo = EndColNo;
1016 
1017   if (EndColNo) {
1018     // Add in the length of the token, so that we cover multi-char tokens.
1019     EndColNo += Lexer::MeasureTokenLength(Range.getEnd(), SM, LangOpts)-1;
1020   }
1021 
1022   // Highlight the range.  Make the span tag the outermost tag for the
1023   // selected range.
1024 
1025   SourceLocation E =
1026     InstantiationEnd.getLocWithOffset(EndColNo - OldEndColNo);
1027 
1028   html::HighlightRange(R, InstantiationStart, E, HighlightStart, HighlightEnd);
1029 }
1030 
1031 StringRef HTMLDiagnostics::generateKeyboardNavigationJavascript() {
1032   return R"<<<(
1033 <script type='text/javascript'>
1034 var digitMatcher = new RegExp("[0-9]+");
1035 
1036 document.addEventListener("DOMContentLoaded", function() {
1037     document.querySelectorAll(".PathNav > a").forEach(
1038         function(currentValue, currentIndex) {
1039             var hrefValue = currentValue.getAttribute("href");
1040             currentValue.onclick = function() {
1041                 scrollTo(document.querySelector(hrefValue));
1042                 return false;
1043             };
1044         });
1045 });
1046 
1047 var findNum = function() {
1048     var s = document.querySelector(".selected");
1049     if (!s || s.id == "EndPath") {
1050         return 0;
1051     }
1052     var out = parseInt(digitMatcher.exec(s.id)[0]);
1053     return out;
1054 };
1055 
1056 var scrollTo = function(el) {
1057     document.querySelectorAll(".selected").forEach(function(s) {
1058         s.classList.remove("selected");
1059     });
1060     el.classList.add("selected");
1061     window.scrollBy(0, el.getBoundingClientRect().top -
1062         (window.innerHeight / 2));
1063 }
1064 
1065 var move = function(num, up, numItems) {
1066   if (num == 1 && up || num == numItems - 1 && !up) {
1067     return 0;
1068   } else if (num == 0 && up) {
1069     return numItems - 1;
1070   } else if (num == 0 && !up) {
1071     return 1 % numItems;
1072   }
1073   return up ? num - 1 : num + 1;
1074 }
1075 
1076 var numToId = function(num) {
1077   if (num == 0) {
1078     return document.getElementById("EndPath")
1079   }
1080   return document.getElementById("Path" + num);
1081 };
1082 
1083 var navigateTo = function(up) {
1084   var numItems = document.querySelectorAll(
1085       ".line > .msgEvent, .line > .msgControl").length;
1086   var currentSelected = findNum();
1087   var newSelected = move(currentSelected, up, numItems);
1088   var newEl = numToId(newSelected, numItems);
1089 
1090   // Scroll element into center.
1091   scrollTo(newEl);
1092 };
1093 
1094 window.addEventListener("keydown", function (event) {
1095   if (event.defaultPrevented) {
1096     return;
1097   }
1098   if (event.key == "j") {
1099     navigateTo(/*up=*/false);
1100   } else if (event.key == "k") {
1101     navigateTo(/*up=*/true);
1102   } else {
1103     return;
1104   }
1105   event.preventDefault();
1106 }, true);
1107 </script>
1108   )<<<";
1109 }
1110