blob: cf1c779b3ea0c2d192aa7bcd4fe287fcb4f088c7 [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"
Ted Kremenek6a340832008-03-18 21:19:49 +000023#include "llvm/Support/MemoryBuffer.h"
Ted Kremeneka95d3752008-09-13 05:16:45 +000024#include "llvm/Support/raw_ostream.h"
Ted Kremenek6a340832008-03-18 21:19:49 +000025using namespace clang;
26
Chris Lattner9402b572008-04-16 23:06:45 +000027
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000028/// HighlightRange - Highlight a range in the source code with the specified
29/// start/end tags. B/E must be in the same file. This ensures that
30/// start/end tags are placed at the start/end of each line if the range is
31/// multiline.
32void html::HighlightRange(Rewriter &R, SourceLocation B, SourceLocation E,
33 const char *StartTag, const char *EndTag) {
34 SourceManager &SM = R.getSourceMgr();
Chris Lattnerf7cf85b2009-01-16 07:36:28 +000035 B = SM.getInstantiationLoc(B);
36 E = SM.getInstantiationLoc(E);
Chris Lattnera11d6172009-01-19 07:46:45 +000037 FileID FID = SM.getFileID(B);
38 assert(SM.getFileID(E) == FID && "B/E not in the same file!");
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000039
Chris Lattner52c29082009-01-27 06:27:13 +000040 unsigned BOffset = SM.getFileOffset(B);
41 unsigned EOffset = SM.getFileOffset(E);
Mike Stump1eb44332009-09-09 15:08:12 +000042
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000043 // Include the whole end token in the range.
Chris Lattner2c78b872009-04-14 23:22:57 +000044 EOffset += Lexer::MeasureTokenLength(E, R.getSourceMgr(), R.getLangOpts());
Mike Stump1eb44332009-09-09 15:08:12 +000045
Douglas Gregoraea67db2010-03-15 22:54:52 +000046 llvm::StringRef FileName;
47 std::string ErrorStr;
48 const char *BufferStart = SM.getBufferData(FID, FileName, ErrorStr).first;
49 if (!BufferStart) {
50 // FIXME: Add a diagnostic object somewhere?
51 fprintf(stderr, "error: cannot open file '%s': %s\n",
52 FileName.str().c_str(), ErrorStr.c_str());
53 return;
54 }
55
Chris Lattner2b2453a2009-01-17 06:22:33 +000056 HighlightRange(R.getEditBuffer(FID), BOffset, EOffset,
Douglas Gregoraea67db2010-03-15 22:54:52 +000057 BufferStart, StartTag, EndTag);
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000058}
59
60/// HighlightRange - This is the same as the above method, but takes
61/// decomposed file locations.
62void html::HighlightRange(RewriteBuffer &RB, unsigned B, unsigned E,
63 const char *BufferStart,
64 const char *StartTag, const char *EndTag) {
Chris Lattner9402b572008-04-16 23:06:45 +000065 // Insert the tag at the absolute start/end of the range.
Daniel Dunbard7407dc2009-08-19 19:10:30 +000066 RB.InsertTextAfter(B, StartTag);
67 RB.InsertTextBefore(E, EndTag);
Mike Stump1eb44332009-09-09 15:08:12 +000068
Chris Lattner9402b572008-04-16 23:06:45 +000069 // Scan the range to see if there is a \r or \n. If so, and if the line is
70 // not blank, insert tags on that line as well.
71 bool HadOpenTag = true;
Mike Stump1eb44332009-09-09 15:08:12 +000072
Chris Lattner9402b572008-04-16 23:06:45 +000073 unsigned LastNonWhiteSpace = B;
74 for (unsigned i = B; i != E; ++i) {
75 switch (BufferStart[i]) {
76 case '\r':
77 case '\n':
78 // Okay, we found a newline in the range. If we have an open tag, we need
79 // to insert a close tag at the first non-whitespace before the newline.
80 if (HadOpenTag)
Daniel Dunbard7407dc2009-08-19 19:10:30 +000081 RB.InsertTextBefore(LastNonWhiteSpace+1, EndTag);
Mike Stump1eb44332009-09-09 15:08:12 +000082
Chris Lattner9402b572008-04-16 23:06:45 +000083 // Instead of inserting an open tag immediately after the newline, we
84 // wait until we see a non-whitespace character. This prevents us from
85 // inserting tags around blank lines, and also allows the open tag to
86 // be put *after* whitespace on a non-blank line.
87 HadOpenTag = false;
88 break;
89 case '\0':
90 case ' ':
91 case '\t':
92 case '\f':
93 case '\v':
94 // Ignore whitespace.
95 break;
Mike Stump1eb44332009-09-09 15:08:12 +000096
Chris Lattner9402b572008-04-16 23:06:45 +000097 default:
98 // If there is no tag open, do it now.
99 if (!HadOpenTag) {
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000100 RB.InsertTextAfter(i, StartTag);
Chris Lattner9402b572008-04-16 23:06:45 +0000101 HadOpenTag = true;
102 }
Mike Stump1eb44332009-09-09 15:08:12 +0000103
Chris Lattner9402b572008-04-16 23:06:45 +0000104 // Remember this character.
105 LastNonWhiteSpace = i;
106 break;
107 }
108 }
Chris Lattner5ef3e2c2008-04-16 22:45:51 +0000109}
110
Chris Lattner2b2453a2009-01-17 06:22:33 +0000111void html::EscapeText(Rewriter &R, FileID FID,
Ted Kremenekfa5be362008-04-08 22:37:58 +0000112 bool EscapeSpaces, bool ReplaceTabs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000113
Chris Lattner2b2453a2009-01-17 06:22:33 +0000114 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(FID);
Ted Kremenek6a340832008-03-18 21:19:49 +0000115 const char* C = Buf->getBufferStart();
116 const char* FileEnd = Buf->getBufferEnd();
Mike Stump1eb44332009-09-09 15:08:12 +0000117
Ted Kremenek6a340832008-03-18 21:19:49 +0000118 assert (C <= FileEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000119
Chris Lattner2b2453a2009-01-17 06:22:33 +0000120 RewriteBuffer &RB = R.getEditBuffer(FID);
Chris Lattner5c176f72008-04-18 04:54:20 +0000121
122 unsigned ColNo = 0;
Ted Kremenek6a340832008-03-18 21:19:49 +0000123 for (unsigned FilePos = 0; C != FileEnd ; ++C, ++FilePos) {
Ted Kremenek6a340832008-03-18 21:19:49 +0000124 switch (*C) {
Chris Lattner5c176f72008-04-18 04:54:20 +0000125 default: ++ColNo; break;
126 case '\n':
127 case '\r':
128 ColNo = 0;
129 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000130
Chris Lattner73527142008-04-16 04:33:23 +0000131 case ' ':
132 if (EscapeSpaces)
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000133 RB.ReplaceText(FilePos, 1, "&nbsp;");
Chris Lattner5c176f72008-04-18 04:54:20 +0000134 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000135 break;
Chris Lattnerf3d8d192008-04-19 23:56:30 +0000136 case '\f':
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000137 RB.ReplaceText(FilePos, 1, "<hr>");
Chris Lattnerf3d8d192008-04-19 23:56:30 +0000138 ColNo = 0;
139 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000140
Chris Lattner5c176f72008-04-18 04:54:20 +0000141 case '\t': {
Chris Lattner73527142008-04-16 04:33:23 +0000142 if (!ReplaceTabs)
Ted Kremenek49cd6352008-04-03 07:12:29 +0000143 break;
Chris Lattner5c176f72008-04-18 04:54:20 +0000144 unsigned NumSpaces = 8-(ColNo&7);
Chris Lattner73527142008-04-16 04:33:23 +0000145 if (EscapeSpaces)
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000146 RB.ReplaceText(FilePos, 1,
147 llvm::StringRef("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
148 "&nbsp;&nbsp;&nbsp;", 6*NumSpaces));
Chris Lattner73527142008-04-16 04:33:23 +0000149 else
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000150 RB.ReplaceText(FilePos, 1, llvm::StringRef(" ", NumSpaces));
Chris Lattner5c176f72008-04-18 04:54:20 +0000151 ColNo += NumSpaces;
Chris Lattner73527142008-04-16 04:33:23 +0000152 break;
Chris Lattner5c176f72008-04-18 04:54:20 +0000153 }
Chris Lattner73527142008-04-16 04:33:23 +0000154 case '<':
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000155 RB.ReplaceText(FilePos, 1, "&lt;");
Chris Lattner5c176f72008-04-18 04:54:20 +0000156 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000157 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000158
Chris Lattner73527142008-04-16 04:33:23 +0000159 case '>':
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000160 RB.ReplaceText(FilePos, 1, "&gt;");
Chris Lattner5c176f72008-04-18 04:54:20 +0000161 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000162 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000163
Chris Lattner73527142008-04-16 04:33:23 +0000164 case '&':
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000165 RB.ReplaceText(FilePos, 1, "&amp;");
Chris Lattner5c176f72008-04-18 04:54:20 +0000166 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000167 break;
Ted Kremenek6a340832008-03-18 21:19:49 +0000168 }
169 }
170}
171
Ted Kremenekfa5be362008-04-08 22:37:58 +0000172std::string html::EscapeText(const std::string& s, bool EscapeSpaces,
173 bool ReplaceTabs) {
Mike Stump1eb44332009-09-09 15:08:12 +0000174
Ted Kremenek053ef592008-03-27 17:15:29 +0000175 unsigned len = s.size();
Ted Kremeneka95d3752008-09-13 05:16:45 +0000176 std::string Str;
177 llvm::raw_string_ostream os(Str);
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Ted Kremenek053ef592008-03-27 17:15:29 +0000179 for (unsigned i = 0 ; i < len; ++i) {
Mike Stump1eb44332009-09-09 15:08:12 +0000180
Ted Kremenek053ef592008-03-27 17:15:29 +0000181 char c = s[i];
Ted Kremenek053ef592008-03-27 17:15:29 +0000182 switch (c) {
Chris Lattner8570f0b2008-04-16 04:37:29 +0000183 default:
184 os << c; break;
Mike Stump1eb44332009-09-09 15:08:12 +0000185
Chris Lattner8570f0b2008-04-16 04:37:29 +0000186 case ' ':
187 if (EscapeSpaces) os << "&nbsp;";
188 else os << ' ';
189 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000190
Zhongxing Xuc01b46e2009-08-17 14:13:14 +0000191 case '\t':
192 if (ReplaceTabs) {
193 if (EscapeSpaces)
194 for (unsigned i = 0; i < 4; ++i)
195 os << "&nbsp;";
196 else
197 for (unsigned i = 0; i < 4; ++i)
198 os << " ";
199 }
Mike Stump1eb44332009-09-09 15:08:12 +0000200 else
Zhongxing Xuc01b46e2009-08-17 14:13:14 +0000201 os << c;
Mike Stump1eb44332009-09-09 15:08:12 +0000202
Zhongxing Xuc01b46e2009-08-17 14:13:14 +0000203 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000204
Zhongxing Xuc01b46e2009-08-17 14:13:14 +0000205 case '<': os << "&lt;"; break;
206 case '>': os << "&gt;"; break;
207 case '&': os << "&amp;"; break;
Ted Kremenek053ef592008-03-27 17:15:29 +0000208 }
209 }
Mike Stump1eb44332009-09-09 15:08:12 +0000210
Ted Kremenek053ef592008-03-27 17:15:29 +0000211 return os.str();
212}
213
Chris Lattner8570f0b2008-04-16 04:37:29 +0000214static void AddLineNumber(RewriteBuffer &RB, unsigned LineNo,
215 unsigned B, unsigned E) {
Daniel Dunbar7e37c812009-08-19 18:30:37 +0000216 llvm::SmallString<256> Str;
217 llvm::raw_svector_ostream OS(Str);
218
219 OS << "<tr><td class=\"num\" id=\"LN"
220 << LineNo << "\">"
221 << LineNo << "</td><td class=\"line\">";
Mike Stump1eb44332009-09-09 15:08:12 +0000222
Ted Kremenek49cd6352008-04-03 07:12:29 +0000223 if (B == E) { // Handle empty lines.
Daniel Dunbar7e37c812009-08-19 18:30:37 +0000224 OS << " </td></tr>";
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000225 RB.InsertTextBefore(B, OS.str());
Chris Lattner57df3b92008-04-16 04:11:35 +0000226 } else {
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000227 RB.InsertTextBefore(B, OS.str());
228 RB.InsertTextBefore(E, "</td></tr>");
Ted Kremenek49cd6352008-04-03 07:12:29 +0000229 }
Ted Kremenekb485cd12008-03-18 23:08:51 +0000230}
231
Chris Lattner2b2453a2009-01-17 06:22:33 +0000232void html::AddLineNumbers(Rewriter& R, FileID FID) {
Ted Kremenekb485cd12008-03-18 23:08:51 +0000233
Chris Lattner2b2453a2009-01-17 06:22:33 +0000234 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(FID);
Ted Kremenekb485cd12008-03-18 23:08:51 +0000235 const char* FileBeg = Buf->getBufferStart();
236 const char* FileEnd = Buf->getBufferEnd();
237 const char* C = FileBeg;
Chris Lattner2b2453a2009-01-17 06:22:33 +0000238 RewriteBuffer &RB = R.getEditBuffer(FID);
Mike Stump1eb44332009-09-09 15:08:12 +0000239
Ted Kremenekb485cd12008-03-18 23:08:51 +0000240 assert (C <= FileEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000241
Ted Kremenekb485cd12008-03-18 23:08:51 +0000242 unsigned LineNo = 0;
243 unsigned FilePos = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000244
245 while (C != FileEnd) {
246
Ted Kremenekb485cd12008-03-18 23:08:51 +0000247 ++LineNo;
248 unsigned LineStartPos = FilePos;
249 unsigned LineEndPos = FileEnd - FileBeg;
Mike Stump1eb44332009-09-09 15:08:12 +0000250
Ted Kremenekb485cd12008-03-18 23:08:51 +0000251 assert (FilePos <= LineEndPos);
252 assert (C < FileEnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000253
Ted Kremenekb485cd12008-03-18 23:08:51 +0000254 // Scan until the newline (or end-of-file).
Mike Stump1eb44332009-09-09 15:08:12 +0000255
Ted Kremenek49cd6352008-04-03 07:12:29 +0000256 while (C != FileEnd) {
257 char c = *C;
258 ++C;
Mike Stump1eb44332009-09-09 15:08:12 +0000259
Ted Kremenek49cd6352008-04-03 07:12:29 +0000260 if (c == '\n') {
261 LineEndPos = FilePos++;
Ted Kremenekb485cd12008-03-18 23:08:51 +0000262 break;
263 }
Mike Stump1eb44332009-09-09 15:08:12 +0000264
Ted Kremenek49cd6352008-04-03 07:12:29 +0000265 ++FilePos;
266 }
Mike Stump1eb44332009-09-09 15:08:12 +0000267
Chris Lattner8570f0b2008-04-16 04:37:29 +0000268 AddLineNumber(RB, LineNo, LineStartPos, LineEndPos);
Ted Kremenekd6c13602008-03-19 05:07:26 +0000269 }
Mike Stump1eb44332009-09-09 15:08:12 +0000270
Chris Lattner8570f0b2008-04-16 04:37:29 +0000271 // Add one big table tag that surrounds all of the code.
Daniel Dunbard7407dc2009-08-19 19:10:30 +0000272 RB.InsertTextBefore(0, "<table class=\"code\">\n");
273 RB.InsertTextAfter(FileEnd - FileBeg, "</table>");
Ted Kremenekb485cd12008-03-18 23:08:51 +0000274}
Ted Kremenekad0a2032008-03-19 06:14:37 +0000275
Mike Stump1eb44332009-09-09 15:08:12 +0000276void html::AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID,
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000277 const char *title) {
Ted Kremenekad0a2032008-03-19 06:14:37 +0000278
Chris Lattner2b2453a2009-01-17 06:22:33 +0000279 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(FID);
Ted Kremenekad0a2032008-03-19 06:14:37 +0000280 const char* FileStart = Buf->getBufferStart();
281 const char* FileEnd = Buf->getBufferEnd();
282
Chris Lattner2b2453a2009-01-17 06:22:33 +0000283 SourceLocation StartLoc = R.getSourceMgr().getLocForStartOfFile(FID);
284 SourceLocation EndLoc = StartLoc.getFileLocWithOffset(FileEnd-FileStart);
Ted Kremenekad0a2032008-03-19 06:14:37 +0000285
Ted Kremeneka95d3752008-09-13 05:16:45 +0000286 std::string s;
287 llvm::raw_string_ostream os(s);
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000288 os << "<!doctype html>\n" // Use HTML 5 doctype
289 "<html>\n<head>\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000290
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000291 if (title)
292 os << "<title>" << html::EscapeText(title) << "</title>\n";
Mike Stump1eb44332009-09-09 15:08:12 +0000293
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000294 os << "<style type=\"text/css\">\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000295 " body { color:#000000; background-color:#ffffff }\n"
296 " body { font-family:Helvetica, sans-serif; font-size:10pt }\n"
Ted Kremenek4b0f8132008-04-15 21:25:08 +0000297 " h1 { font-size:14pt }\n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000298 " .code { border-collapse:collapse; width:100%; }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000299 " .code { font-family: \"Andale Mono\", monospace; font-size:10pt }\n"
300 " .code { line-height: 1.2em }\n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000301 " .comment { color: green; font-style: oblique }\n"
302 " .keyword { color: blue }\n"
Ted Kremenekcc1b8532008-08-31 16:37:56 +0000303 " .string_literal { color: red }\n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000304 " .directive { color: darkmagenta }\n"
Chris Lattner6f46be22008-04-17 00:40:45 +0000305 // Macro expansions.
Ted Kremenek07339a62008-04-17 19:57:27 +0000306 " .expansion { display: none; }\n"
307 " .macro:hover .expansion { display: block; border: 2px solid #FF0000; "
Chris Lattnerdc5be472008-04-17 21:32:46 +0000308 "padding: 2px; background-color:#FFF0F0; font-weight: normal; "
Chris Lattner6f46be22008-04-17 00:40:45 +0000309 " -webkit-border-radius:5px; -webkit-box-shadow:1px 1px 7px #000; "
Chris Lattner8aa06ac2008-04-17 21:28:41 +0000310 "position: absolute; top: -1em; left:10em; z-index: 1 } \n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000311 " .macro { color: darkmagenta; background-color:LemonChiffon;"
Chris Lattner6f46be22008-04-17 00:40:45 +0000312 // Macros are position: relative to provide base for expansions.
313 " position: relative }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000314 " .num { width:2.5em; padding-right:2ex; background-color:#eeeeee }\n"
Ted Kremenek22236222009-03-10 05:14:32 +0000315 " .num { text-align:right; font-size:8pt }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000316 " .num { color:#444444 }\n"
317 " .line { padding-left: 1ex; border-left: 3px solid #ccc }\n"
318 " .line { white-space: pre }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000319 " .msg { -webkit-box-shadow:1px 1px 7px #000 }\n"
320 " .msg { -webkit-border-radius:5px }\n"
Ted Kremenek22236222009-03-10 05:14:32 +0000321 " .msg { font-family:Helvetica, sans-serif; font-size:8pt }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000322 " .msg { float:left }\n"
Ted Kremenek3c598232009-03-03 03:00:21 +0000323 " .msg { padding:0.25em 1ex 0.25em 1ex }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000324 " .msg { margin-top:10px; margin-bottom:10px }\n"
Ted Kremenek2f103982009-03-02 21:42:01 +0000325 " .msg { font-weight:bold }\n"
Ted Kremenek80bae762009-03-02 23:05:40 +0000326 " .msg { max-width:60em; word-wrap: break-word; white-space: pre-wrap }\n"
327 " .msgT { padding:0x; spacing:0x }\n"
Ted Kremenek2f103982009-03-02 21:42:01 +0000328 " .msgEvent { background-color:#fff8b4; color:#000000 }\n"
Ted Kremenek80bae762009-03-02 23:05:40 +0000329 " .msgControl { background-color:#bbbbbb; color:#000000 }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000330 " .mrange { background-color:#dfddf3 }\n"
331 " .mrange { border-bottom:1px solid #6F9DBE }\n"
Ted Kremenek3c598232009-03-03 03:00:21 +0000332 " .PathIndex { font-weight: bold; padding:0px 5px 0px 5px; "
333 "margin-right:5px; }\n"
Ted Kremenek00f01e42009-03-02 23:39:27 +0000334 " .PathIndex { -webkit-border-radius:8px }\n"
335 " .PathIndexEvent { background-color:#bfba87 }\n"
336 " .PathIndexControl { background-color:#8c8c8c }\n"
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000337 " .CodeInsertionHint { font-weight: bold; background-color: #10dd10 }\n"
338 " .CodeRemovalHint { background-color:#de1010 }\n"
339 " .CodeRemovalHint { border-bottom:1px solid #6F9DBE }\n"
Ted Kremenek4b0f8132008-04-15 21:25:08 +0000340 " table.simpletable {\n"
341 " padding: 5px;\n"
342 " font-size:12pt;\n"
343 " margin:20px;\n"
344 " border-collapse: collapse; border-spacing: 0px;\n"
345 " }\n"
346 " td.rowname {\n"
347 " text-align:right; font-weight:bold; color:#444444;\n"
348 " padding-right:2ex; }\n"
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000349 "</style>\n</head>\n<body>";
Ted Kremenek70bcba62008-04-09 15:40:40 +0000350
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000351 // Generate header
Daniel Dunbar44ba7bf2009-08-19 20:32:38 +0000352 R.InsertTextBefore(StartLoc, os.str());
Ted Kremenekad0a2032008-03-19 06:14:37 +0000353 // Generate footer
Mike Stump1eb44332009-09-09 15:08:12 +0000354
Daniel Dunbar44ba7bf2009-08-19 20:32:38 +0000355 R.InsertTextAfter(EndLoc, "</body></html>\n");
Ted Kremenekad0a2032008-03-19 06:14:37 +0000356}
Chris Lattner3245a0a2008-04-16 06:11:58 +0000357
358/// SyntaxHighlight - Relex the specified FileID and annotate the HTML with
359/// information about keywords, macro expansions etc. This uses the macro
360/// table state from the end of the file, so it won't be perfectly perfect,
361/// but it will be reasonably close.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000362void html::SyntaxHighlight(Rewriter &R, FileID FID, const Preprocessor &PP) {
Chris Lattner2b2453a2009-01-17 06:22:33 +0000363 RewriteBuffer &RB = R.getEditBuffer(FID);
Chris Lattner3245a0a2008-04-16 06:11:58 +0000364
Chris Lattner05db4272009-02-13 19:33:24 +0000365 const SourceManager &SM = PP.getSourceManager();
Chris Lattner6e290142009-11-30 04:18:44 +0000366 const llvm::MemoryBuffer *FromFile = SM.getBuffer(FID);
367 Lexer L(FID, FromFile, SM, PP.getLangOptions());
Chris Lattner025c3a62009-01-17 07:35:14 +0000368 const char *BufferStart = L.getBufferStart();
Mike Stump1eb44332009-09-09 15:08:12 +0000369
370 // Inform the preprocessor that we want to retain comments as tokens, so we
Chris Lattner3245a0a2008-04-16 06:11:58 +0000371 // can highlight them.
Chris Lattner678c6352008-04-16 20:54:51 +0000372 L.SetCommentRetentionState(true);
Mike Stump1eb44332009-09-09 15:08:12 +0000373
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000374 // Lex all the tokens in raw mode, to avoid entering #includes or expanding
375 // macros.
Chris Lattner3245a0a2008-04-16 06:11:58 +0000376 Token Tok;
Chris Lattner590f0cc2008-10-12 01:15:46 +0000377 L.LexFromRawLexer(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000378
Chris Lattner74ea3e52008-04-16 06:53:09 +0000379 while (Tok.isNot(tok::eof)) {
380 // Since we are lexing unexpanded tokens, all tokens are from the main
381 // FileID.
Chris Lattner05db4272009-02-13 19:33:24 +0000382 unsigned TokOffs = SM.getFileOffset(Tok.getLocation());
Chris Lattner3245a0a2008-04-16 06:11:58 +0000383 unsigned TokLen = Tok.getLength();
384 switch (Tok.getKind()) {
Chris Lattnera745e8c2008-04-16 20:51:51 +0000385 default: break;
386 case tok::identifier: {
387 // Fill in Result.IdentifierInfo, looking up the identifier in the
388 // identifier table.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000389 const IdentifierInfo *II =
390 PP.LookUpIdentifierInfo(Tok, BufferStart+TokOffs);
Mike Stump1eb44332009-09-09 15:08:12 +0000391
Chris Lattnera745e8c2008-04-16 20:51:51 +0000392 // If this is a pp-identifier, for a keyword, highlight it as such.
Chris Lattner5ef3e2c2008-04-16 22:45:51 +0000393 if (II->getTokenID() != tok::identifier)
394 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
395 "<span class='keyword'>", "</span>");
Chris Lattnerc4586c22008-04-16 06:35:07 +0000396 break;
Chris Lattnera745e8c2008-04-16 20:51:51 +0000397 }
Chris Lattner3245a0a2008-04-16 06:11:58 +0000398 case tok::comment:
Chris Lattner5ef3e2c2008-04-16 22:45:51 +0000399 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
400 "<span class='comment'>", "</span>");
Chris Lattner3245a0a2008-04-16 06:11:58 +0000401 break;
Ted Kremenekcc1b8532008-08-31 16:37:56 +0000402 case tok::wide_string_literal:
403 // Chop off the L prefix
404 ++TokOffs;
405 --TokLen;
406 // FALL THROUGH.
407 case tok::string_literal:
408 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
409 "<span class='string_literal'>", "</span>");
410 break;
Chris Lattner5deb96d2008-04-16 23:21:17 +0000411 case tok::hash: {
Chris Lattner74ea3e52008-04-16 06:53:09 +0000412 // If this is a preprocessor directive, all tokens to end of line are too.
Chris Lattner5deb96d2008-04-16 23:21:17 +0000413 if (!Tok.isAtStartOfLine())
414 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000415
Chris Lattner5deb96d2008-04-16 23:21:17 +0000416 // Eat all of the tokens until we get to the next one at the start of
417 // line.
418 unsigned TokEnd = TokOffs+TokLen;
Chris Lattner590f0cc2008-10-12 01:15:46 +0000419 L.LexFromRawLexer(Tok);
Chris Lattner5deb96d2008-04-16 23:21:17 +0000420 while (!Tok.isAtStartOfLine() && Tok.isNot(tok::eof)) {
Chris Lattner05db4272009-02-13 19:33:24 +0000421 TokEnd = SM.getFileOffset(Tok.getLocation())+Tok.getLength();
Chris Lattner590f0cc2008-10-12 01:15:46 +0000422 L.LexFromRawLexer(Tok);
Chris Lattner74ea3e52008-04-16 06:53:09 +0000423 }
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Chris Lattner5deb96d2008-04-16 23:21:17 +0000425 // Find end of line. This is a hack.
426 HighlightRange(RB, TokOffs, TokEnd, BufferStart,
427 "<span class='directive'>", "</span>");
Mike Stump1eb44332009-09-09 15:08:12 +0000428
Chris Lattner5deb96d2008-04-16 23:21:17 +0000429 // Don't skip the next token.
430 continue;
431 }
Chris Lattner3245a0a2008-04-16 06:11:58 +0000432 }
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Chris Lattner590f0cc2008-10-12 01:15:46 +0000434 L.LexFromRawLexer(Tok);
Chris Lattner74ea3e52008-04-16 06:53:09 +0000435 }
Chris Lattner3245a0a2008-04-16 06:11:58 +0000436}
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000437
Chris Lattner7c175fb2009-03-13 21:44:46 +0000438namespace {
439/// IgnoringDiagClient - This is a diagnostic client that just ignores all
440/// diags.
441class IgnoringDiagClient : public DiagnosticClient {
442 void HandleDiagnostic(Diagnostic::Level DiagLevel,
443 const DiagnosticInfo &Info) {
444 // Just ignore it.
445 }
446};
447}
448
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000449/// HighlightMacros - This uses the macro table state from the end of the
Chris Lattner05db4272009-02-13 19:33:24 +0000450/// file, to re-expand macros and insert (into the HTML) information about the
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000451/// macro expansions. This won't be perfectly perfect, but it will be
452/// reasonably close.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000453void html::HighlightMacros(Rewriter &R, FileID FID, const Preprocessor& PP) {
Chris Lattner05db4272009-02-13 19:33:24 +0000454 // Re-lex the raw token stream into a token buffer.
455 const SourceManager &SM = PP.getSourceManager();
456 std::vector<Token> TokenStream;
Mike Stump1eb44332009-09-09 15:08:12 +0000457
Chris Lattner6e290142009-11-30 04:18:44 +0000458 const llvm::MemoryBuffer *FromFile = SM.getBuffer(FID);
459 Lexer L(FID, FromFile, SM, PP.getLangOptions());
Mike Stump1eb44332009-09-09 15:08:12 +0000460
Chris Lattner05db4272009-02-13 19:33:24 +0000461 // Lex all the tokens in raw mode, to avoid entering #includes or expanding
462 // macros.
463 while (1) {
464 Token Tok;
465 L.LexFromRawLexer(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000466
Chris Lattner05db4272009-02-13 19:33:24 +0000467 // If this is a # at the start of a line, discard it from the token stream.
468 // We don't want the re-preprocess step to see #defines, #includes or other
469 // preprocessor directives.
470 if (Tok.is(tok::hash) && Tok.isAtStartOfLine())
471 continue;
Chris Lattnerf0b26b12009-02-24 05:29:33 +0000472
473 // If this is a ## token, change its kind to unknown so that repreprocessing
474 // it will not produce an error.
475 if (Tok.is(tok::hashhash))
476 Tok.setKind(tok::unknown);
Mike Stump1eb44332009-09-09 15:08:12 +0000477
Chris Lattner05db4272009-02-13 19:33:24 +0000478 // If this raw token is an identifier, the raw lexer won't have looked up
479 // the corresponding identifier info for it. Do this now so that it will be
480 // macro expanded when we re-preprocess it.
481 if (Tok.is(tok::identifier)) {
482 // Change the kind of this identifier to the appropriate token kind, e.g.
483 // turning "for" into a keyword.
484 Tok.setKind(PP.LookUpIdentifierInfo(Tok)->getTokenID());
Mike Stump1eb44332009-09-09 15:08:12 +0000485 }
486
Chris Lattner05db4272009-02-13 19:33:24 +0000487 TokenStream.push_back(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000488
Chris Lattner05db4272009-02-13 19:33:24 +0000489 if (Tok.is(tok::eof)) break;
490 }
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Chris Lattner7c175fb2009-03-13 21:44:46 +0000492 // Temporarily change the diagnostics object so that we ignore any generated
493 // diagnostics from this pass.
494 IgnoringDiagClient TmpDC;
495 Diagnostic TmpDiags(&TmpDC);
Mike Stump1eb44332009-09-09 15:08:12 +0000496
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000497 // FIXME: This is a huge hack; we reuse the input preprocessor because we want
498 // its state, but we aren't actually changing it (we hope). This should really
499 // construct a copy of the preprocessor.
500 Preprocessor &TmpPP = const_cast<Preprocessor&>(PP);
501 Diagnostic *OldDiags = &TmpPP.getDiagnostics();
502 TmpPP.setDiagnostics(TmpDiags);
Mike Stump1eb44332009-09-09 15:08:12 +0000503
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000504 // Inform the preprocessor that we don't want comments.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000505 TmpPP.SetCommentRetentionState(false, false);
Chris Lattner05db4272009-02-13 19:33:24 +0000506
507 // Enter the tokens we just lexed. This will cause them to be macro expanded
508 // but won't enter sub-files (because we removed #'s).
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000509 TmpPP.EnterTokenStream(&TokenStream[0], TokenStream.size(), false, false);
Mike Stump1eb44332009-09-09 15:08:12 +0000510
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000511 TokenConcatenation ConcatInfo(TmpPP);
Mike Stump1eb44332009-09-09 15:08:12 +0000512
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000513 // Lex all the tokens.
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000514 Token Tok;
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000515 TmpPP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000516 while (Tok.isNot(tok::eof)) {
517 // Ignore non-macro tokens.
518 if (!Tok.getLocation().isMacroID()) {
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000519 TmpPP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000520 continue;
521 }
Mike Stump1eb44332009-09-09 15:08:12 +0000522
Chris Lattnerb7949a92009-02-15 21:32:34 +0000523 // Okay, we have the first token of a macro expansion: highlight the
524 // instantiation by inserting a start tag before the macro instantiation and
525 // end tag after it.
526 std::pair<SourceLocation, SourceLocation> LLoc =
527 SM.getInstantiationRange(Tok.getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +0000528
Chris Lattnerb7949a92009-02-15 21:32:34 +0000529 // Ignore tokens whose instantiation location was not the main file.
530 if (SM.getFileID(LLoc.first) != FID) {
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000531 TmpPP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000532 continue;
533 }
Chris Lattnerb7949a92009-02-15 21:32:34 +0000534
Chris Lattnerb7949a92009-02-15 21:32:34 +0000535 assert(SM.getFileID(LLoc.second) == FID &&
536 "Start and end of expansion must be in the same ultimate file!");
Chris Lattnere9e6cb92009-02-17 00:51:07 +0000537
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000538 std::string Expansion = EscapeText(TmpPP.getSpelling(Tok));
Chris Lattner6f46be22008-04-17 00:40:45 +0000539 unsigned LineLen = Expansion.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000540
Chris Lattner867924d2009-02-13 00:51:30 +0000541 Token PrevTok = Tok;
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000542 // Okay, eat this token, getting the next one.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000543 TmpPP.Lex(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000545 // Skip all the rest of the tokens that are part of this macro
546 // instantiation. It would be really nice to pop up a window with all the
547 // spelling of the tokens or something.
548 while (!Tok.is(tok::eof) &&
Chris Lattnerb7949a92009-02-15 21:32:34 +0000549 SM.getInstantiationLoc(Tok.getLocation()) == LLoc.first) {
Chris Lattner6f46be22008-04-17 00:40:45 +0000550 // Insert a newline if the macro expansion is getting large.
551 if (LineLen > 60) {
552 Expansion += "<br>";
553 LineLen = 0;
554 }
Mike Stump1eb44332009-09-09 15:08:12 +0000555
Chris Lattner6f46be22008-04-17 00:40:45 +0000556 LineLen -= Expansion.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000557
Chris Lattner867924d2009-02-13 00:51:30 +0000558 // If the tokens were already space separated, or if they must be to avoid
559 // them being implicitly pasted, add a space between them.
560 if (Tok.hasLeadingSpace() ||
561 ConcatInfo.AvoidConcat(PrevTok, Tok))
562 Expansion += ' ';
Mike Stump1eb44332009-09-09 15:08:12 +0000563
Chris Lattner9227c692008-04-17 23:03:14 +0000564 // Escape any special characters in the token text.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000565 Expansion += EscapeText(TmpPP.getSpelling(Tok));
Chris Lattner6f46be22008-04-17 00:40:45 +0000566 LineLen += Expansion.size();
Mike Stump1eb44332009-09-09 15:08:12 +0000567
Chris Lattner867924d2009-02-13 00:51:30 +0000568 PrevTok = Tok;
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000569 TmpPP.Lex(Tok);
Chris Lattner6f46be22008-04-17 00:40:45 +0000570 }
Mike Stump1eb44332009-09-09 15:08:12 +0000571
Chris Lattnere9e6cb92009-02-17 00:51:07 +0000572
573 // Insert the expansion as the end tag, so that multi-line macros all get
574 // highlighted.
575 Expansion = "<span class='expansion'>" + Expansion + "</span></span>";
576
577 HighlightRange(R, LLoc.first, LLoc.second,
578 "<span class='macro'>", Expansion.c_str());
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000579 }
Chris Lattner7c175fb2009-03-13 21:44:46 +0000580
581 // Restore diagnostics object back to its own thing.
Daniel Dunbarff6912b2009-11-05 01:54:02 +0000582 TmpPP.setDiagnostics(*OldDiags);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000583}