123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- //===--- ContinuationIndenter.h - Format C++ code ---------------*- C++ -*-===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- ///
- /// \file
- /// \brief This file implements an indenter that manages the indentation of
- /// continuations.
- ///
- //===----------------------------------------------------------------------===//
- #ifndef LLVM_CLANG_LIB_FORMAT_CONTINUATIONINDENTER_H
- #define LLVM_CLANG_LIB_FORMAT_CONTINUATIONINDENTER_H
- #include "Encoding.h"
- #include "FormatToken.h"
- #include "clang/Format/Format.h"
- #include "llvm/Support/Regex.h"
- namespace clang {
- class SourceManager;
- namespace format {
- class AnnotatedLine;
- struct FormatToken;
- struct LineState;
- struct ParenState;
- class WhitespaceManager;
- class ContinuationIndenter {
- public:
- /// \brief Constructs a \c ContinuationIndenter to format \p Line starting in
- /// column \p FirstIndent.
- ContinuationIndenter(const FormatStyle &Style,
- const AdditionalKeywords &Keywords,
- SourceManager &SourceMgr, WhitespaceManager &Whitespaces,
- encoding::Encoding Encoding,
- bool BinPackInconclusiveFunctions);
- /// \brief Get the initial state, i.e. the state after placing \p Line's
- /// first token at \p FirstIndent.
- LineState getInitialState(unsigned FirstIndent, const AnnotatedLine *Line,
- bool DryRun);
- // FIXME: canBreak and mustBreak aren't strictly indentation-related. Find a
- // better home.
- /// \brief Returns \c true, if a line break after \p State is allowed.
- bool canBreak(const LineState &State);
- /// \brief Returns \c true, if a line break after \p State is mandatory.
- bool mustBreak(const LineState &State);
- /// \brief Appends the next token to \p State and updates information
- /// necessary for indentation.
- ///
- /// Puts the token on the current line if \p Newline is \c false and adds a
- /// line break and necessary indentation otherwise.
- ///
- /// If \p DryRun is \c false, also creates and stores the required
- /// \c Replacement.
- unsigned addTokenToState(LineState &State, bool Newline, bool DryRun,
- unsigned ExtraSpaces = 0);
- /// \brief Get the column limit for this line. This is the style's column
- /// limit, potentially reduced for preprocessor definitions.
- unsigned getColumnLimit(const LineState &State) const;
- private:
- /// \brief Mark the next token as consumed in \p State and modify its stacks
- /// accordingly.
- unsigned moveStateToNextToken(LineState &State, bool DryRun, bool Newline);
- /// \brief Update 'State' according to the next token's fake left parentheses.
- void moveStatePastFakeLParens(LineState &State, bool Newline);
- /// \brief Update 'State' according to the next token's fake r_parens.
- void moveStatePastFakeRParens(LineState &State);
- /// \brief Update 'State' according to the next token being one of "(<{[".
- void moveStatePastScopeOpener(LineState &State, bool Newline);
- /// \brief Update 'State' according to the next token being one of ")>}]".
- void moveStatePastScopeCloser(LineState &State);
- /// \brief Update 'State' with the next token opening a nested block.
- void moveStateToNewBlock(LineState &State);
- /// \brief If the current token sticks out over the end of the line, break
- /// it if possible.
- ///
- /// \returns An extra penalty if a token was broken, otherwise 0.
- ///
- /// The returned penalty will cover the cost of the additional line breaks and
- /// column limit violation in all lines except for the last one. The penalty
- /// for the column limit violation in the last line (and in single line
- /// tokens) is handled in \c addNextStateToQueue.
- unsigned breakProtrudingToken(const FormatToken &Current, LineState &State,
- bool DryRun);
- /// \brief Appends the next token to \p State and updates information
- /// necessary for indentation.
- ///
- /// Puts the token on the current line.
- ///
- /// If \p DryRun is \c false, also creates and stores the required
- /// \c Replacement.
- void addTokenOnCurrentLine(LineState &State, bool DryRun,
- unsigned ExtraSpaces);
- /// \brief Appends the next token to \p State and updates information
- /// necessary for indentation.
- ///
- /// Adds a line break and necessary indentation.
- ///
- /// If \p DryRun is \c false, also creates and stores the required
- /// \c Replacement.
- unsigned addTokenOnNewLine(LineState &State, bool DryRun);
- /// \brief Calculate the new column for a line wrap before the next token.
- unsigned getNewLineColumn(const LineState &State);
- /// \brief Adds a multiline token to the \p State.
- ///
- /// \returns Extra penalty for the first line of the literal: last line is
- /// handled in \c addNextStateToQueue, and the penalty for other lines doesn't
- /// matter, as we don't change them.
- unsigned addMultilineToken(const FormatToken &Current, LineState &State);
- /// \brief Returns \c true if the next token starts a multiline string
- /// literal.
- ///
- /// This includes implicitly concatenated strings, strings that will be broken
- /// by clang-format and string literals with escaped newlines.
- bool nextIsMultilineString(const LineState &State);
- FormatStyle Style;
- const AdditionalKeywords &Keywords;
- SourceManager &SourceMgr;
- WhitespaceManager &Whitespaces;
- encoding::Encoding Encoding;
- bool BinPackInconclusiveFunctions;
- llvm::Regex CommentPragmasRegex;
- };
- struct ParenState {
- ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace,
- bool AvoidBinPacking, bool NoLineBreak)
- : Indent(Indent), IndentLevel(IndentLevel), LastSpace(LastSpace),
- NestedBlockIndent(Indent), BreakBeforeClosingBrace(false),
- AvoidBinPacking(AvoidBinPacking), BreakBeforeParameter(false),
- NoLineBreak(NoLineBreak), LastOperatorWrapped(true),
- ContainsLineBreak(false), ContainsUnwrappedBuilder(false),
- AlignColons(true), ObjCSelectorNameFound(false),
- HasMultipleNestedBlocks(false), NestedBlockInlined(false) {}
- /// \brief The position to which a specific parenthesis level needs to be
- /// indented.
- unsigned Indent;
- /// \brief The number of indentation levels of the block.
- unsigned IndentLevel;
- /// \brief The position of the last space on each level.
- ///
- /// Used e.g. to break like:
- /// functionCall(Parameter, otherCall(
- /// OtherParameter));
- unsigned LastSpace;
- /// \brief If a block relative to this parenthesis level gets wrapped, indent
- /// it this much.
- unsigned NestedBlockIndent;
- /// \brief The position the first "<<" operator encountered on each level.
- ///
- /// Used to align "<<" operators. 0 if no such operator has been encountered
- /// on a level.
- unsigned FirstLessLess = 0;
- /// \brief The column of a \c ? in a conditional expression;
- unsigned QuestionColumn = 0;
- /// \brief The position of the colon in an ObjC method declaration/call.
- unsigned ColonPos = 0;
- /// \brief The start of the most recent function in a builder-type call.
- unsigned StartOfFunctionCall = 0;
- /// \brief Contains the start of array subscript expressions, so that they
- /// can be aligned.
- unsigned StartOfArraySubscripts = 0;
- /// \brief If a nested name specifier was broken over multiple lines, this
- /// contains the start column of the second line. Otherwise 0.
- unsigned NestedNameSpecifierContinuation = 0;
- /// \brief If a call expression was broken over multiple lines, this
- /// contains the start column of the second line. Otherwise 0.
- unsigned CallContinuation = 0;
- /// \brief The column of the first variable name in a variable declaration.
- ///
- /// Used to align further variables if necessary.
- unsigned VariablePos = 0;
- /// \brief Whether a newline needs to be inserted before the block's closing
- /// brace.
- ///
- /// We only want to insert a newline before the closing brace if there also
- /// was a newline after the beginning left brace.
- bool BreakBeforeClosingBrace : 1;
- /// \brief Avoid bin packing, i.e. multiple parameters/elements on multiple
- /// lines, in this context.
- bool AvoidBinPacking : 1;
- /// \brief Break after the next comma (or all the commas in this context if
- /// \c AvoidBinPacking is \c true).
- bool BreakBeforeParameter : 1;
- /// \brief Line breaking in this context would break a formatting rule.
- bool NoLineBreak : 1;
- /// \brief True if the last binary operator on this level was wrapped to the
- /// next line.
- bool LastOperatorWrapped : 1;
- /// \brief \c true if this \c ParenState already contains a line-break.
- ///
- /// The first line break in a certain \c ParenState causes extra penalty so
- /// that clang-format prefers similar breaks, i.e. breaks in the same
- /// parenthesis.
- bool ContainsLineBreak : 1;
- /// \brief \c true if this \c ParenState contains multiple segments of a
- /// builder-type call on one line.
- bool ContainsUnwrappedBuilder : 1;
- /// \brief \c true if the colons of the curren ObjC method expression should
- /// be aligned.
- ///
- /// Not considered for memoization as it will always have the same value at
- /// the same token.
- bool AlignColons : 1;
- /// \brief \c true if at least one selector name was found in the current
- /// ObjC method expression.
- ///
- /// Not considered for memoization as it will always have the same value at
- /// the same token.
- bool ObjCSelectorNameFound : 1;
- /// \brief \c true if there are multiple nested blocks inside these parens.
- ///
- /// Not considered for memoization as it will always have the same value at
- /// the same token.
- bool HasMultipleNestedBlocks : 1;
- // \brief The start of a nested block (e.g. lambda introducer in C++ or
- // "function" in JavaScript) is not wrapped to a new line.
- bool NestedBlockInlined : 1;
- bool operator<(const ParenState &Other) const {
- if (Indent != Other.Indent)
- return Indent < Other.Indent;
- if (LastSpace != Other.LastSpace)
- return LastSpace < Other.LastSpace;
- if (NestedBlockIndent != Other.NestedBlockIndent)
- return NestedBlockIndent < Other.NestedBlockIndent;
- if (FirstLessLess != Other.FirstLessLess)
- return FirstLessLess < Other.FirstLessLess;
- if (BreakBeforeClosingBrace != Other.BreakBeforeClosingBrace)
- return BreakBeforeClosingBrace;
- if (QuestionColumn != Other.QuestionColumn)
- return QuestionColumn < Other.QuestionColumn;
- if (AvoidBinPacking != Other.AvoidBinPacking)
- return AvoidBinPacking;
- if (BreakBeforeParameter != Other.BreakBeforeParameter)
- return BreakBeforeParameter;
- if (NoLineBreak != Other.NoLineBreak)
- return NoLineBreak;
- if (LastOperatorWrapped != Other.LastOperatorWrapped)
- return LastOperatorWrapped;
- if (ColonPos != Other.ColonPos)
- return ColonPos < Other.ColonPos;
- if (StartOfFunctionCall != Other.StartOfFunctionCall)
- return StartOfFunctionCall < Other.StartOfFunctionCall;
- if (StartOfArraySubscripts != Other.StartOfArraySubscripts)
- return StartOfArraySubscripts < Other.StartOfArraySubscripts;
- if (CallContinuation != Other.CallContinuation)
- return CallContinuation < Other.CallContinuation;
- if (VariablePos != Other.VariablePos)
- return VariablePos < Other.VariablePos;
- if (ContainsLineBreak != Other.ContainsLineBreak)
- return ContainsLineBreak;
- if (ContainsUnwrappedBuilder != Other.ContainsUnwrappedBuilder)
- return ContainsUnwrappedBuilder;
- if (NestedBlockInlined != Other.NestedBlockInlined)
- return NestedBlockInlined;
- return false;
- }
- };
- /// \brief The current state when indenting a unwrapped line.
- ///
- /// As the indenting tries different combinations this is copied by value.
- struct LineState {
- /// \brief The number of used columns in the current line.
- unsigned Column;
- /// \brief The token that needs to be next formatted.
- FormatToken *NextToken;
- /// \brief \c true if this line contains a continued for-loop section.
- bool LineContainsContinuedForLoopSection;
- /// \brief The \c NestingLevel at the start of this line.
- unsigned StartOfLineLevel;
- /// \brief The lowest \c NestingLevel on the current line.
- unsigned LowestLevelOnLine;
- /// \brief The start column of the string literal, if we're in a string
- /// literal sequence, 0 otherwise.
- unsigned StartOfStringLiteral;
- /// \brief A stack keeping track of properties applying to parenthesis
- /// levels.
- std::vector<ParenState> Stack;
- /// \brief Ignore the stack of \c ParenStates for state comparison.
- ///
- /// In long and deeply nested unwrapped lines, the current algorithm can
- /// be insufficient for finding the best formatting with a reasonable amount
- /// of time and memory. Setting this flag will effectively lead to the
- /// algorithm not analyzing some combinations. However, these combinations
- /// rarely contain the optimal solution: In short, accepting a higher
- /// penalty early would need to lead to different values in the \c
- /// ParenState stack (in an otherwise identical state) and these different
- /// values would need to lead to a significant amount of avoided penalty
- /// later.
- ///
- /// FIXME: Come up with a better algorithm instead.
- bool IgnoreStackForComparison;
- /// \brief The indent of the first token.
- unsigned FirstIndent;
- /// \brief The line that is being formatted.
- ///
- /// Does not need to be considered for memoization because it doesn't change.
- const AnnotatedLine *Line;
- /// \brief Comparison operator to be able to used \c LineState in \c map.
- bool operator<(const LineState &Other) const {
- if (NextToken != Other.NextToken)
- return NextToken < Other.NextToken;
- if (Column != Other.Column)
- return Column < Other.Column;
- if (LineContainsContinuedForLoopSection !=
- Other.LineContainsContinuedForLoopSection)
- return LineContainsContinuedForLoopSection;
- if (StartOfLineLevel != Other.StartOfLineLevel)
- return StartOfLineLevel < Other.StartOfLineLevel;
- if (LowestLevelOnLine != Other.LowestLevelOnLine)
- return LowestLevelOnLine < Other.LowestLevelOnLine;
- if (StartOfStringLiteral != Other.StartOfStringLiteral)
- return StartOfStringLiteral < Other.StartOfStringLiteral;
- if (IgnoreStackForComparison || Other.IgnoreStackForComparison)
- return false;
- return Stack < Other.Stack;
- }
- };
- } // end namespace format
- } // end namespace clang
- #endif
|