llvm-6502/lib/Support/LineIterator.cpp
Justin Bogner 0a277ea23d LineIterator: Provide a variant that keeps blank lines
It isn't always useful to skip blank lines, as evidenced by the
somewhat awkward use of line_iterator in llvm-cov. This adds a knob to
control whether or not to skip blanks.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217960 91177308-0d34-0410-b5e6-96231b3b80d8
2014-09-17 15:43:01 +00:00

81 lines
2.3 KiB
C++

//===- LineIterator.cpp - Implementation of line iteration ----------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "llvm/Support/LineIterator.h"
#include "llvm/Support/MemoryBuffer.h"
using namespace llvm;
line_iterator::line_iterator(const MemoryBuffer &Buffer, bool SkipBlanks,
char CommentMarker)
: Buffer(Buffer.getBufferSize() ? &Buffer : nullptr),
CommentMarker(CommentMarker), SkipBlanks(SkipBlanks), LineNumber(1),
CurrentLine(Buffer.getBufferSize() ? Buffer.getBufferStart() : nullptr,
0) {
// Ensure that if we are constructed on a non-empty memory buffer that it is
// a null terminated buffer.
if (Buffer.getBufferSize()) {
assert(Buffer.getBufferEnd()[0] == '\0');
// Make sure we don't skip a leading newline if we're keeping blanks
if (SkipBlanks || *Buffer.getBufferStart() != '\n')
advance();
}
}
void line_iterator::advance() {
assert(Buffer && "Cannot advance past the end!");
const char *Pos = CurrentLine.end();
assert(Pos == Buffer->getBufferStart() || *Pos == '\n' || *Pos == '\0');
if (*Pos == '\n') {
++Pos;
++LineNumber;
}
if (!SkipBlanks && *Pos == '\n') {
// Nothing to do for a blank line.
} else if (CommentMarker == '\0') {
// If we're not stripping comments, this is simpler.
size_t Blanks = 0;
while (Pos[Blanks] == '\n')
++Blanks;
Pos += Blanks;
LineNumber += Blanks;
} else {
// Skip comments and count line numbers, which is a bit more complex.
for (;;) {
if (*Pos == '\n' && !SkipBlanks)
break;
if (*Pos == CommentMarker)
do {
++Pos;
} while (*Pos != '\0' && *Pos != '\n');
if (*Pos != '\n')
break;
++Pos;
++LineNumber;
}
}
if (*Pos == '\0') {
// We've hit the end of the buffer, reset ourselves to the end state.
Buffer = nullptr;
CurrentLine = StringRef();
return;
}
// Measure the line.
size_t Length = 0;
while (Pos[Length] != '\0' && Pos[Length] != '\n') {
++Length;
}
CurrentLine = StringRef(Pos, Length);
}