Home | History | Annotate | Download | only in Format
      1 //===--- AffectedRangeManager.h - Format C++ code ---------------*- 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 /// \file
     11 /// \brief AffectedRangeManager class manages affected ranges in the code.
     12 ///
     13 //===----------------------------------------------------------------------===//
     14 
     15 #ifndef LLVM_CLANG_LIB_FORMAT_AFFECTEDRANGEMANAGER_H
     16 #define LLVM_CLANG_LIB_FORMAT_AFFECTEDRANGEMANAGER_H
     17 
     18 #include "clang/Basic/SourceManager.h"
     19 
     20 namespace clang {
     21 namespace format {
     22 
     23 struct FormatToken;
     24 class AnnotatedLine;
     25 
     26 class AffectedRangeManager {
     27 public:
     28   AffectedRangeManager(const SourceManager &SourceMgr,
     29                        const ArrayRef<CharSourceRange> Ranges)
     30       : SourceMgr(SourceMgr), Ranges(Ranges.begin(), Ranges.end()) {}
     31 
     32   // Determines which lines are affected by the SourceRanges given as input.
     33   // Returns \c true if at least one line between I and E or one of their
     34   // children is affected.
     35   bool computeAffectedLines(SmallVectorImpl<AnnotatedLine *>::iterator I,
     36                             SmallVectorImpl<AnnotatedLine *>::iterator E);
     37 
     38   // Returns true if 'Range' intersects with one of the input ranges.
     39   bool affectsCharSourceRange(const CharSourceRange &Range);
     40 
     41 private:
     42   // Returns true if the range from 'First' to 'Last' intersects with one of the
     43   // input ranges.
     44   bool affectsTokenRange(const FormatToken &First, const FormatToken &Last,
     45                          bool IncludeLeadingNewlines);
     46 
     47   // Returns true if one of the input ranges intersect the leading empty lines
     48   // before 'Tok'.
     49   bool affectsLeadingEmptyLines(const FormatToken &Tok);
     50 
     51   // Marks all lines between I and E as well as all their children as affected.
     52   void markAllAsAffected(SmallVectorImpl<AnnotatedLine *>::iterator I,
     53                          SmallVectorImpl<AnnotatedLine *>::iterator E);
     54 
     55   // Determines whether 'Line' is affected by the SourceRanges given as input.
     56   // Returns \c true if line or one if its children is affected.
     57   bool nonPPLineAffected(AnnotatedLine *Line,
     58                          const AnnotatedLine *PreviousLine);
     59 
     60   const SourceManager &SourceMgr;
     61   const SmallVector<CharSourceRange, 8> Ranges;
     62 };
     63 
     64 } // namespace format
     65 } // namespace clang
     66 
     67 #endif // LLVM_CLANG_LIB_FORMAT_AFFECTEDRANGEMANAGER_H
     68