LLVM  8.0.1
LineIterator.h
Go to the documentation of this file.
1 //===- LineIterator.h - Iterator to read a text buffer's lines --*- 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 #ifndef LLVM_SUPPORT_LINEITERATOR_H
11 #define LLVM_SUPPORT_LINEITERATOR_H
12 
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/Support/DataTypes.h"
15 #include <iterator>
16 
17 namespace llvm {
18 
19 class MemoryBuffer;
20 
21 /// A forward iterator which reads text lines from a buffer.
22 ///
23 /// This class provides a forward iterator interface for reading one line at
24 /// a time from a buffer. When default constructed the iterator will be the
25 /// "end" iterator.
26 ///
27 /// The iterator is aware of what line number it is currently processing. It
28 /// strips blank lines by default, and comment lines given a comment-starting
29 /// character.
30 ///
31 /// Note that this iterator requires the buffer to be nul terminated.
33  : public std::iterator<std::forward_iterator_tag, StringRef> {
34  const MemoryBuffer *Buffer;
35  char CommentMarker;
36  bool SkipBlanks;
37 
38  unsigned LineNumber;
39  StringRef CurrentLine;
40 
41 public:
42  /// Default construct an "end" iterator.
43  line_iterator() : Buffer(nullptr) {}
44 
45  /// Construct a new iterator around some memory buffer.
46  explicit line_iterator(const MemoryBuffer &Buffer, bool SkipBlanks = true,
47  char CommentMarker = '\0');
48 
49  /// Return true if we've reached EOF or are an "end" iterator.
50  bool is_at_eof() const { return !Buffer; }
51 
52  /// Return true if we're an "end" iterator or have reached EOF.
53  bool is_at_end() const { return is_at_eof(); }
54 
55  /// Return the current line number. May return any number at EOF.
56  int64_t line_number() const { return LineNumber; }
57 
58  /// Advance to the next (non-empty, non-comment) line.
60  advance();
61  return *this;
62  }
64  line_iterator tmp(*this);
65  advance();
66  return tmp;
67  }
68 
69  /// Get the current line as a \c StringRef.
70  StringRef operator*() const { return CurrentLine; }
71  const StringRef *operator->() const { return &CurrentLine; }
72 
73  friend bool operator==(const line_iterator &LHS, const line_iterator &RHS) {
74  return LHS.Buffer == RHS.Buffer &&
75  LHS.CurrentLine.begin() == RHS.CurrentLine.begin();
76  }
77 
78  friend bool operator!=(const line_iterator &LHS, const line_iterator &RHS) {
79  return !(LHS == RHS);
80  }
81 
82 private:
83  /// Advance the iterator to the next line.
84  void advance();
85 };
86 }
87 
88 #endif
friend bool operator!=(const line_iterator &LHS, const line_iterator &RHS)
Definition: LineIterator.h:78
This class represents lattice values for constants.
Definition: AllocatorList.h:24
A forward iterator which reads text lines from a buffer.
Definition: LineIterator.h:32
bool is_at_end() const
Return true if we&#39;re an "end" iterator or have reached EOF.
Definition: LineIterator.h:53
friend bool operator==(const line_iterator &LHS, const line_iterator &RHS)
Definition: LineIterator.h:73
bool is_at_eof() const
Return true if we&#39;ve reached EOF or are an "end" iterator.
Definition: LineIterator.h:50
line_iterator()
Default construct an "end" iterator.
Definition: LineIterator.h:43
int64_t line_number() const
Return the current line number. May return any number at EOF.
Definition: LineIterator.h:56
line_iterator operator++(int)
Definition: LineIterator.h:63
line_iterator & operator++()
Advance to the next (non-empty, non-comment) line.
Definition: LineIterator.h:59
StringRef operator*() const
Get the current line as a StringRef.
Definition: LineIterator.h:70
This interface provides simple read-only access to a block of memory, and provides simple methods for...
Definition: MemoryBuffer.h:42
iterator begin() const
Definition: StringRef.h:106
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
const StringRef * operator->() const
Definition: LineIterator.h:71