blob: dc39dde7ff1f9b7ab33e54ac6fde27fcd23cb012 [file] [log] [blame]
Ted Kremenek6a340832008-03-18 21:19:49 +00001//== HTMLRewrite.cpp - Translate source code into prettified HTML --*- 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 HTMLRewriter clas, which is used to translate the
11// text of a source file into prettified HTML.
12//
13//===----------------------------------------------------------------------===//
14
Ted Kremenek339b9c22008-04-17 22:31:54 +000015#include "clang/Lex/Preprocessor.h"
Ted Kremenek6a340832008-03-18 21:19:49 +000016#include "clang/Rewrite/Rewriter.h"
17#include "clang/Rewrite/HTMLRewrite.h"
Chris Lattner867924d2009-02-13 00:51:30 +000018#include "clang/Lex/TokenConcatenation.h"
Chris Lattner3245a0a2008-04-16 06:11:58 +000019#include "clang/Lex/Preprocessor.h"
Ted Kremenek6a340832008-03-18 21:19:49 +000020#include "clang/Basic/SourceManager.h"
Chris Lattner57df3b92008-04-16 04:11:35 +000021#include "llvm/ADT/SmallString.h"
Ted Kremenek339b9c22008-04-17 22:31:54 +000022#include "llvm/ADT/OwningPtr.h"
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +000023#include "llvm/Support/ErrorHandling.h"
Ted Kremenek6a340832008-03-18 21:19:49 +000024#include "llvm/Support/MemoryBuffer.h"
Ted Kremeneka95d3752008-09-13 05:16:45 +000025#include "llvm/Support/raw_ostream.h"
Ted Kremenek6a340832008-03-18 21:19:49 +000026using namespace clang;
27
Chris Lattner9402b572008-04-16 23:06:45 +000028
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000029/// HighlightRange - Highlight a range in the source code with the specified
30/// start/end tags. B/E must be in the same file. This ensures that
31/// start/end tags are placed at the start/end of each line if the range is
32/// multiline.
33void html::HighlightRange(Rewriter &R, SourceLocation B, SourceLocation E,
34 const char *StartTag, const char *EndTag) {
35 SourceManager &SM = R.getSourceMgr();
Chandler Carruth40278532011-07-25 16:49:02 +000036 B = SM.getExpansionLoc(B);
37 E = SM.getExpansionLoc(E);
Chris Lattnera11d6172009-01-19 07:46:45 +000038 FileID FID = SM.getFileID(B);
39 assert(SM.getFileID(E) == FID && "B/E not in the same file!");
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000040
Chris Lattner52c29082009-01-27 06:27:13 +000041 unsigned BOffset = SM.getFileOffset(B);
42 unsigned EOffset = SM.getFileOffset(E);
Mike Stump1eb44332009-09-09 15:08:12 +000043
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000044 // Include the whole end token in the range.
Chris Lattner2c78b872009-04-14 23:22:57 +000045 EOffset += Lexer::MeasureTokenLength(E, R.getSourceMgr(), R.getLangOpts());
Mike Stump1eb44332009-09-09 15:08:12 +000046
Douglas Gregorf715ca12010-03-16 00:06:06 +000047 bool Invalid = false;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +000048 const char *BufferStart = SM.getBufferData(FID, &Invalid).data();
Douglas Gregorf715ca12010-03-16 00:06:06 +000049 if (Invalid)
Douglas Gregoraea67db2010-03-15 22:54:52 +000050 return;
Douglas Gregoraea67db2010-03-15 22:54:52 +000051
Chris Lattner2b2453a2009-01-17 06:22:33 +000052 HighlightRange(R.getEditBuffer(FID), BOffset, EOffset,
Douglas Gregoraea67db2010-03-15 22:54:52 +000053 BufferStart, StartTag, EndTag);
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000054}
55
56/// HighlightRange - This is the same as the above method, but takes
57/// decomposed file locations.
58void html::HighlightRange(RewriteBuffer &RB, unsigned B, unsigned E,
59 const char *BufferStart,
60 const char *StartTag, const char *EndTag) {
Chris Lattner9402b572008-04-16 23:06:45 +000061 // Insert the tag at the absolute start/end of the range.
Daniel Dunbard7407dc2009-08-19 19:10:30 +000062 RB.InsertTextAfter(B, StartTag);
63 RB.InsertTextBefore(E, EndTag);
Mike Stump1eb44332009-09-09 15:08:12 +000064
Chris Lattner9402b572008-04-16 23:06:45 +000065 // Scan the range to see if there is a \r or \n. If so, and if the line is
66 // not blank, insert tags on that line as well.
67 bool HadOpenTag = true;
Mike Stump1eb44332009-09-09 15:08:12 +000068
Chris Lattner9402b572008-04-16 23:06:45 +000069 unsigned LastNonWhiteSpace = B;
70 for (unsigned i = B; i != E; ++i) {
71 switch (BufferStart[i]) {
72 case '\r':
73 case '\n':
74 // Okay, we found a newline in the range. If we have an open tag, we need
75 // to insert a close tag at the first non-whitespace before the newline.
76 if (HadOpenTag)
Daniel Dunbard7407dc2009-08-19 19:10:30 +000077 RB.InsertTextBefore(LastNonWhiteSpace+1, EndTag);
Mike Stump1eb44332009-09-09 15:08:12 +000078
Chris Lattner9402b572008-04-16 23:06:45 +000079 // Instead of inserting an open tag immediately after the newline, we
80 // wait until we see a non-whitespace character. This prevents us from
81 // inserting tags around blank lines, and also allows the open tag to
82 // be put *after* whitespace on a non-blank line.
83 HadOpenTag = false;
84 break;
85 case '\0':
86 case ' ':
87 case '\t':
88 case '\f':
89 case '\v':
90 // Ignore whitespace.
91 break;
Mike Stump1eb44332009-09-09 15:08:12 +000092
Chris Lattner9402b572008-04-16 23:06:45 +000093 default:
94 // If there is no tag open, do it now.
95 if (!HadOpenTag) {
Daniel Dunbard7407dc2009-08-19 19:10:30 +000096 RB.InsertTextAfter(i, StartTag);
Chris Lattner9402b572008-04-16 23:06:45 +000097 HadOpenTag = true;
98 }
Mike Stump1eb44332009-09-09 15:08:12 +000099
Chris Lattner9402b572008-04-16 23:06:45 +0000100 // Remember this character.
101 LastNonWhiteSpace = i;
102 break;
103 }
104 }
Chris Lattner5ef3e2c2008-04-16 22:45:51 +0000105}
106
Chris Lattner2b2453a2009-01-17 06:22:33 +0000107void html::EscapeText(Rewriter &R, FileID FID,
Ted Kremenekfa5be362008-04-08 22:37:58 +0000108 bool EscapeSpaces, bool ReplaceTabs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000109
Chris Lattner2b2453a2009-01-17 06:22:33 +0000110 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(FID);
Ted Kremenek6a340832008-03-18 21:19:49 +0000111 const char* C = Buf->getBufferStart();
112 const char* FileEnd = Buf->getBufferEnd();
Mike Stump1eb44332009-09-09 15:08:12 +0000113
Ted Kremenek6a340832008-03-18 21:19:49 +0000114 assert (C <= FileEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000115
Chris Lattner2b2453a2009-01-17 06:22:33 +0000116 RewriteBuffer &RB = R.getEditBuffer(FID);
Chris Lattner5c176f72008-04-18 04:54:20 +0000117
118 unsigned ColNo = 0;
Ted Kremenek6a340832008-03-18 21:19:49 +0000119 for (unsigned FilePos = 0; C != FileEnd ; ++C, ++FilePos) {
Ted Kremenek6a340832008-03-18 21:19:49 +0000120 switch (*C) {
Chris Lattner5c176f72008-04-18 04:54:20 +0000121 default: ++ColNo; break;
122 case '\n':
123 case '\r':
124 ColNo = 0;
125 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000126
Chris Lattner73527142008-04-16 04:33:23 +0000127 case ' ':
128 if (EscapeSpaces)
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000129 RB.ReplaceText(FilePos, 1, "&nbsp;");
Chris Lattner5c176f72008-04-18 04:54:20 +0000130 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000131 break;
Chris Lattnerf3d8d192008-04-19 23:56:30 +0000132 case '\f':
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000133 RB.ReplaceText(FilePos, 1, "<hr>");
Chris Lattnerf3d8d192008-04-19 23:56:30 +0000134 ColNo = 0;
135 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000136
Chris Lattner5c176f72008-04-18 04:54:20 +0000137 case '\t': {
Chris Lattner73527142008-04-16 04:33:23 +0000138 if (!ReplaceTabs)
Ted Kremenek49cd6352008-04-03 07:12:29 +0000139 break;
Chris Lattner5c176f72008-04-18 04:54:20 +0000140 unsigned NumSpaces = 8-(ColNo&7);
Chris Lattner73527142008-04-16 04:33:23 +0000141 if (EscapeSpaces)
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000142 RB.ReplaceText(FilePos, 1,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000143 StringRef("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000144 "&nbsp;&nbsp;&nbsp;", 6*NumSpaces));
Chris Lattner73527142008-04-16 04:33:23 +0000145 else
Chris Lattner5f9e2722011-07-23 10:55:15 +0000146 RB.ReplaceText(FilePos, 1, StringRef(" ", NumSpaces));
Chris Lattner5c176f72008-04-18 04:54:20 +0000147 ColNo += NumSpaces;
Chris Lattner73527142008-04-16 04:33:23 +0000148 break;
Chris Lattner5c176f72008-04-18 04:54:20 +0000149 }
Chris Lattner73527142008-04-16 04:33:23 +0000150 case '<':
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000151 RB.ReplaceText(FilePos, 1, "&lt;");
Chris Lattner5c176f72008-04-18 04:54:20 +0000152 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000153 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000154
Chris Lattner73527142008-04-16 04:33:23 +0000155 case '>':
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000156 RB.ReplaceText(FilePos, 1, "&gt;");
Chris Lattner5c176f72008-04-18 04:54:20 +0000157 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000158 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000159
Chris Lattner73527142008-04-16 04:33:23 +0000160 case '&':
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000161 RB.ReplaceText(FilePos, 1, "&amp;");
Chris Lattner5c176f72008-04-18 04:54:20 +0000162 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000163 break;
Ted Kremenek6a340832008-03-18 21:19:49 +0000164 }
165 }
166}
167
Ted Kremenekfa5be362008-04-08 22:37:58 +0000168std::string html::EscapeText(const std::string& s, bool EscapeSpaces,
169 bool ReplaceTabs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000170
Ted Kremenek053ef592008-03-27 17:15:29 +0000171 unsigned len = s.size();
Ted Kremeneka95d3752008-09-13 05:16:45 +0000172 std::string Str;
173 llvm::raw_string_ostream os(Str);
Mike Stump1eb44332009-09-09 15:08:12 +0000174
Ted Kremenek053ef592008-03-27 17:15:29 +0000175 for (unsigned i = 0 ; i < len; ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +0000176
Ted Kremenek053ef592008-03-27 17:15:29 +0000177 char c = s[i];
Ted Kremenek053ef592008-03-27 17:15:29 +0000178 switch (c) {
Chris Lattner8570f0b2008-04-16 04:37:29 +0000179 default:
180 os << c; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Chris Lattner8570f0b2008-04-16 04:37:29 +0000182 case ' ':
183 if (EscapeSpaces) os << "&nbsp;";
184 else os << ' ';
185 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000186
Zhongxing Xuc01b46e2009-08-17 14:13:14 +0000187 case '\t':
188 if (ReplaceTabs) {
189 if (EscapeSpaces)
190 for (unsigned i = 0; i < 4; ++i)
191 os << "&nbsp;";
192 else
193 for (unsigned i = 0; i < 4; ++i)
194 os << " ";
195 }
Mike Stump1eb44332009-09-09 15:08:12 +0000196 else
Zhongxing Xuc01b46e2009-08-17 14:13:14 +0000197 os << c;
Mike Stump1eb44332009-09-09 15:08:12 +0000198
Zhongxing Xuc01b46e2009-08-17 14:13:14 +0000199 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Zhongxing Xuc01b46e2009-08-17 14:13:14 +0000201 case '<': os << "&lt;"; break;
202 case '>': os << "&gt;"; break;
203 case '&': os << "&amp;"; break;
Ted Kremenek053ef592008-03-27 17:15:29 +0000204 }
205 }
Mike Stump1eb44332009-09-09 15:08:12 +0000206
Ted Kremenek053ef592008-03-27 17:15:29 +0000207 return os.str();
208}
209
Chris Lattner8570f0b2008-04-16 04:37:29 +0000210static void AddLineNumber(RewriteBuffer &RB, unsigned LineNo,
211 unsigned B, unsigned E) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000212 SmallString<256> Str;
Daniel Dunbar7e37c812009-08-19 18:30:37 +0000213 llvm::raw_svector_ostream OS(Str);
214
215 OS << "<tr><td class=\"num\" id=\"LN"
216 << LineNo << "\">"
217 << LineNo << "</td><td class=\"line\">";
Mike Stump1eb44332009-09-09 15:08:12 +0000218
Ted Kremenek49cd6352008-04-03 07:12:29 +0000219 if (B == E) { // Handle empty lines.
Daniel Dunbar7e37c812009-08-19 18:30:37 +0000220 OS << " </td></tr>";
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000221 RB.InsertTextBefore(B, OS.str());
Chris Lattner57df3b92008-04-16 04:11:35 +0000222 } else {
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000223 RB.InsertTextBefore(B, OS.str());
224 RB.InsertTextBefore(E, "</td></tr>");
Ted Kremenek49cd6352008-04-03 07:12:29 +0000225 }
Ted Kremenekb485cd12008-03-18 23:08:51 +0000226}
227
Chris Lattner2b2453a2009-01-17 06:22:33 +0000228void html::AddLineNumbers(Rewriter& R, FileID FID) {
Ted Kremenekb485cd12008-03-18 23:08:51 +0000229
Chris Lattner2b2453a2009-01-17 06:22:33 +0000230 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(FID);
Ted Kremenekb485cd12008-03-18 23:08:51 +0000231 const char* FileBeg = Buf->getBufferStart();
232 const char* FileEnd = Buf->getBufferEnd();
233 const char* C = FileBeg;
Chris Lattner2b2453a2009-01-17 06:22:33 +0000234 RewriteBuffer &RB = R.getEditBuffer(FID);
Mike Stump1eb44332009-09-09 15:08:12 +0000235
Ted Kremenekb485cd12008-03-18 23:08:51 +0000236 assert (C <= FileEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000237
Ted Kremenekb485cd12008-03-18 23:08:51 +0000238 unsigned LineNo = 0;
239 unsigned FilePos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000240
241 while (C != FileEnd) {
242
Ted Kremenekb485cd12008-03-18 23:08:51 +0000243 ++LineNo;
244 unsigned LineStartPos = FilePos;
245 unsigned LineEndPos = FileEnd - FileBeg;
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Ted Kremenekb485cd12008-03-18 23:08:51 +0000247 assert (FilePos <= LineEndPos);
248 assert (C < FileEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Ted Kremenekb485cd12008-03-18 23:08:51 +0000250 // Scan until the newline (or end-of-file).
Mike Stump1eb44332009-09-09 15:08:12 +0000251
Ted Kremenek49cd6352008-04-03 07:12:29 +0000252 while (C != FileEnd) {
253 char c = *C;
254 ++C;
Mike Stump1eb44332009-09-09 15:08:12 +0000255
Ted Kremenek49cd6352008-04-03 07:12:29 +0000256 if (c == '\n') {
257 LineEndPos = FilePos++;
Ted Kremenekb485cd12008-03-18 23:08:51 +0000258 break;
259 }
Mike Stump1eb44332009-09-09 15:08:12 +0000260
Ted Kremenek49cd6352008-04-03 07:12:29 +0000261 ++FilePos;
262 }
Mike Stump1eb44332009-09-09 15:08:12 +0000263
Chris Lattner8570f0b2008-04-16 04:37:29 +0000264 AddLineNumber(RB, LineNo, LineStartPos, LineEndPos);
Ted Kremenekd6c13602008-03-19 05:07:26 +0000265 }
Mike Stump1eb44332009-09-09 15:08:12 +0000266
Chris Lattner8570f0b2008-04-16 04:37:29 +0000267 // Add one big table tag that surrounds all of the code.
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000268 RB.InsertTextBefore(0, "<table class=\"code\">\n");
269 RB.InsertTextAfter(FileEnd - FileBeg, "</table>");
Ted Kremenekb485cd12008-03-18 23:08:51 +0000270}
Ted Kremenekad0a2032008-03-19 06:14:37 +0000271
Mike Stump1eb44332009-09-09 15:08:12 +0000272void html::AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID,
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000273 const char *title) {
Ted Kremenekad0a2032008-03-19 06:14:37 +0000274
Chris Lattner2b2453a2009-01-17 06:22:33 +0000275 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(FID);
Ted Kremenekad0a2032008-03-19 06:14:37 +0000276 const char* FileStart = Buf->getBufferStart();
277 const char* FileEnd = Buf->getBufferEnd();
278
Chris Lattner2b2453a2009-01-17 06:22:33 +0000279 SourceLocation StartLoc = R.getSourceMgr().getLocForStartOfFile(FID);
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000280 SourceLocation EndLoc = StartLoc.getLocWithOffset(FileEnd-FileStart);
Ted Kremenekad0a2032008-03-19 06:14:37 +0000281
Ted Kremeneka95d3752008-09-13 05:16:45 +0000282 std::string s;
283 llvm::raw_string_ostream os(s);
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000284 os << "<!doctype html>\n" // Use HTML 5 doctype
285 "<html>\n<head>\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000286
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000287 if (title)
288 os << "<title>" << html::EscapeText(title) << "</title>\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000290 os << "<style type=\"text/css\">\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000291 " body { color:#000000; background-color:#ffffff }\n"
292 " body { font-family:Helvetica, sans-serif; font-size:10pt }\n"
Ted Kremenek4b0f8132008-04-15 21:25:08 +0000293 " h1 { font-size:14pt }\n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000294 " .code { border-collapse:collapse; width:100%; }\n"
Ted Kremenek3eaaa992012-01-20 20:39:55 +0000295 " .code { font-family: \"Monospace\", monospace; font-size:10pt }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000296 " .code { line-height: 1.2em }\n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000297 " .comment { color: green; font-style: oblique }\n"
298 " .keyword { color: blue }\n"
Ted Kremenekcc1b8532008-08-31 16:37:56 +0000299 " .string_literal { color: red }\n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000300 " .directive { color: darkmagenta }\n"
Chris Lattner6f46be22008-04-17 00:40:45 +0000301 // Macro expansions.
Ted Kremenek07339a62008-04-17 19:57:27 +0000302 " .expansion { display: none; }\n"
303 " .macro:hover .expansion { display: block; border: 2px solid #FF0000; "
Chris Lattnerdc5be472008-04-17 21:32:46 +0000304 "padding: 2px; background-color:#FFF0F0; font-weight: normal; "
Chris Lattner6f46be22008-04-17 00:40:45 +0000305 " -webkit-border-radius:5px; -webkit-box-shadow:1px 1px 7px #000; "
Chris Lattner8aa06ac2008-04-17 21:28:41 +0000306 "position: absolute; top: -1em; left:10em; z-index: 1 } \n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000307 " .macro { color: darkmagenta; background-color:LemonChiffon;"
Chris Lattner6f46be22008-04-17 00:40:45 +0000308 // Macros are position: relative to provide base for expansions.
309 " position: relative }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000310 " .num { width:2.5em; padding-right:2ex; background-color:#eeeeee }\n"
Ted Kremenek22236222009-03-10 05:14:32 +0000311 " .num { text-align:right; font-size:8pt }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000312 " .num { color:#444444 }\n"
313 " .line { padding-left: 1ex; border-left: 3px solid #ccc }\n"
314 " .line { white-space: pre }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000315 " .msg { -webkit-box-shadow:1px 1px 7px #000 }\n"
316 " .msg { -webkit-border-radius:5px }\n"
Ted Kremenek22236222009-03-10 05:14:32 +0000317 " .msg { font-family:Helvetica, sans-serif; font-size:8pt }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000318 " .msg { float:left }\n"
Ted Kremenek3c598232009-03-03 03:00:21 +0000319 " .msg { padding:0.25em 1ex 0.25em 1ex }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000320 " .msg { margin-top:10px; margin-bottom:10px }\n"
Ted Kremenek2f103982009-03-02 21:42:01 +0000321 " .msg { font-weight:bold }\n"
Ted Kremenek80bae762009-03-02 23:05:40 +0000322 " .msg { max-width:60em; word-wrap: break-word; white-space: pre-wrap }\n"
323 " .msgT { padding:0x; spacing:0x }\n"
Ted Kremenek2f103982009-03-02 21:42:01 +0000324 " .msgEvent { background-color:#fff8b4; color:#000000 }\n"
Ted Kremenek80bae762009-03-02 23:05:40 +0000325 " .msgControl { background-color:#bbbbbb; color:#000000 }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000326 " .mrange { background-color:#dfddf3 }\n"
327 " .mrange { border-bottom:1px solid #6F9DBE }\n"
Ted Kremenek3c598232009-03-03 03:00:21 +0000328 " .PathIndex { font-weight: bold; padding:0px 5px 0px 5px; "
329 "margin-right:5px; }\n"
Ted Kremenek00f01e42009-03-02 23:39:27 +0000330 " .PathIndex { -webkit-border-radius:8px }\n"
331 " .PathIndexEvent { background-color:#bfba87 }\n"
332 " .PathIndexControl { background-color:#8c8c8c }\n"
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000333 " .CodeInsertionHint { font-weight: bold; background-color: #10dd10 }\n"
334 " .CodeRemovalHint { background-color:#de1010 }\n"
335 " .CodeRemovalHint { border-bottom:1px solid #6F9DBE }\n"
Ted Kremenek4b0f8132008-04-15 21:25:08 +0000336 " table.simpletable {\n"
337 " padding: 5px;\n"
338 " font-size:12pt;\n"
339 " margin:20px;\n"
340 " border-collapse: collapse; border-spacing: 0px;\n"
341 " }\n"
342 " td.rowname {\n"
343 " text-align:right; font-weight:bold; color:#444444;\n"
344 " padding-right:2ex; }\n"
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000345 "</style>\n</head>\n<body>";
Ted Kremenek70bcba62008-04-09 15:40:40 +0000346
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000347 // Generate header
Daniel Dunbar44ba7bf2009-08-19 20:32:38 +0000348 R.InsertTextBefore(StartLoc, os.str());
Ted Kremenekad0a2032008-03-19 06:14:37 +0000349 // Generate footer
Mike Stump1eb44332009-09-09 15:08:12 +0000350
Daniel Dunbar44ba7bf2009-08-19 20:32:38 +0000351 R.InsertTextAfter(EndLoc, "</body></html>\n");
Ted Kremenekad0a2032008-03-19 06:14:37 +0000352}
Chris Lattner3245a0a2008-04-16 06:11:58 +0000353
354/// SyntaxHighlight - Relex the specified FileID and annotate the HTML with
355/// information about keywords, macro expansions etc. This uses the macro
356/// table state from the end of the file, so it won't be perfectly perfect,
357/// but it will be reasonably close.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000358void html::SyntaxHighlight(Rewriter &R, FileID FID, const Preprocessor &PP) {
Chris Lattner2b2453a2009-01-17 06:22:33 +0000359 RewriteBuffer &RB = R.getEditBuffer(FID);
Chris Lattner3245a0a2008-04-16 06:11:58 +0000360
Chris Lattner05db4272009-02-13 19:33:24 +0000361 const SourceManager &SM = PP.getSourceManager();
Chris Lattner6e290142009-11-30 04:18:44 +0000362 const llvm::MemoryBuffer *FromFile = SM.getBuffer(FID);
David Blaikie4e4d0842012-03-11 07:00:24 +0000363 Lexer L(FID, FromFile, SM, PP.getLangOpts());
Chris Lattner025c3a62009-01-17 07:35:14 +0000364 const char *BufferStart = L.getBufferStart();
Mike Stump1eb44332009-09-09 15:08:12 +0000365
366 // Inform the preprocessor that we want to retain comments as tokens, so we
Chris Lattner3245a0a2008-04-16 06:11:58 +0000367 // can highlight them.
Chris Lattner678c6352008-04-16 20:54:51 +0000368 L.SetCommentRetentionState(true);
Mike Stump1eb44332009-09-09 15:08:12 +0000369
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000370 // Lex all the tokens in raw mode, to avoid entering #includes or expanding
371 // macros.
Chris Lattner3245a0a2008-04-16 06:11:58 +0000372 Token Tok;
Chris Lattner590f0cc2008-10-12 01:15:46 +0000373 L.LexFromRawLexer(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000374
Chris Lattner74ea3e52008-04-16 06:53:09 +0000375 while (Tok.isNot(tok::eof)) {
376 // Since we are lexing unexpanded tokens, all tokens are from the main
377 // FileID.
Chris Lattner05db4272009-02-13 19:33:24 +0000378 unsigned TokOffs = SM.getFileOffset(Tok.getLocation());
Chris Lattner3245a0a2008-04-16 06:11:58 +0000379 unsigned TokLen = Tok.getLength();
380 switch (Tok.getKind()) {
Chris Lattnera745e8c2008-04-16 20:51:51 +0000381 default: break;
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000382 case tok::identifier:
383 llvm_unreachable("tok::identifier in raw lexing mode!");
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000384 case tok::raw_identifier: {
385 // Fill in Result.IdentifierInfo and update the token kind,
386 // looking up the identifier in the identifier table.
387 PP.LookUpIdentifierInfo(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000388
Chris Lattnera745e8c2008-04-16 20:51:51 +0000389 // If this is a pp-identifier, for a keyword, highlight it as such.
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000390 if (Tok.isNot(tok::identifier))
Chris Lattner5ef3e2c2008-04-16 22:45:51 +0000391 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
392 "<span class='keyword'>", "</span>");
Chris Lattnerc4586c22008-04-16 06:35:07 +0000393 break;
Chris Lattnera745e8c2008-04-16 20:51:51 +0000394 }
Chris Lattner3245a0a2008-04-16 06:11:58 +0000395 case tok::comment:
Chris Lattner5ef3e2c2008-04-16 22:45:51 +0000396 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
397 "<span class='comment'>", "</span>");
Chris Lattner3245a0a2008-04-16 06:11:58 +0000398 break;
Douglas Gregor5cee1192011-07-27 05:40:30 +0000399 case tok::utf8_string_literal:
400 // Chop off the u part of u8 prefix
401 ++TokOffs;
402 --TokLen;
403 // FALL THROUGH to chop the 8
Ted Kremenekcc1b8532008-08-31 16:37:56 +0000404 case tok::wide_string_literal:
Douglas Gregor5cee1192011-07-27 05:40:30 +0000405 case tok::utf16_string_literal:
406 case tok::utf32_string_literal:
407 // Chop off the L, u, U or 8 prefix
Ted Kremenekcc1b8532008-08-31 16:37:56 +0000408 ++TokOffs;
409 --TokLen;
410 // FALL THROUGH.
411 case tok::string_literal:
Richard Smith99831e42012-03-06 03:21:47 +0000412 // FIXME: Exclude the optional ud-suffix from the highlighted range.
Ted Kremenekcc1b8532008-08-31 16:37:56 +0000413 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
414 "<span class='string_literal'>", "</span>");
415 break;
Chris Lattner5deb96d2008-04-16 23:21:17 +0000416 case tok::hash: {
Chris Lattner74ea3e52008-04-16 06:53:09 +0000417 // If this is a preprocessor directive, all tokens to end of line are too.
Chris Lattner5deb96d2008-04-16 23:21:17 +0000418 if (!Tok.isAtStartOfLine())
419 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000420
Chris Lattner5deb96d2008-04-16 23:21:17 +0000421 // Eat all of the tokens until we get to the next one at the start of
422 // line.
423 unsigned TokEnd = TokOffs+TokLen;
Chris Lattner590f0cc2008-10-12 01:15:46 +0000424 L.LexFromRawLexer(Tok);
Chris Lattner5deb96d2008-04-16 23:21:17 +0000425 while (!Tok.isAtStartOfLine() && Tok.isNot(tok::eof)) {
Chris Lattner05db4272009-02-13 19:33:24 +0000426 TokEnd = SM.getFileOffset(Tok.getLocation())+Tok.getLength();
Chris Lattner590f0cc2008-10-12 01:15:46 +0000427 L.LexFromRawLexer(Tok);
Chris Lattner74ea3e52008-04-16 06:53:09 +0000428 }
Mike Stump1eb44332009-09-09 15:08:12 +0000429
Chris Lattner5deb96d2008-04-16 23:21:17 +0000430 // Find end of line. This is a hack.
431 HighlightRange(RB, TokOffs, TokEnd, BufferStart,
432 "<span class='directive'>", "</span>");
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Chris Lattner5deb96d2008-04-16 23:21:17 +0000434 // Don't skip the next token.
435 continue;
436 }
Chris Lattner3245a0a2008-04-16 06:11:58 +0000437 }
Mike Stump1eb44332009-09-09 15:08:12 +0000438
Chris Lattner590f0cc2008-10-12 01:15:46 +0000439 L.LexFromRawLexer(Tok);
Chris Lattner74ea3e52008-04-16 06:53:09 +0000440 }
Chris Lattner3245a0a2008-04-16 06:11:58 +0000441}
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000442
443/// HighlightMacros - This uses the macro table state from the end of the
Chris Lattner05db4272009-02-13 19:33:24 +0000444/// file, to re-expand macros and insert (into the HTML) information about the
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000445/// macro expansions. This won't be perfectly perfect, but it will be
446/// reasonably close.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000447void html::HighlightMacros(Rewriter &R, FileID FID, const Preprocessor& PP) {
Chris Lattner05db4272009-02-13 19:33:24 +0000448 // Re-lex the raw token stream into a token buffer.
449 const SourceManager &SM = PP.getSourceManager();
450 std::vector<Token> TokenStream;
Mike Stump1eb44332009-09-09 15:08:12 +0000451
Chris Lattner6e290142009-11-30 04:18:44 +0000452 const llvm::MemoryBuffer *FromFile = SM.getBuffer(FID);
David Blaikie4e4d0842012-03-11 07:00:24 +0000453 Lexer L(FID, FromFile, SM, PP.getLangOpts());
Mike Stump1eb44332009-09-09 15:08:12 +0000454
Chris Lattner05db4272009-02-13 19:33:24 +0000455 // Lex all the tokens in raw mode, to avoid entering #includes or expanding
456 // macros.
457 while (1) {
458 Token Tok;
459 L.LexFromRawLexer(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000460
Chris Lattner05db4272009-02-13 19:33:24 +0000461 // If this is a # at the start of a line, discard it from the token stream.
462 // We don't want the re-preprocess step to see #defines, #includes or other
463 // preprocessor directives.
464 if (Tok.is(tok::hash) && Tok.isAtStartOfLine())
465 continue;
Chris Lattnerf0b26b12009-02-24 05:29:33 +0000466
467 // If this is a ## token, change its kind to unknown so that repreprocessing
468 // it will not produce an error.
469 if (Tok.is(tok::hashhash))
470 Tok.setKind(tok::unknown);
Mike Stump1eb44332009-09-09 15:08:12 +0000471
Chris Lattner05db4272009-02-13 19:33:24 +0000472 // If this raw token is an identifier, the raw lexer won't have looked up
473 // the corresponding identifier info for it. Do this now so that it will be
474 // macro expanded when we re-preprocess it.
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000475 if (Tok.is(tok::raw_identifier))
476 PP.LookUpIdentifierInfo(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000477
Chris Lattner05db4272009-02-13 19:33:24 +0000478 TokenStream.push_back(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000479
Chris Lattner05db4272009-02-13 19:33:24 +0000480 if (Tok.is(tok::eof)) break;
481 }
Mike Stump1eb44332009-09-09 15:08:12 +0000482
Chris Lattner7c175fb2009-03-13 21:44:46 +0000483 // Temporarily change the diagnostics object so that we ignore any generated
484 // diagnostics from this pass.
David Blaikied6471f72011-09-25 23:23:43 +0000485 DiagnosticsEngine TmpDiags(PP.getDiagnostics().getDiagnosticIDs(),
David Blaikief40c0ac2011-09-25 23:44:35 +0000486 new IgnoringDiagConsumer);
Mike Stump1eb44332009-09-09 15:08:12 +0000487
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000488 // FIXME: This is a huge hack; we reuse the input preprocessor because we want
489 // its state, but we aren't actually changing it (we hope). This should really
490 // construct a copy of the preprocessor.
491 Preprocessor &TmpPP = const_cast<Preprocessor&>(PP);
David Blaikied6471f72011-09-25 23:23:43 +0000492 DiagnosticsEngine *OldDiags = &TmpPP.getDiagnostics();
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000493 TmpPP.setDiagnostics(TmpDiags);
Mike Stump1eb44332009-09-09 15:08:12 +0000494
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000495 // Inform the preprocessor that we don't want comments.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000496 TmpPP.SetCommentRetentionState(false, false);
Chris Lattner05db4272009-02-13 19:33:24 +0000497
498 // Enter the tokens we just lexed. This will cause them to be macro expanded
499 // but won't enter sub-files (because we removed #'s).
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000500 TmpPP.EnterTokenStream(&TokenStream[0], TokenStream.size(), false, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000501
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000502 TokenConcatenation ConcatInfo(TmpPP);
Mike Stump1eb44332009-09-09 15:08:12 +0000503
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000504 // Lex all the tokens.
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000505 Token Tok;
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000506 TmpPP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000507 while (Tok.isNot(tok::eof)) {
508 // Ignore non-macro tokens.
509 if (!Tok.getLocation().isMacroID()) {
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000510 TmpPP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000511 continue;
512 }
Mike Stump1eb44332009-09-09 15:08:12 +0000513
Chris Lattnerb7949a92009-02-15 21:32:34 +0000514 // Okay, we have the first token of a macro expansion: highlight the
Chandler Carruth7c5c6762011-07-15 00:04:40 +0000515 // expansion by inserting a start tag before the macro expansion and
Chris Lattnerb7949a92009-02-15 21:32:34 +0000516 // end tag after it.
517 std::pair<SourceLocation, SourceLocation> LLoc =
Chandler Carruthedc3dcc2011-07-25 16:56:02 +0000518 SM.getExpansionRange(Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000519
Chris Lattnerb7949a92009-02-15 21:32:34 +0000520 // Ignore tokens whose instantiation location was not the main file.
521 if (SM.getFileID(LLoc.first) != FID) {
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000522 TmpPP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000523 continue;
524 }
Chris Lattnerb7949a92009-02-15 21:32:34 +0000525
Chris Lattnerb7949a92009-02-15 21:32:34 +0000526 assert(SM.getFileID(LLoc.second) == FID &&
527 "Start and end of expansion must be in the same ultimate file!");
Chris Lattnere9e6cb92009-02-17 00:51:07 +0000528
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000529 std::string Expansion = EscapeText(TmpPP.getSpelling(Tok));
Chris Lattner6f46be22008-04-17 00:40:45 +0000530 unsigned LineLen = Expansion.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Chris Lattner88773212010-04-14 03:57:19 +0000532 Token PrevPrevTok;
Chris Lattner867924d2009-02-13 00:51:30 +0000533 Token PrevTok = Tok;
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000534 // Okay, eat this token, getting the next one.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000535 TmpPP.Lex(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000536
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000537 // Skip all the rest of the tokens that are part of this macro
538 // instantiation. It would be really nice to pop up a window with all the
539 // spelling of the tokens or something.
540 while (!Tok.is(tok::eof) &&
Chandler Carruth40278532011-07-25 16:49:02 +0000541 SM.getExpansionLoc(Tok.getLocation()) == LLoc.first) {
Chris Lattner6f46be22008-04-17 00:40:45 +0000542 // Insert a newline if the macro expansion is getting large.
543 if (LineLen > 60) {
544 Expansion += "<br>";
545 LineLen = 0;
546 }
Mike Stump1eb44332009-09-09 15:08:12 +0000547
Chris Lattner6f46be22008-04-17 00:40:45 +0000548 LineLen -= Expansion.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000549
Chris Lattner867924d2009-02-13 00:51:30 +0000550 // If the tokens were already space separated, or if they must be to avoid
551 // them being implicitly pasted, add a space between them.
552 if (Tok.hasLeadingSpace() ||
Chris Lattner88773212010-04-14 03:57:19 +0000553 ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok))
Chris Lattner867924d2009-02-13 00:51:30 +0000554 Expansion += ' ';
Mike Stump1eb44332009-09-09 15:08:12 +0000555
Chris Lattner9227c692008-04-17 23:03:14 +0000556 // Escape any special characters in the token text.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000557 Expansion += EscapeText(TmpPP.getSpelling(Tok));
Chris Lattner6f46be22008-04-17 00:40:45 +0000558 LineLen += Expansion.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000559
Chris Lattner88773212010-04-14 03:57:19 +0000560 PrevPrevTok = PrevTok;
Chris Lattner867924d2009-02-13 00:51:30 +0000561 PrevTok = Tok;
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000562 TmpPP.Lex(Tok);
Chris Lattner6f46be22008-04-17 00:40:45 +0000563 }
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Chris Lattnere9e6cb92009-02-17 00:51:07 +0000565
566 // Insert the expansion as the end tag, so that multi-line macros all get
567 // highlighted.
568 Expansion = "<span class='expansion'>" + Expansion + "</span></span>";
569
570 HighlightRange(R, LLoc.first, LLoc.second,
571 "<span class='macro'>", Expansion.c_str());
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000572 }
Chris Lattner7c175fb2009-03-13 21:44:46 +0000573
574 // Restore diagnostics object back to its own thing.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000575 TmpPP.setDiagnostics(*OldDiags);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000576}