scanner.cc 1.5 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//   Copyright (c) 2018 PaddlePaddle Authors. 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.

#include "paddle/fluid/recordio/scanner.h"
Y
Yi Wang 已提交
16 17 18

#include <string>

Y
Yu Yang 已提交
19 20 21 22
#include "paddle/fluid/platform/enforce.h"

namespace paddle {
namespace recordio {
Y
Yi Wang 已提交
23

Y
Yu Yang 已提交
24
Scanner::Scanner(std::unique_ptr<std::istream> &&stream)
Y
yuyang18 已提交
25
    : stream_(std::move(stream)), parser_(*stream_) {
Y
Yu Yang 已提交
26 27 28
  Reset();
}

Y
yuyang18 已提交
29 30
Scanner::Scanner(const std::string &filename)
    : stream_(new std::ifstream(filename)), parser_(*stream_) {
Y
yuyang18 已提交
31
  PADDLE_ENFORCE(static_cast<bool>(*stream_), "Cannot open file %s", filename);
Y
Yu Yang 已提交
32 33 34 35
  Reset();
}

void Scanner::Reset() {
F
fengjiayi 已提交
36
  stream_->clear();
Y
Yu Yang 已提交
37
  stream_->seekg(0, std::ios::beg);
Y
yuyang18 已提交
38
  parser_.Init();
Y
Yu Yang 已提交
39 40
}

Y
Yu Yang 已提交
41
std::string Scanner::Next() {
Y
yuyang18 已提交
42 43
  if (stream_->eof()) {
    return "";
Y
Yu Yang 已提交
44 45
  }

Y
yuyang18 已提交
46 47 48 49 50
  auto res = parser_.Next();
  if (!parser_.HasNext() && HasNext()) {
    parser_.Init();
  }
  return res;
Y
Yu Yang 已提交
51 52
}

Y
yuyang18 已提交
53
bool Scanner::HasNext() const { return !stream_->eof(); }
Y
Yu Yang 已提交
54 55
}  // namespace recordio
}  // namespace paddle