blob: 6e5d1c32b11c04ac3ce317e462359b81f79bbfe0 [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 Lattner3245a0a2008-04-16 06:11:58 +000018#include "clang/Lex/Preprocessor.h"
Ted Kremenek6a340832008-03-18 21:19:49 +000019#include "clang/Basic/SourceManager.h"
Chris Lattner57df3b92008-04-16 04:11:35 +000020#include "llvm/ADT/SmallString.h"
Ted Kremenek339b9c22008-04-17 22:31:54 +000021#include "llvm/ADT/OwningPtr.h"
Ted Kremenek6a340832008-03-18 21:19:49 +000022#include "llvm/Support/MemoryBuffer.h"
Ted Kremeneka95d3752008-09-13 05:16:45 +000023#include "llvm/Support/raw_ostream.h"
Ted Kremenek6a340832008-03-18 21:19:49 +000024using namespace clang;
25
Chris Lattner9402b572008-04-16 23:06:45 +000026
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000027/// HighlightRange - Highlight a range in the source code with the specified
28/// start/end tags. B/E must be in the same file. This ensures that
29/// start/end tags are placed at the start/end of each line if the range is
30/// multiline.
31void html::HighlightRange(Rewriter &R, SourceLocation B, SourceLocation E,
32 const char *StartTag, const char *EndTag) {
33 SourceManager &SM = R.getSourceMgr();
Chris Lattnerf7cf85b2009-01-16 07:36:28 +000034 B = SM.getInstantiationLoc(B);
35 E = SM.getInstantiationLoc(E);
Chris Lattnera11d6172009-01-19 07:46:45 +000036 FileID FID = SM.getFileID(B);
37 assert(SM.getFileID(E) == FID && "B/E not in the same file!");
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000038
Chris Lattner52c29082009-01-27 06:27:13 +000039 unsigned BOffset = SM.getFileOffset(B);
40 unsigned EOffset = SM.getFileOffset(E);
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000041
42 // Include the whole end token in the range.
43 EOffset += Lexer::MeasureTokenLength(E, R.getSourceMgr());
44
Chris Lattner2b2453a2009-01-17 06:22:33 +000045 HighlightRange(R.getEditBuffer(FID), BOffset, EOffset,
46 SM.getBufferData(FID).first, StartTag, EndTag);
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000047}
48
49/// HighlightRange - This is the same as the above method, but takes
50/// decomposed file locations.
51void html::HighlightRange(RewriteBuffer &RB, unsigned B, unsigned E,
52 const char *BufferStart,
53 const char *StartTag, const char *EndTag) {
Chris Lattner9402b572008-04-16 23:06:45 +000054 // Insert the tag at the absolute start/end of the range.
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000055 RB.InsertTextAfter(B, StartTag, strlen(StartTag));
56 RB.InsertTextBefore(E, EndTag, strlen(EndTag));
57
Chris Lattner9402b572008-04-16 23:06:45 +000058 // Scan the range to see if there is a \r or \n. If so, and if the line is
59 // not blank, insert tags on that line as well.
60 bool HadOpenTag = true;
61
62 unsigned LastNonWhiteSpace = B;
63 for (unsigned i = B; i != E; ++i) {
64 switch (BufferStart[i]) {
65 case '\r':
66 case '\n':
67 // Okay, we found a newline in the range. If we have an open tag, we need
68 // to insert a close tag at the first non-whitespace before the newline.
69 if (HadOpenTag)
70 RB.InsertTextBefore(LastNonWhiteSpace+1, EndTag, strlen(EndTag));
71
72 // Instead of inserting an open tag immediately after the newline, we
73 // wait until we see a non-whitespace character. This prevents us from
74 // inserting tags around blank lines, and also allows the open tag to
75 // be put *after* whitespace on a non-blank line.
76 HadOpenTag = false;
77 break;
78 case '\0':
79 case ' ':
80 case '\t':
81 case '\f':
82 case '\v':
83 // Ignore whitespace.
84 break;
85
86 default:
87 // If there is no tag open, do it now.
88 if (!HadOpenTag) {
89 RB.InsertTextAfter(i, StartTag, strlen(StartTag));
90 HadOpenTag = true;
91 }
92
93 // Remember this character.
94 LastNonWhiteSpace = i;
95 break;
96 }
97 }
Chris Lattner5ef3e2c2008-04-16 22:45:51 +000098}
99
Chris Lattner2b2453a2009-01-17 06:22:33 +0000100void html::EscapeText(Rewriter &R, FileID FID,
Ted Kremenekfa5be362008-04-08 22:37:58 +0000101 bool EscapeSpaces, bool ReplaceTabs) {
Ted Kremenek6a340832008-03-18 21:19:49 +0000102
Chris Lattner2b2453a2009-01-17 06:22:33 +0000103 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(FID);
Ted Kremenek6a340832008-03-18 21:19:49 +0000104 const char* C = Buf->getBufferStart();
105 const char* FileEnd = Buf->getBufferEnd();
106
107 assert (C <= FileEnd);
108
Chris Lattner2b2453a2009-01-17 06:22:33 +0000109 RewriteBuffer &RB = R.getEditBuffer(FID);
Chris Lattner5c176f72008-04-18 04:54:20 +0000110
111 unsigned ColNo = 0;
Ted Kremenek6a340832008-03-18 21:19:49 +0000112 for (unsigned FilePos = 0; C != FileEnd ; ++C, ++FilePos) {
Ted Kremenek6a340832008-03-18 21:19:49 +0000113 switch (*C) {
Chris Lattner5c176f72008-04-18 04:54:20 +0000114 default: ++ColNo; break;
115 case '\n':
116 case '\r':
117 ColNo = 0;
118 break;
Chris Lattner73527142008-04-16 04:33:23 +0000119
120 case ' ':
121 if (EscapeSpaces)
122 RB.ReplaceText(FilePos, 1, "&nbsp;", 6);
Chris Lattner5c176f72008-04-18 04:54:20 +0000123 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000124 break;
Chris Lattnerf3d8d192008-04-19 23:56:30 +0000125 case '\f':
126 RB.ReplaceText(FilePos, 1, "<hr>", 4);
127 ColNo = 0;
128 break;
129
Chris Lattner5c176f72008-04-18 04:54:20 +0000130 case '\t': {
Chris Lattner73527142008-04-16 04:33:23 +0000131 if (!ReplaceTabs)
Ted Kremenek49cd6352008-04-03 07:12:29 +0000132 break;
Chris Lattner5c176f72008-04-18 04:54:20 +0000133 unsigned NumSpaces = 8-(ColNo&7);
Chris Lattner73527142008-04-16 04:33:23 +0000134 if (EscapeSpaces)
Chris Lattner8aa06ac2008-04-17 21:28:41 +0000135 RB.ReplaceText(FilePos, 1, "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
Chris Lattner5c176f72008-04-18 04:54:20 +0000136 "&nbsp;&nbsp;&nbsp;", 6*NumSpaces);
Chris Lattner73527142008-04-16 04:33:23 +0000137 else
Chris Lattner5c176f72008-04-18 04:54:20 +0000138 RB.ReplaceText(FilePos, 1, " ", NumSpaces);
139 ColNo += NumSpaces;
Chris Lattner73527142008-04-16 04:33:23 +0000140 break;
Chris Lattner5c176f72008-04-18 04:54:20 +0000141 }
Chris Lattner73527142008-04-16 04:33:23 +0000142 case '<':
143 RB.ReplaceText(FilePos, 1, "&lt;", 4);
Chris Lattner5c176f72008-04-18 04:54:20 +0000144 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000145 break;
146
147 case '>':
148 RB.ReplaceText(FilePos, 1, "&gt;", 4);
Chris Lattner5c176f72008-04-18 04:54:20 +0000149 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000150 break;
151
152 case '&':
153 RB.ReplaceText(FilePos, 1, "&amp;", 5);
Chris Lattner5c176f72008-04-18 04:54:20 +0000154 ++ColNo;
Chris Lattner73527142008-04-16 04:33:23 +0000155 break;
Ted Kremenek6a340832008-03-18 21:19:49 +0000156 }
157 }
158}
159
Ted Kremenekfa5be362008-04-08 22:37:58 +0000160std::string html::EscapeText(const std::string& s, bool EscapeSpaces,
161 bool ReplaceTabs) {
Ted Kremenek053ef592008-03-27 17:15:29 +0000162
163 unsigned len = s.size();
Ted Kremeneka95d3752008-09-13 05:16:45 +0000164 std::string Str;
165 llvm::raw_string_ostream os(Str);
Ted Kremenek053ef592008-03-27 17:15:29 +0000166
167 for (unsigned i = 0 ; i < len; ++i) {
168
169 char c = s[i];
Ted Kremenek053ef592008-03-27 17:15:29 +0000170 switch (c) {
Chris Lattner8570f0b2008-04-16 04:37:29 +0000171 default:
172 os << c; break;
173
174 case ' ':
175 if (EscapeSpaces) os << "&nbsp;";
176 else os << ' ';
177 break;
178
179 case '\t':
Nico Weber63366302008-08-16 22:24:33 +0000180 if (ReplaceTabs) {
181 if (EscapeSpaces)
182 for (unsigned i = 0; i < 4; ++i)
183 os << "&nbsp;";
184 else
185 for (unsigned i = 0; i < 4; ++i)
186 os << " ";
187 }
Chris Lattner8570f0b2008-04-16 04:37:29 +0000188 else
189 os << c;
190
Ted Kremenek053ef592008-03-27 17:15:29 +0000191 break;
Chris Lattner8570f0b2008-04-16 04:37:29 +0000192
193 case '<': os << "&lt;"; break;
194 case '>': os << "&gt;"; break;
195 case '&': os << "&amp;"; break;
Ted Kremenek053ef592008-03-27 17:15:29 +0000196 }
197 }
198
199 return os.str();
200}
201
Chris Lattner8570f0b2008-04-16 04:37:29 +0000202static void AddLineNumber(RewriteBuffer &RB, unsigned LineNo,
203 unsigned B, unsigned E) {
Chris Lattner57df3b92008-04-16 04:11:35 +0000204 llvm::SmallString<100> Str;
205 Str += "<tr><td class=\"num\" id=\"LN";
206 Str.append_uint(LineNo);
207 Str += "\">";
208 Str.append_uint(LineNo);
209 Str += "</td><td class=\"line\">";
210
Ted Kremenek49cd6352008-04-03 07:12:29 +0000211 if (B == E) { // Handle empty lines.
Chris Lattner57df3b92008-04-16 04:11:35 +0000212 Str += " </td></tr>";
Chris Lattner8570f0b2008-04-16 04:37:29 +0000213 RB.InsertTextBefore(B, &Str[0], Str.size());
Chris Lattner57df3b92008-04-16 04:11:35 +0000214 } else {
Chris Lattner8570f0b2008-04-16 04:37:29 +0000215 RB.InsertTextBefore(B, &Str[0], Str.size());
216 RB.InsertTextBefore(E, "</td></tr>", strlen("</td></tr>"));
Ted Kremenek49cd6352008-04-03 07:12:29 +0000217 }
Ted Kremenekb485cd12008-03-18 23:08:51 +0000218}
219
Chris Lattner2b2453a2009-01-17 06:22:33 +0000220void html::AddLineNumbers(Rewriter& R, FileID FID) {
Ted Kremenekb485cd12008-03-18 23:08:51 +0000221
Chris Lattner2b2453a2009-01-17 06:22:33 +0000222 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(FID);
Ted Kremenekb485cd12008-03-18 23:08:51 +0000223 const char* FileBeg = Buf->getBufferStart();
224 const char* FileEnd = Buf->getBufferEnd();
225 const char* C = FileBeg;
Chris Lattner2b2453a2009-01-17 06:22:33 +0000226 RewriteBuffer &RB = R.getEditBuffer(FID);
Ted Kremenekb485cd12008-03-18 23:08:51 +0000227
228 assert (C <= FileEnd);
229
230 unsigned LineNo = 0;
231 unsigned FilePos = 0;
232
233 while (C != FileEnd) {
234
235 ++LineNo;
236 unsigned LineStartPos = FilePos;
237 unsigned LineEndPos = FileEnd - FileBeg;
238
239 assert (FilePos <= LineEndPos);
240 assert (C < FileEnd);
241
242 // Scan until the newline (or end-of-file).
243
Ted Kremenek49cd6352008-04-03 07:12:29 +0000244 while (C != FileEnd) {
245 char c = *C;
246 ++C;
247
248 if (c == '\n') {
249 LineEndPos = FilePos++;
Ted Kremenekb485cd12008-03-18 23:08:51 +0000250 break;
251 }
Ted Kremenek49cd6352008-04-03 07:12:29 +0000252
253 ++FilePos;
254 }
Ted Kremenekb485cd12008-03-18 23:08:51 +0000255
Chris Lattner8570f0b2008-04-16 04:37:29 +0000256 AddLineNumber(RB, LineNo, LineStartPos, LineEndPos);
Ted Kremenekd6c13602008-03-19 05:07:26 +0000257 }
258
Chris Lattner8570f0b2008-04-16 04:37:29 +0000259 // Add one big table tag that surrounds all of the code.
260 RB.InsertTextBefore(0, "<table class=\"code\">\n",
261 strlen("<table class=\"code\">\n"));
Ted Kremenekd6c13602008-03-19 05:07:26 +0000262
Chris Lattner8570f0b2008-04-16 04:37:29 +0000263 RB.InsertTextAfter(FileEnd - FileBeg, "</table>", strlen("</table>"));
Ted Kremenekb485cd12008-03-18 23:08:51 +0000264}
Ted Kremenekad0a2032008-03-19 06:14:37 +0000265
Chris Lattner2b2453a2009-01-17 06:22:33 +0000266void html::AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID,
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000267 const char *title) {
Ted Kremenekad0a2032008-03-19 06:14:37 +0000268
Chris Lattner2b2453a2009-01-17 06:22:33 +0000269 const llvm::MemoryBuffer *Buf = R.getSourceMgr().getBuffer(FID);
Ted Kremenekad0a2032008-03-19 06:14:37 +0000270 const char* FileStart = Buf->getBufferStart();
271 const char* FileEnd = Buf->getBufferEnd();
272
Chris Lattner2b2453a2009-01-17 06:22:33 +0000273 SourceLocation StartLoc = R.getSourceMgr().getLocForStartOfFile(FID);
274 SourceLocation EndLoc = StartLoc.getFileLocWithOffset(FileEnd-FileStart);
Ted Kremenekad0a2032008-03-19 06:14:37 +0000275
Ted Kremeneka95d3752008-09-13 05:16:45 +0000276 std::string s;
277 llvm::raw_string_ostream os(s);
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000278 os << "<!doctype html>\n" // Use HTML 5 doctype
279 "<html>\n<head>\n";
280
281 if (title)
282 os << "<title>" << html::EscapeText(title) << "</title>\n";
283
284 os << "<style type=\"text/css\">\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000285 " body { color:#000000; background-color:#ffffff }\n"
286 " body { font-family:Helvetica, sans-serif; font-size:10pt }\n"
Ted Kremenek4b0f8132008-04-15 21:25:08 +0000287 " h1 { font-size:14pt }\n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000288 " .code { border-collapse:collapse; width:100%; }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000289 " .code { font-family: \"Andale Mono\", monospace; font-size:10pt }\n"
290 " .code { line-height: 1.2em }\n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000291 " .comment { color: green; font-style: oblique }\n"
292 " .keyword { color: blue }\n"
Ted Kremenekcc1b8532008-08-31 16:37:56 +0000293 " .string_literal { color: red }\n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000294 " .directive { color: darkmagenta }\n"
Chris Lattner6f46be22008-04-17 00:40:45 +0000295 // Macro expansions.
Ted Kremenek07339a62008-04-17 19:57:27 +0000296 " .expansion { display: none; }\n"
297 " .macro:hover .expansion { display: block; border: 2px solid #FF0000; "
Chris Lattnerdc5be472008-04-17 21:32:46 +0000298 "padding: 2px; background-color:#FFF0F0; font-weight: normal; "
Chris Lattner6f46be22008-04-17 00:40:45 +0000299 " -webkit-border-radius:5px; -webkit-box-shadow:1px 1px 7px #000; "
Chris Lattner8aa06ac2008-04-17 21:28:41 +0000300 "position: absolute; top: -1em; left:10em; z-index: 1 } \n"
Ted Kremenekf5016262008-04-18 02:12:39 +0000301 " .macro { color: darkmagenta; background-color:LemonChiffon;"
Chris Lattner6f46be22008-04-17 00:40:45 +0000302 // Macros are position: relative to provide base for expansions.
303 " position: relative }\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000304 " .num { width:2.5em; padding-right:2ex; background-color:#eeeeee }\n"
305 " .num { text-align:right; font-size: smaller }\n"
306 " .num { color:#444444 }\n"
307 " .line { padding-left: 1ex; border-left: 3px solid #ccc }\n"
308 " .line { white-space: pre }\n"
309 " .msg { background-color:#fff8b4; color:#000000 }\n"
310 " .msg { -webkit-box-shadow:1px 1px 7px #000 }\n"
311 " .msg { -webkit-border-radius:5px }\n"
312 " .msg { font-family:Helvetica, sans-serif; font-size: smaller }\n"
313 " .msg { font-weight: bold }\n"
314 " .msg { float:left }\n"
315 " .msg { padding:0.5em 1ex 0.5em 1ex }\n"
316 " .msg { margin-top:10px; margin-bottom:10px }\n"
Ted Kremenek170db7c2008-07-11 23:13:22 +0000317 " .msg { max-width:60em; word-wrap: break-word; white-space: pre-wrap;}\n"
Ted Kremenek70bcba62008-04-09 15:40:40 +0000318 " .mrange { background-color:#dfddf3 }\n"
319 " .mrange { border-bottom:1px solid #6F9DBE }\n"
320 " .PathIndex { font-weight: bold }\n"
Ted Kremenek4b0f8132008-04-15 21:25:08 +0000321 " table.simpletable {\n"
322 " padding: 5px;\n"
323 " font-size:12pt;\n"
324 " margin:20px;\n"
325 " border-collapse: collapse; border-spacing: 0px;\n"
326 " }\n"
327 " td.rowname {\n"
328 " text-align:right; font-weight:bold; color:#444444;\n"
329 " padding-right:2ex; }\n"
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000330 "</style>\n</head>\n<body>";
Ted Kremenek70bcba62008-04-09 15:40:40 +0000331
Ted Kremenekf6f593f2008-07-07 18:31:05 +0000332 // Generate header
333 R.InsertStrBefore(StartLoc, os.str());
Ted Kremenekad0a2032008-03-19 06:14:37 +0000334 // Generate footer
335
Ted Kremenek70bcba62008-04-09 15:40:40 +0000336 R.InsertCStrAfter(EndLoc, "</body></html>\n");
Ted Kremenekad0a2032008-03-19 06:14:37 +0000337}
Chris Lattner3245a0a2008-04-16 06:11:58 +0000338
339/// SyntaxHighlight - Relex the specified FileID and annotate the HTML with
340/// information about keywords, macro expansions etc. This uses the macro
341/// table state from the end of the file, so it won't be perfectly perfect,
342/// but it will be reasonably close.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000343void html::SyntaxHighlight(Rewriter &R, FileID FID, Preprocessor &PP) {
344 RewriteBuffer &RB = R.getEditBuffer(FID);
Chris Lattner3245a0a2008-04-16 06:11:58 +0000345
Chris Lattnera745e8c2008-04-16 20:51:51 +0000346 const SourceManager &SourceMgr = PP.getSourceManager();
Chris Lattner025c3a62009-01-17 07:35:14 +0000347 Lexer L(FID, SourceMgr, PP.getLangOptions());
348 const char *BufferStart = L.getBufferStart();
Chris Lattnera745e8c2008-04-16 20:51:51 +0000349
Chris Lattner3245a0a2008-04-16 06:11:58 +0000350 // Inform the preprocessor that we want to retain comments as tokens, so we
351 // can highlight them.
Chris Lattner678c6352008-04-16 20:54:51 +0000352 L.SetCommentRetentionState(true);
Chris Lattner3245a0a2008-04-16 06:11:58 +0000353
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000354 // Lex all the tokens in raw mode, to avoid entering #includes or expanding
355 // macros.
Chris Lattner3245a0a2008-04-16 06:11:58 +0000356 Token Tok;
Chris Lattner590f0cc2008-10-12 01:15:46 +0000357 L.LexFromRawLexer(Tok);
Chris Lattner74ea3e52008-04-16 06:53:09 +0000358
Chris Lattner74ea3e52008-04-16 06:53:09 +0000359 while (Tok.isNot(tok::eof)) {
360 // Since we are lexing unexpanded tokens, all tokens are from the main
361 // FileID.
Chris Lattner52c29082009-01-27 06:27:13 +0000362 unsigned TokOffs = SourceMgr.getFileOffset(Tok.getLocation());
Chris Lattner3245a0a2008-04-16 06:11:58 +0000363 unsigned TokLen = Tok.getLength();
364 switch (Tok.getKind()) {
Chris Lattnera745e8c2008-04-16 20:51:51 +0000365 default: break;
366 case tok::identifier: {
367 // Fill in Result.IdentifierInfo, looking up the identifier in the
368 // identifier table.
369 IdentifierInfo *II = PP.LookUpIdentifierInfo(Tok, BufferStart+TokOffs);
370
371 // If this is a pp-identifier, for a keyword, highlight it as such.
Chris Lattner5ef3e2c2008-04-16 22:45:51 +0000372 if (II->getTokenID() != tok::identifier)
373 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
374 "<span class='keyword'>", "</span>");
Chris Lattnerc4586c22008-04-16 06:35:07 +0000375 break;
Chris Lattnera745e8c2008-04-16 20:51:51 +0000376 }
Chris Lattner3245a0a2008-04-16 06:11:58 +0000377 case tok::comment:
Chris Lattner5ef3e2c2008-04-16 22:45:51 +0000378 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
379 "<span class='comment'>", "</span>");
Chris Lattner3245a0a2008-04-16 06:11:58 +0000380 break;
Ted Kremenekcc1b8532008-08-31 16:37:56 +0000381 case tok::wide_string_literal:
382 // Chop off the L prefix
383 ++TokOffs;
384 --TokLen;
385 // FALL THROUGH.
386 case tok::string_literal:
387 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
388 "<span class='string_literal'>", "</span>");
389 break;
Chris Lattner5deb96d2008-04-16 23:21:17 +0000390 case tok::hash: {
Chris Lattner74ea3e52008-04-16 06:53:09 +0000391 // If this is a preprocessor directive, all tokens to end of line are too.
Chris Lattner5deb96d2008-04-16 23:21:17 +0000392 if (!Tok.isAtStartOfLine())
393 break;
394
395 // Eat all of the tokens until we get to the next one at the start of
396 // line.
397 unsigned TokEnd = TokOffs+TokLen;
Chris Lattner590f0cc2008-10-12 01:15:46 +0000398 L.LexFromRawLexer(Tok);
Chris Lattner5deb96d2008-04-16 23:21:17 +0000399 while (!Tok.isAtStartOfLine() && Tok.isNot(tok::eof)) {
Chris Lattner52c29082009-01-27 06:27:13 +0000400 TokEnd = SourceMgr.getFileOffset(Tok.getLocation())+Tok.getLength();
Chris Lattner590f0cc2008-10-12 01:15:46 +0000401 L.LexFromRawLexer(Tok);
Chris Lattner74ea3e52008-04-16 06:53:09 +0000402 }
Chris Lattner5deb96d2008-04-16 23:21:17 +0000403
404 // Find end of line. This is a hack.
405 HighlightRange(RB, TokOffs, TokEnd, BufferStart,
406 "<span class='directive'>", "</span>");
407
408 // Don't skip the next token.
409 continue;
410 }
Chris Lattner3245a0a2008-04-16 06:11:58 +0000411 }
412
Chris Lattner590f0cc2008-10-12 01:15:46 +0000413 L.LexFromRawLexer(Tok);
Chris Lattner74ea3e52008-04-16 06:53:09 +0000414 }
Chris Lattner3245a0a2008-04-16 06:11:58 +0000415}
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000416
417/// HighlightMacros - This uses the macro table state from the end of the
418/// file, to reexpand macros and insert (into the HTML) information about the
419/// macro expansions. This won't be perfectly perfect, but it will be
420/// reasonably close.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000421void html::HighlightMacros(Rewriter &R, FileID FID, Preprocessor& PP) {
Ted Kremenek339b9c22008-04-17 22:31:54 +0000422
Chris Lattner2b2453a2009-01-17 06:22:33 +0000423 RewriteBuffer &RB = R.getEditBuffer(FID);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000424
425 // Inform the preprocessor that we don't want comments.
Ted Kremenekfb586092008-04-18 05:34:33 +0000426 PP.SetCommentRetentionState(false, false);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000427
428 // Start parsing the specified input file.
Ted Kremenekfb586092008-04-18 05:34:33 +0000429 PP.EnterMainSourceFile();
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000430
431 // Lex all the tokens.
Ted Kremenekfb586092008-04-18 05:34:33 +0000432 const SourceManager &SourceMgr = PP.getSourceManager();
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000433 Token Tok;
Ted Kremenekfb586092008-04-18 05:34:33 +0000434 PP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000435 while (Tok.isNot(tok::eof)) {
436 // Ignore non-macro tokens.
437 if (!Tok.getLocation().isMacroID()) {
Ted Kremenekfb586092008-04-18 05:34:33 +0000438 PP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000439 continue;
440 }
441
Chris Lattnerf7cf85b2009-01-16 07:36:28 +0000442 // Ignore tokens whose instantiation location was not the main file.
443 SourceLocation LLoc = SourceMgr.getInstantiationLoc(Tok.getLocation());
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000444 std::pair<FileID, unsigned> LLocInfo = SourceMgr.getDecomposedLoc(LLoc);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000445
Chris Lattner2b2453a2009-01-17 06:22:33 +0000446 if (LLocInfo.first != FID) {
Ted Kremenekfb586092008-04-18 05:34:33 +0000447 PP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000448 continue;
449 }
450
451 // Okay, we have the first token of a macro expansion: highlight the
452 // instantiation.
453
454 // Get the size of current macro call itself.
455 // FIXME: This should highlight the args of a function-like
456 // macro, using a heuristic.
457 unsigned TokLen = Lexer::MeasureTokenLength(LLoc, SourceMgr);
458
459 unsigned TokOffs = LLocInfo.second;
Chris Lattner6f46be22008-04-17 00:40:45 +0000460 // Highlight the macro invocation itself.
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000461 RB.InsertTextAfter(TokOffs, "<span class='macro'>",
462 strlen("<span class='macro'>"));
463 RB.InsertTextBefore(TokOffs+TokLen, "</span>", strlen("</span>"));
464
Ted Kremenekfb586092008-04-18 05:34:33 +0000465 std::string Expansion = PP.getSpelling(Tok);
Chris Lattner6f46be22008-04-17 00:40:45 +0000466 unsigned LineLen = Expansion.size();
467
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000468 // Okay, eat this token, getting the next one.
Ted Kremenekfb586092008-04-18 05:34:33 +0000469 PP.Lex(Tok);
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000470
471 // Skip all the rest of the tokens that are part of this macro
472 // instantiation. It would be really nice to pop up a window with all the
473 // spelling of the tokens or something.
474 while (!Tok.is(tok::eof) &&
Chris Lattnerf7cf85b2009-01-16 07:36:28 +0000475 SourceMgr.getInstantiationLoc(Tok.getLocation()) == LLoc) {
Chris Lattner6f46be22008-04-17 00:40:45 +0000476 // Insert a newline if the macro expansion is getting large.
477 if (LineLen > 60) {
478 Expansion += "<br>";
479 LineLen = 0;
480 }
481
482 LineLen -= Expansion.size();
Chris Lattner9227c692008-04-17 23:03:14 +0000483 // Escape any special characters in the token text.
Ted Kremenekfb586092008-04-18 05:34:33 +0000484 Expansion += ' ' + EscapeText(PP.getSpelling(Tok));
Chris Lattner6f46be22008-04-17 00:40:45 +0000485 LineLen += Expansion.size();
Ted Kremenekfb586092008-04-18 05:34:33 +0000486 PP.Lex(Tok);
Chris Lattner6f46be22008-04-17 00:40:45 +0000487 }
Chris Lattner9227c692008-04-17 23:03:14 +0000488
Chris Lattner6f46be22008-04-17 00:40:45 +0000489 // Insert the information about the expansion inside the macro span.
490 Expansion = "<span class='expansion'>" + Expansion + "</span>";
491 RB.InsertTextBefore(TokOffs+TokLen, Expansion.c_str(), Expansion.size());
Chris Lattnerc54d50a2008-04-16 06:32:08 +0000492 }
493}
494
Chris Lattner2b2453a2009-01-17 06:22:33 +0000495void html::HighlightMacros(Rewriter &R, FileID FID,
Ted Kremenekfb586092008-04-18 05:34:33 +0000496 PreprocessorFactory &PPF) {
497
498 llvm::OwningPtr<Preprocessor> PP(PPF.CreatePreprocessor());
Chris Lattner2b2453a2009-01-17 06:22:33 +0000499 HighlightMacros(R, FID, *PP);
Ted Kremenekfb586092008-04-18 05:34:33 +0000500}