llvm/flang/lib/parser/char-buffer.h
Tim Keith 7f66c0ae72 [flang] Normalize namespace definitions.
Replace `namespace Fortran { namespace parser { ... } }` with
`namespace Fortran::parser { ... }` and similarly for semantics.

Original-commit: flang-compiler/f18@838c9539b2
Reviewed-on: https://github.com/flang-compiler/f18/pull/77
Tree-same-pre-rewrite: false
2018-05-02 13:52:36 -07:00

133 lines
3.6 KiB
C++

// Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef FORTRAN_PARSER_CHAR_BUFFER_H_
#define FORTRAN_PARSER_CHAR_BUFFER_H_
// Defines a simple expandable buffer suitable for efficiently accumulating
// a stream of bytes.
#include <cstddef>
#include <forward_list>
#include <string>
#include <utility>
#include <vector>
namespace Fortran::parser {
class CharBuffer {
public:
CharBuffer() {}
CharBuffer(CharBuffer &&that)
: blocks_(std::move(that.blocks_)), last_{that.last_}, bytes_{that.bytes_},
lastBlockEmpty_{that.lastBlockEmpty_} {
that.clear();
}
CharBuffer &operator=(CharBuffer &&that) {
blocks_ = std::move(that.blocks_);
last_ = that.last_;
bytes_ = that.bytes_;
lastBlockEmpty_ = that.lastBlockEmpty_;
that.clear();
return *this;
}
bool empty() const { return bytes_ == 0; }
std::size_t size() const { return bytes_; }
void clear() {
blocks_.clear();
last_ = blocks_.end();
bytes_ = 0;
lastBlockEmpty_ = false;
}
char *FreeSpace(std::size_t *);
void Claim(std::size_t);
void Put(const char *data, std::size_t n);
void Put(const std::string &);
void Put(char x) { Put(&x, 1); }
private:
struct Block {
static constexpr std::size_t capacity{1 << 20};
char data[capacity];
};
public:
class iterator {
public:
iterator() {}
iterator(std::forward_list<Block>::const_iterator block, int offset)
: block_{block}, offset_{offset} {}
iterator(const iterator &that)
: block_{that.block_}, offset_{that.offset_} {}
iterator &operator=(const iterator &that) {
block_ = that.block_;
offset_ = that.offset_;
return *this;
}
const char &operator*() const { return block_->data[offset_]; }
iterator &operator++(/*++prefix*/) {
if (++offset_ == Block::capacity) {
++block_;
offset_ = 0;
}
return *this;
}
iterator operator++(int /*postfix++*/) {
iterator result{*this};
++*this;
return result;
}
iterator &operator+=(std::size_t n) {
while (n >= Block::capacity - offset_) {
n -= Block::capacity - offset_;
offset_ = 0;
++block_;
}
offset_ += n;
return *this;
}
bool operator==(const iterator &that) const {
return block_ == that.block_ && offset_ == that.offset_;
}
bool operator!=(const iterator &that) const {
return block_ != that.block_ || offset_ != that.offset_;
}
private:
std::forward_list<Block>::const_iterator block_;
int offset_;
};
iterator begin() const { return iterator(blocks_.begin(), 0); }
iterator end() const {
int offset = LastBlockOffset();
if (offset != 0 || lastBlockEmpty_) {
return iterator(last_, offset);
}
return iterator(blocks_.end(), 0);
}
private:
int LastBlockOffset() const { return bytes_ % Block::capacity; }
std::forward_list<Block> blocks_;
std::forward_list<Block>::iterator last_{blocks_.end()};
std::size_t bytes_{0};
bool lastBlockEmpty_{false};
};
} // namespace Fortran::parser
#endif // FORTRAN_PARSER_CHAR_BUFFER_H_