1 //== HTMLRewrite.cpp - Translate source code into prettified HTML --*- C++ -*-//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the HTMLRewriter class, which is used to translate the
11 // text of a source file into prettified HTML.
13 //===----------------------------------------------------------------------===//
15 #include "clang/Rewrite/Core/HTMLRewrite.h"
16 #include "clang/Basic/SourceManager.h"
17 #include "clang/Lex/Preprocessor.h"
18 #include "clang/Lex/TokenConcatenation.h"
19 #include "clang/Rewrite/Core/Rewriter.h"
20 #include "llvm/ADT/SmallString.h"
21 #include "llvm/Support/ErrorHandling.h"
22 #include "llvm/Support/MemoryBuffer.h"
23 #include "llvm/Support/raw_ostream.h"
25 using namespace clang
;
28 /// 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
32 void html::HighlightRange(Rewriter
&R
, SourceLocation B
, SourceLocation E
,
33 const char *StartTag
, const char *EndTag
) {
34 SourceManager
&SM
= R
.getSourceMgr();
35 B
= SM
.getExpansionLoc(B
);
36 E
= SM
.getExpansionLoc(E
);
37 FileID FID
= SM
.getFileID(B
);
38 assert(SM
.getFileID(E
) == FID
&& "B/E not in the same file!");
40 unsigned BOffset
= SM
.getFileOffset(B
);
41 unsigned EOffset
= SM
.getFileOffset(E
);
43 // Include the whole end token in the range.
44 EOffset
+= Lexer::MeasureTokenLength(E
, R
.getSourceMgr(), R
.getLangOpts());
47 const char *BufferStart
= SM
.getBufferData(FID
, &Invalid
).data();
51 HighlightRange(R
.getEditBuffer(FID
), BOffset
, EOffset
,
52 BufferStart
, StartTag
, EndTag
);
55 /// HighlightRange - This is the same as the above method, but takes
56 /// decomposed file locations.
57 void html::HighlightRange(RewriteBuffer
&RB
, unsigned B
, unsigned E
,
58 const char *BufferStart
,
59 const char *StartTag
, const char *EndTag
) {
60 // Insert the tag at the absolute start/end of the range.
61 RB
.InsertTextAfter(B
, StartTag
);
62 RB
.InsertTextBefore(E
, EndTag
);
64 // Scan the range to see if there is a \r or \n. If so, and if the line is
65 // not blank, insert tags on that line as well.
66 bool HadOpenTag
= true;
68 unsigned LastNonWhiteSpace
= B
;
69 for (unsigned i
= B
; i
!= E
; ++i
) {
70 switch (BufferStart
[i
]) {
73 // Okay, we found a newline in the range. If we have an open tag, we need
74 // to insert a close tag at the first non-whitespace before the newline.
76 RB
.InsertTextBefore(LastNonWhiteSpace
+1, EndTag
);
78 // Instead of inserting an open tag immediately after the newline, we
79 // wait until we see a non-whitespace character. This prevents us from
80 // inserting tags around blank lines, and also allows the open tag to
81 // be put *after* whitespace on a non-blank line.
93 // If there is no tag open, do it now.
95 RB
.InsertTextAfter(i
, StartTag
);
99 // Remember this character.
100 LastNonWhiteSpace
= i
;
106 void html::EscapeText(Rewriter
&R
, FileID FID
,
107 bool EscapeSpaces
, bool ReplaceTabs
) {
109 const llvm::MemoryBuffer
*Buf
= R
.getSourceMgr().getBuffer(FID
);
110 const char* C
= Buf
->getBufferStart();
111 const char* FileEnd
= Buf
->getBufferEnd();
113 assert (C
<= FileEnd
);
115 RewriteBuffer
&RB
= R
.getEditBuffer(FID
);
118 for (unsigned FilePos
= 0; C
!= FileEnd
; ++C
, ++FilePos
) {
120 default: ++ColNo
; break;
128 RB
.ReplaceText(FilePos
, 1, " ");
132 RB
.ReplaceText(FilePos
, 1, "<hr>");
139 unsigned NumSpaces
= 8-(ColNo
&7);
141 RB
.ReplaceText(FilePos
, 1,
142 StringRef(" "
143 " ", 6*NumSpaces
));
145 RB
.ReplaceText(FilePos
, 1, StringRef(" ", NumSpaces
));
150 RB
.ReplaceText(FilePos
, 1, "<");
155 RB
.ReplaceText(FilePos
, 1, ">");
160 RB
.ReplaceText(FilePos
, 1, "&");
167 std::string
html::EscapeText(StringRef s
, bool EscapeSpaces
, bool ReplaceTabs
) {
169 unsigned len
= s
.size();
171 llvm::raw_string_ostream
os(Str
);
173 for (unsigned i
= 0 ; i
< len
; ++i
) {
181 if (EscapeSpaces
) os
<< " ";
188 for (unsigned i
= 0; i
< 4; ++i
)
191 for (unsigned i
= 0; i
< 4; ++i
)
199 case '<': os
<< "<"; break;
200 case '>': os
<< ">"; break;
201 case '&': os
<< "&"; break;
208 static void AddLineNumber(RewriteBuffer
&RB
, unsigned LineNo
,
209 unsigned B
, unsigned E
) {
210 SmallString
<256> Str
;
211 llvm::raw_svector_ostream
OS(Str
);
213 OS
<< "<tr><td class=\"num\" id=\"LN"
215 << LineNo
<< "</td><td class=\"line\">";
217 if (B
== E
) { // Handle empty lines.
219 RB
.InsertTextBefore(B
, OS
.str());
221 RB
.InsertTextBefore(B
, OS
.str());
222 RB
.InsertTextBefore(E
, "</td></tr>");
226 void html::AddLineNumbers(Rewriter
& R
, FileID FID
) {
228 const llvm::MemoryBuffer
*Buf
= R
.getSourceMgr().getBuffer(FID
);
229 const char* FileBeg
= Buf
->getBufferStart();
230 const char* FileEnd
= Buf
->getBufferEnd();
231 const char* C
= FileBeg
;
232 RewriteBuffer
&RB
= R
.getEditBuffer(FID
);
234 assert (C
<= FileEnd
);
237 unsigned FilePos
= 0;
239 while (C
!= FileEnd
) {
242 unsigned LineStartPos
= FilePos
;
243 unsigned LineEndPos
= FileEnd
- FileBeg
;
245 assert (FilePos
<= LineEndPos
);
246 assert (C
< FileEnd
);
248 // Scan until the newline (or end-of-file).
250 while (C
!= FileEnd
) {
255 LineEndPos
= FilePos
++;
262 AddLineNumber(RB
, LineNo
, LineStartPos
, LineEndPos
);
265 // Add one big table tag that surrounds all of the code.
266 RB
.InsertTextBefore(0, "<table class=\"code\">\n");
267 RB
.InsertTextAfter(FileEnd
- FileBeg
, "</table>");
270 void html::AddHeaderFooterInternalBuiltinCSS(Rewriter
& R
, FileID FID
,
273 const llvm::MemoryBuffer
*Buf
= R
.getSourceMgr().getBuffer(FID
);
274 const char* FileStart
= Buf
->getBufferStart();
275 const char* FileEnd
= Buf
->getBufferEnd();
277 SourceLocation StartLoc
= R
.getSourceMgr().getLocForStartOfFile(FID
);
278 SourceLocation EndLoc
= StartLoc
.getLocWithOffset(FileEnd
-FileStart
);
281 llvm::raw_string_ostream
os(s
);
282 os
<< "<!doctype html>\n" // Use HTML 5 doctype
286 os
<< "<title>" << html::EscapeText(title
) << "</title>\n";
288 os
<< "<style type=\"text/css\">\n"
289 " body { color:#000000; background-color:#ffffff }\n"
290 " body { font-family:Helvetica, sans-serif; font-size:10pt }\n"
291 " h1 { font-size:14pt }\n"
292 " .code { border-collapse:collapse; width:100%; }\n"
293 " .code { font-family: \"Monospace\", monospace; font-size:10pt }\n"
294 " .code { line-height: 1.2em }\n"
295 " .comment { color: green; font-style: oblique }\n"
296 " .keyword { color: blue }\n"
297 " .string_literal { color: red }\n"
298 " .directive { color: darkmagenta }\n"
300 " .expansion { display: none; }\n"
301 " .macro:hover .expansion { display: block; border: 2px solid #FF0000; "
302 "padding: 2px; background-color:#FFF0F0; font-weight: normal; "
303 " -webkit-border-radius:5px; -webkit-box-shadow:1px 1px 7px #000; "
304 "position: absolute; top: -1em; left:10em; z-index: 1 } \n"
305 " .macro { color: darkmagenta; background-color:LemonChiffon;"
306 // Macros are position: relative to provide base for expansions.
307 " position: relative }\n"
308 " .num { width:2.5em; padding-right:2ex; background-color:#eeeeee }\n"
309 " .num { text-align:right; font-size:8pt }\n"
310 " .num { color:#444444 }\n"
311 " .line { padding-left: 1ex; border-left: 3px solid #ccc }\n"
312 " .line { white-space: pre }\n"
313 " .msg { -webkit-box-shadow:1px 1px 7px #000 }\n"
314 " .msg { -webkit-border-radius:5px }\n"
315 " .msg { font-family:Helvetica, sans-serif; font-size:8pt }\n"
316 " .msg { float:left }\n"
317 " .msg { padding:0.25em 1ex 0.25em 1ex }\n"
318 " .msg { margin-top:10px; margin-bottom:10px }\n"
319 " .msg { font-weight:bold }\n"
320 " .msg { max-width:60em; word-wrap: break-word; white-space: pre-wrap }\n"
321 " .msgT { padding:0x; spacing:0x }\n"
322 " .msgEvent { background-color:#fff8b4; color:#000000 }\n"
323 " .msgControl { background-color:#bbbbbb; color:#000000 }\n"
324 " .mrange { background-color:#dfddf3 }\n"
325 " .mrange { border-bottom:1px solid #6F9DBE }\n"
326 " .PathIndex { font-weight: bold; padding:0px 5px; "
327 "margin-right:5px; }\n"
328 " .PathIndex { -webkit-border-radius:8px }\n"
329 " .PathIndexEvent { background-color:#bfba87 }\n"
330 " .PathIndexControl { background-color:#8c8c8c }\n"
331 " .PathNav a { text-decoration:none; font-size: larger }\n"
332 " .CodeInsertionHint { font-weight: bold; background-color: #10dd10 }\n"
333 " .CodeRemovalHint { background-color:#de1010 }\n"
334 " .CodeRemovalHint { border-bottom:1px solid #6F9DBE }\n"
335 " table.simpletable {\n"
339 " border-collapse: collapse; border-spacing: 0px;\n"
342 " text-align:right; font-weight:bold; color:#444444;\n"
343 " padding-right:2ex; }\n"
344 "</style>\n</head>\n<body>";
347 R
.InsertTextBefore(StartLoc
, os
.str());
350 R
.InsertTextAfter(EndLoc
, "</body></html>\n");
353 /// SyntaxHighlight - Relex the specified FileID and annotate the HTML with
354 /// information about keywords, macro expansions etc. This uses the macro
355 /// table state from the end of the file, so it won't be perfectly perfect,
356 /// but it will be reasonably close.
357 void html::SyntaxHighlight(Rewriter
&R
, FileID FID
, const Preprocessor
&PP
) {
358 RewriteBuffer
&RB
= R
.getEditBuffer(FID
);
360 const SourceManager
&SM
= PP
.getSourceManager();
361 const llvm::MemoryBuffer
*FromFile
= SM
.getBuffer(FID
);
362 Lexer
L(FID
, FromFile
, SM
, PP
.getLangOpts());
363 const char *BufferStart
= L
.getBuffer().data();
365 // Inform the preprocessor that we want to retain comments as tokens, so we
366 // can highlight them.
367 L
.SetCommentRetentionState(true);
369 // Lex all the tokens in raw mode, to avoid entering #includes or expanding
372 L
.LexFromRawLexer(Tok
);
374 while (Tok
.isNot(tok::eof
)) {
375 // Since we are lexing unexpanded tokens, all tokens are from the main
377 unsigned TokOffs
= SM
.getFileOffset(Tok
.getLocation());
378 unsigned TokLen
= Tok
.getLength();
379 switch (Tok
.getKind()) {
381 case tok::identifier
:
382 llvm_unreachable("tok::identifier in raw lexing mode!");
383 case tok::raw_identifier
: {
384 // Fill in Result.IdentifierInfo and update the token kind,
385 // looking up the identifier in the identifier table.
386 PP
.LookUpIdentifierInfo(Tok
);
388 // If this is a pp-identifier, for a keyword, highlight it as such.
389 if (Tok
.isNot(tok::identifier
))
390 HighlightRange(RB
, TokOffs
, TokOffs
+TokLen
, BufferStart
,
391 "<span class='keyword'>", "</span>");
395 HighlightRange(RB
, TokOffs
, TokOffs
+TokLen
, BufferStart
,
396 "<span class='comment'>", "</span>");
398 case tok::utf8_string_literal
:
399 // Chop off the u part of u8 prefix
402 // FALL THROUGH to chop the 8
403 case tok::wide_string_literal
:
404 case tok::utf16_string_literal
:
405 case tok::utf32_string_literal
:
406 // Chop off the L, u, U or 8 prefix
410 case tok::string_literal
:
411 // FIXME: Exclude the optional ud-suffix from the highlighted range.
412 HighlightRange(RB
, TokOffs
, TokOffs
+TokLen
, BufferStart
,
413 "<span class='string_literal'>", "</span>");
416 // If this is a preprocessor directive, all tokens to end of line are too.
417 if (!Tok
.isAtStartOfLine())
420 // Eat all of the tokens until we get to the next one at the start of
422 unsigned TokEnd
= TokOffs
+TokLen
;
423 L
.LexFromRawLexer(Tok
);
424 while (!Tok
.isAtStartOfLine() && Tok
.isNot(tok::eof
)) {
425 TokEnd
= SM
.getFileOffset(Tok
.getLocation())+Tok
.getLength();
426 L
.LexFromRawLexer(Tok
);
429 // Find end of line. This is a hack.
430 HighlightRange(RB
, TokOffs
, TokEnd
, BufferStart
,
431 "<span class='directive'>", "</span>");
433 // Don't skip the next token.
438 L
.LexFromRawLexer(Tok
);
442 /// HighlightMacros - This uses the macro table state from the end of the
443 /// file, to re-expand macros and insert (into the HTML) information about the
444 /// macro expansions. This won't be perfectly perfect, but it will be
445 /// reasonably close.
446 void html::HighlightMacros(Rewriter
&R
, FileID FID
, const Preprocessor
& PP
) {
447 // Re-lex the raw token stream into a token buffer.
448 const SourceManager
&SM
= PP
.getSourceManager();
449 std::vector
<Token
> TokenStream
;
451 const llvm::MemoryBuffer
*FromFile
= SM
.getBuffer(FID
);
452 Lexer
L(FID
, FromFile
, SM
, PP
.getLangOpts());
454 // Lex all the tokens in raw mode, to avoid entering #includes or expanding
458 L
.LexFromRawLexer(Tok
);
460 // If this is a # at the start of a line, discard it from the token stream.
461 // We don't want the re-preprocess step to see #defines, #includes or other
462 // preprocessor directives.
463 if (Tok
.is(tok::hash
) && Tok
.isAtStartOfLine())
466 // If this is a ## token, change its kind to unknown so that repreprocessing
467 // it will not produce an error.
468 if (Tok
.is(tok::hashhash
))
469 Tok
.setKind(tok::unknown
);
471 // If this raw token is an identifier, the raw lexer won't have looked up
472 // the corresponding identifier info for it. Do this now so that it will be
473 // macro expanded when we re-preprocess it.
474 if (Tok
.is(tok::raw_identifier
))
475 PP
.LookUpIdentifierInfo(Tok
);
477 TokenStream
.push_back(Tok
);
479 if (Tok
.is(tok::eof
)) break;
482 // Temporarily change the diagnostics object so that we ignore any generated
483 // diagnostics from this pass.
484 DiagnosticsEngine
TmpDiags(PP
.getDiagnostics().getDiagnosticIDs(),
485 &PP
.getDiagnostics().getDiagnosticOptions(),
486 new IgnoringDiagConsumer
);
488 // 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
);
492 DiagnosticsEngine
*OldDiags
= &TmpPP
.getDiagnostics();
493 TmpPP
.setDiagnostics(TmpDiags
);
495 // Inform the preprocessor that we don't want comments.
496 TmpPP
.SetCommentRetentionState(false, false);
498 // We don't want pragmas either. Although we filtered out #pragma, removing
499 // _Pragma and __pragma is much harder.
500 bool PragmasPreviouslyEnabled
= TmpPP
.getPragmasEnabled();
501 TmpPP
.setPragmasEnabled(false);
503 // Enter the tokens we just lexed. This will cause them to be macro expanded
504 // but won't enter sub-files (because we removed #'s).
505 TmpPP
.EnterTokenStream(&TokenStream
[0], TokenStream
.size(), false, false);
507 TokenConcatenation
ConcatInfo(TmpPP
);
509 // Lex all the tokens.
512 while (Tok
.isNot(tok::eof
)) {
513 // Ignore non-macro tokens.
514 if (!Tok
.getLocation().isMacroID()) {
519 // Okay, we have the first token of a macro expansion: highlight the
520 // expansion by inserting a start tag before the macro expansion and
522 std::pair
<SourceLocation
, SourceLocation
> LLoc
=
523 SM
.getExpansionRange(Tok
.getLocation());
525 // Ignore tokens whose instantiation location was not the main file.
526 if (SM
.getFileID(LLoc
.first
) != FID
) {
531 assert(SM
.getFileID(LLoc
.second
) == FID
&&
532 "Start and end of expansion must be in the same ultimate file!");
534 std::string Expansion
= EscapeText(TmpPP
.getSpelling(Tok
));
535 unsigned LineLen
= Expansion
.size();
539 // Okay, eat this token, getting the next one.
542 // Skip all the rest of the tokens that are part of this macro
543 // instantiation. It would be really nice to pop up a window with all the
544 // spelling of the tokens or something.
545 while (!Tok
.is(tok::eof
) &&
546 SM
.getExpansionLoc(Tok
.getLocation()) == LLoc
.first
) {
547 // Insert a newline if the macro expansion is getting large.
553 LineLen
-= Expansion
.size();
555 // If the tokens were already space separated, or if they must be to avoid
556 // them being implicitly pasted, add a space between them.
557 if (Tok
.hasLeadingSpace() ||
558 ConcatInfo
.AvoidConcat(PrevPrevTok
, PrevTok
, Tok
))
561 // Escape any special characters in the token text.
562 Expansion
+= EscapeText(TmpPP
.getSpelling(Tok
));
563 LineLen
+= Expansion
.size();
565 PrevPrevTok
= PrevTok
;
571 // Insert the expansion as the end tag, so that multi-line macros all get
573 Expansion
= "<span class='expansion'>" + Expansion
+ "</span></span>";
575 HighlightRange(R
, LLoc
.first
, LLoc
.second
,
576 "<span class='macro'>", Expansion
.c_str());
579 // Restore the preprocessor's old state.
580 TmpPP
.setDiagnostics(*OldDiags
);
581 TmpPP
.setPragmasEnabled(PragmasPreviouslyEnabled
);