reader.h 1.8 KB
Newer Older
F
fengjiayi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//   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.

#pragma once

Y
Yi Wang 已提交
17 18
#include "paddle/fluid/framework/ddim.h"
#include "paddle/fluid/framework/lod_tensor_array.h"
F
fengjiayi 已提交
19 20 21 22

namespace paddle {
namespace framework {

F
fengjiayi 已提交
23
class ReaderBase {
F
fengjiayi 已提交
24
 public:
F
fengjiayi 已提交
25
  virtual void ReadNext(std::vector<LoDTensor>* out) = 0;
F
fengjiayi 已提交
26

F
fengjiayi 已提交
27 28
  virtual void ReInit() = 0;

Y
Yu Yang 已提交
29 30
  virtual bool HasNext() const = 0;

Y
Yu Yang 已提交
31
  virtual ~ReaderBase();
F
fengjiayi 已提交
32 33
};

F
fengjiayi 已提交
34
class DecoratedReader : public ReaderBase {
F
fengjiayi 已提交
35
 public:
Y
Yu Yang 已提交
36
  explicit DecoratedReader(ReaderBase* reader) : ReaderBase(), reader_(reader) {
F
fengjiayi 已提交
37 38 39
    PADDLE_ENFORCE_NOT_NULL(reader_);
  }

F
fengjiayi 已提交
40 41
  void ReInit() override { reader_->ReInit(); }

Y
Yu Yang 已提交
42 43
  bool HasNext() const override { return reader_->HasNext(); }

F
fengjiayi 已提交
44 45 46 47
 protected:
  ReaderBase* reader_;
};

48 49
// The ReaderHolder is used as reader' unified wrapper,
// making it easier to access different type reader in Variables.
F
fengjiayi 已提交
50 51 52 53 54 55
class ReaderHolder {
 public:
  void Reset(ReaderBase* reader) { reader_.reset(reader); }

  ReaderBase* Get() const { return reader_.get(); }

F
fengjiayi 已提交
56
  void ReadNext(std::vector<LoDTensor>* out) { reader_->ReadNext(out); }
F
fengjiayi 已提交
57
  void ReInit() { reader_->ReInit(); }
F
fengjiayi 已提交
58

Y
Yu Yang 已提交
59 60
  bool HasNext() const { return reader_->HasNext(); }

F
fengjiayi 已提交
61 62 63 64
 private:
  std::unique_ptr<ReaderBase> reader_;
};

F
fengjiayi 已提交
65 66
}  // namespace framework
}  // namespace paddle