clang API Documentation

Classes | Public Member Functions
clang::format::WhitespaceManager Class Reference

Manages the whitespaces around tokens and their replacements. More...

#include <WhitespaceManager.h>

List of all members.

Classes

struct  Change
 Represents a change before a token, a break inside a token, or the layout of an unchanged token (or whitespace within).

Public Member Functions

 WhitespaceManager (SourceManager &SourceMgr, const FormatStyle &Style, bool UseCRLF)
void reset ()
 Prepares the WhitespaceManager for another run.
void replaceWhitespace (FormatToken &Tok, unsigned Newlines, unsigned IndentLevel, unsigned Spaces, unsigned StartOfTokenColumn, bool InPPDirective=false)
 Replaces the whitespace in front of Tok. Only call once for each AnnotatedToken.
void addUntouchableToken (const FormatToken &Tok, bool InPPDirective)
 Adds information about an unchangeable token's whitespace.
void replaceWhitespaceInToken (const FormatToken &Tok, unsigned Offset, unsigned ReplaceChars, StringRef PreviousPostfix, StringRef CurrentPrefix, bool InPPDirective, unsigned Newlines, unsigned IndentLevel, int Spaces)
 Inserts or replaces whitespace in the middle of a token.
const tooling::ReplacementsgenerateReplacements ()
 Returns all the Replacements created during formatting.

Detailed Description

Manages the whitespaces around tokens and their replacements.

This includes special handling for certain constructs, e.g. the alignment of trailing line comments.

To guarantee correctness of alignment operations, the WhitespaceManager must be informed about every token in the source file; for each token, there must be exactly one call to either replaceWhitespace or addUntouchableToken.

There may be multiple calls to breakToken for a given token.

Definition at line 38 of file WhitespaceManager.h.


Constructor & Destructor Documentation

clang::format::WhitespaceManager::WhitespaceManager ( SourceManager SourceMgr,
const FormatStyle Style,
bool  UseCRLF 
) [inline]

Definition at line 40 of file WhitespaceManager.h.


Member Function Documentation

void clang::format::WhitespaceManager::addUntouchableToken ( const FormatToken Tok,
bool  InPPDirective 
)

Adds information about an unchangeable token's whitespace.

Needs to be called for every token for which replaceWhitespace was not called.

Definition at line 58 of file WhitespaceManager.cpp.

References clang::format::FormatToken::Finalized, clang::Token::getKind(), clang::format::FormatToken::IsFirst, clang::format::FormatToken::NewlinesBefore, clang::format::FormatToken::OriginalColumn, clang::format::FormatToken::Tok, and clang::format::FormatToken::WhitespaceRange.

Returns all the Replacements created during formatting.

Definition at line 88 of file WhitespaceManager.cpp.

References SourceMgr.

void clang::format::WhitespaceManager::replaceWhitespace ( FormatToken Tok,
unsigned  Newlines,
unsigned  IndentLevel,
unsigned  Spaces,
unsigned  StartOfTokenColumn,
bool  InPPDirective = false 
)
void clang::format::WhitespaceManager::replaceWhitespaceInToken ( const FormatToken Tok,
unsigned  Offset,
unsigned  ReplaceChars,
StringRef  PreviousPostfix,
StringRef  CurrentPrefix,
bool  InPPDirective,
unsigned  Newlines,
unsigned  IndentLevel,
int  Spaces 
)

Inserts or replaces whitespace in the middle of a token.

Inserts PreviousPostfix, Newlines, Spaces and CurrentPrefix (in this order) at Offset inside Tok, replacing ReplaceChars characters.

Note: Spaces can be negative to retain information about initial relative column offset between a line of a block comment and the start of the comment. This negative offset may be compensated by trailing comment alignment here. In all other cases negative Spaces will be truncated to 0.

When InPPDirective is true, escaped newlines are inserted. Spaces is used to align backslashes correctly.

Definition at line 68 of file WhitespaceManager.cpp.

References clang::format::FormatToken::Finalized, clang::SourceLocation::getLocWithOffset(), clang::format::FormatToken::getStartOfNonWhitespace(), clang::format::FormatToken::IsFirst, clang::format::TT_LineComment, and clang::format::FormatToken::Type.

Referenced by clang::format::BreakableStringLiteral::insertBreak(), clang::format::BreakableLineComment::insertBreak(), clang::format::BreakableBlockComment::insertBreak(), clang::format::BreakableLineComment::replaceWhitespace(), clang::format::BreakableBlockComment::replaceWhitespace(), clang::format::BreakableLineComment::replaceWhitespaceBefore(), and clang::format::BreakableBlockComment::replaceWhitespaceBefore().

Prepares the WhitespaceManager for another run.

Definition at line 41 of file WhitespaceManager.cpp.


The documentation for this class was generated from the following files: